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 = "paul.engel@holder.nl" gemspec.homepage = "http://github.com/archan937/rich_pluralization" gemspec.author = "Paul Engel" gemspec.add_dependency "i18n" 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