-
Notifications
You must be signed in to change notification settings - Fork 4
/
Rakefile
41 lines (36 loc) · 1.43 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
require "rake"
require "rake/testtask"
require "rake/rdoctask"
begin
require "jeweler"
Jeweler::Tasks.new do |gemspec|
gemspec.name = "rich_pluralization"
gemspec.summary = "Enrichments (e9s) module for localized pluralization"
gemspec.description = "Rich-pluralization is a module of E9s (http://github.com/archan937/e9s) which provides localized pluralization in combination with i18n. Doing this enables you to only translate words in singular form as the module pluralizes the translation for you."
gemspec.email = "[email protected]"
gemspec.homepage = "http://github.com/archan937/rich_pluralization"
gemspec.author = "Paul Engel"
gemspec.add_dependency "i18n", ">= 0.3.7"
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end
desc "Default: run unit tests."
task :default => :test
desc "Test the rich_pluralization plugin."
Rake::TestTask.new(:test) do |t|
t.libs << "lib"
t.libs << "test"
t.pattern = "test/**/*_test.rb"
t.verbose = true
end
desc "Generate documentation for the rich_pluralization plugin."
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = "rdoc"
rdoc.title = "Rich-pluralization"
rdoc.options << "--line-numbers" << "--inline-source"
rdoc.rdoc_files.include "README"
rdoc.rdoc_files.include "MIT-LICENSE"
rdoc.rdoc_files.include "lib/**/*.rb"
end