Sha256: 8af40d194435b85bb0992125de370e164198da63c4f61cf0342b58a2233c3809
Contents?: true
Size: 704 Bytes
Versions: 3
Compression:
Stored size: 704 Bytes
Contents
require 'rubygems' require 'rake' require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = 'nationbuilder-rb' gem.homepage = 'http://github.com/nationbuilder/nationbuilder-rb' gem.license = 'MIT' gem.summary = 'A Ruby client to the NationBuilder API' gem.description = 'A Ruby client to the NationBuilder API' gem.email = 'david@nationbuilder.com' gem.authors = ['David Huie'] end Jeweler::RubygemsDotOrgTasks.new require 'rspec/core' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = FileList['spec/**/*_spec.rb'] end desc 'Code coverage detail' task :simplecov do ENV['COVERAGE'] = '1' Rake::Task['spec'].execute end task default: :spec
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
nationbuilder-rb-1.3.3 | Rakefile |
nationbuilder-rb-1.3.2 | Rakefile |
nationbuilder-rb-1.3.1 | Rakefile |