Sha256: 79c15dd37abf1b39e7829e941ef2d88334159ba4baa85b7fe3fecb9da4efc397

Contents?: true

Size: 1.43 KB

Versions: 5

Compression:

Stored size: 1.43 KB

Contents

require 'rake'
require './lib/iso_country_codes.rb'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |s|
    s.name = 'iso_country_codes'
    s.summary = %Q{
      Provides ISO 3166-1 country codes/names and ISO 4217 currencies.
    }
    s.email = "alexrabarts@gmail.com"
    s.homepage = "http://github.com/alexrabarts/iso_country_codes"
    s.description = "ISO country code and currency library"
    s.authors = ["alex"]
  end
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'iso_country_codes'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

require 'rake/testtask'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib' << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end

begin
  require 'rcov/rcovtask'
  Rcov::RcovTask.new do |t|
    t.libs << 'test'
    t.test_files = FileList['test/**/*_test.rb']
    t.verbose = true
  end
rescue LoadError
  puts "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
end

begin
  require 'cucumber/rake/task'
  Cucumber::Rake::Task.new(:features)
rescue LoadError
  puts "Cucumber is not available. In order to run features, you must: sudo gem install cucumber"
end

task :default => :test

Version data entries

5 entries across 5 versions & 3 rubygems

Version Path
alexrabarts-iso_country_codes-0.2.2 Rakefile
holden-iso_country_codes-0.2.2 Rakefile
holden-iso_country_codes-0.2.3 Rakefile
holden-iso_country_codes-0.2.4 Rakefile
iso_country_codes-0.2.2 Rakefile