Sha256: 27535873a2b28c3650de7217e4e8b2a8629048d6dcd4e724f1cb5bc33069cefd

Contents?: true

Size: 1.29 KB

Versions: 8

Compression:

Stored size: 1.29 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "countries"
    gem.summary = 'All sorts of useful information about every country.'
    gem.description = 'All sorts of useful information about every country. It includes data from ISO3166-1, ISO3166-2 and E.164'
    gem.email = "hexorx@gmail.com"
    gem.homepage = "http://github.com/hexorx/countries"
    gem.authors = ["hexorx"]
    gem.add_development_dependency "rspec"
    gem.add_development_dependency "yard"
    # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end

require 'spec/rake/spectask'
Spec::Rake::SpecTask.new(:spec) do |spec|
  spec.libs << 'lib' << 'spec'
  spec.spec_files = FileList['spec/**/*_spec.rb']
end

Spec::Rake::SpecTask.new(:rcov) do |spec|
  spec.libs << 'lib' << 'spec'
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end

task :spec => :check_dependencies

task :default => :spec

begin
  require 'yard'
  YARD::Rake::YardocTask.new
rescue LoadError
  task :yardoc do
    abort "YARD is not available. In order to run yardoc, you must: sudo gem install yard"
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
countries-0.1.8 Rakefile
countries-0.1.7 Rakefile
countries-0.1.6 Rakefile
countries-0.1.5 Rakefile
countries-0.1.4 Rakefile
countries-0.1.3 Rakefile
countries-0.1.2 Rakefile
countries-0.1.1 Rakefile