Sha256: e9ec6de240ea1b30f69168171164f1d1ea4020249a82edafafc8262a2f71cf69
Contents?: true
Size: 1.19 KB
Versions: 1
Compression:
Stored size: 1.19 KB
Contents
require 'rake' require 'rake/testtask' require 'rake/rdoctask' load File.join(File.dirname(__FILE__), 'lib', 'tasks', 'localized_country_select_tasks.rake') desc 'Default: run unit tests.' task :default => :test desc 'Test the localized_country_select plugin.' Rake::TestTask.new(:test) do |t| t.libs << 'lib' t.pattern = 'test/**/*_test.rb' t.verbose = true end desc 'Generate documentation for the localized_country_select plugin.' Rake::RDocTask.new(:rdoc) do |rdoc| rdoc.rdoc_dir = 'rdoc' rdoc.title = 'LocalizedCountrySelect' rdoc.options << '--line-numbers' << '--inline-source' rdoc.rdoc_files.include('README.rdoc') rdoc.rdoc_files.include('lib/**/*.rb') end # # Jeweler # begin require 'jeweler' Jeweler::Tasks.new do |gemspec| gemspec.name = "localized_country_select" gemspec.summary = "Localized country select list" gemspec.description = "Where are you from ?" gemspec.email = "damien.mathieu@lim.eu" gemspec.homepage = "http://github.com/LIMSAS/localized_country_select" gemspec.authors = ["LIM SAS", "Damien MATHIEU", "Julien SANCHEZ", "Hervé GAUCHER"] end rescue LoadError puts "Jeweler not available. Install it with: gem install jeweler" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
localized_country_select-0.0.1 | Rakefile |