Sha256: cb9817eedca098b55d3b7fbc70cf86b99882b09a3024c9743691080bfd1bc2c4

Contents?: true

Size: 1.32 KB

Versions: 8

Compression:

Stored size: 1.32 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'
require 'juwelier'
Juwelier::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://guides.rubygems.org/specification-reference/ for more options
  gem.name = "mobilize-america-client"
  gem.homepage = "http://github.com/controlshift/mobilize_america_client"
  gem.license = "MIT"
  gem.summary = %Q{Client gem for the MobilizeAmerica API}
  gem.email = "grey@controlshiftlabs.com"
  gem.authors = ["Grey Moore"]

  # dependencies defined in Gemfile
end
Juwelier::RubygemsDotOrgTasks.new

require 'rspec/core/rake_task'
desc "Run specs"
RSpec::Core::RakeTask.new do |t|
  t.pattern = "./spec/**/*_spec.rb" # don't need this, it's default.
  t.rspec_opts = '--color'
end


desc "Code coverage detail"
task :simplecov do
  ENV['COVERAGE'] = "true"
  Rake::Task['test'].execute
end

task :default => :spec

require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "mobilize-america-client #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
mobilize-america-client-0.5.1 Rakefile
mobilize-america-client-0.5.0 Rakefile
mobilize-america-client-0.4.0 Rakefile
mobilize-america-client-0.3.6 Rakefile
mobilize-america-client-0.3.5 Rakefile
mobilize-america-client-0.3.4 Rakefile
mobilize-america-client-0.3.3 Rakefile
mobilize-america-client-0.3.2 Rakefile