Sha256: 733d0ac86816e2239f9062a6e25bdc59b1b09125f4e68172301a43a6dfbbf98e

Contents?: true

Size: 727 Bytes

Versions: 8

Compression:

Stored size: 727 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 = 'schmitt@nationbuilder.com'
  gem.authors = ['David Huie', 'Alexandre Schmitt']
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

8 entries across 8 versions & 1 rubygems

Version Path
nationbuilder-rb-1.4.3 Rakefile
nationbuilder-rb-1.4.2 Rakefile
nationbuilder-rb-1.4.1 Rakefile
nationbuilder-rb-1.3.9 Rakefile
nationbuilder-rb-1.3.7 Rakefile
nationbuilder-rb-1.3.6 Rakefile
nationbuilder-rb-1.3.5 Rakefile
nationbuilder-rb-1.3.4 Rakefile