Sha256: 6a4f0109e4ac749bab70c9f29154481a8f3e3c52396a09ea5a93e01225e24d96

Contents?: true

Size: 1.41 KB

Versions: 14

Compression:

Stored size: 1.41 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 './lib/action_kit_rest/version.rb'


require 'juwelier'
Juwelier::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://guides.rubygems.org/specification-reference/ for more options
  gem.name = "action_kit_rest"
  gem.version = ActionKitRest::VERSION::STRING
  gem.homepage = "http://github.com/controlshift/action_kit_rest"
  gem.license = "MIT"
  gem.summary = %Q{A wrapper for the ActionKit REST API}
  gem.description = %Q{Gem for interacting with the ActionKit API}
  gem.email = "systems@controlshiftlabs.com"
  gem.authors = ["Nathan Woodhull", 'Diego Marcet', 'Jacinda Moore']
  # dependencies defined in Gemfile
end
Juwelier::RubygemsDotOrgTasks.new


require 'rspec/core/rake_task'
desc 'Default: run specs.'
task :default => :spec

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

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

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

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
action_kit_rest-0.4.4 Rakefile
action_kit_rest-0.4.3 Rakefile
action_kit_rest-0.4.2 Rakefile
action_kit_rest-0.4.1 Rakefile
action_kit_rest-0.4.0 Rakefile
action_kit_rest-0.3.8 Rakefile
action_kit_rest-0.3.7 Rakefile
action_kit_rest-0.3.6 Rakefile
action_kit_rest-0.3.5 Rakefile
action_kit_rest-0.3.4 Rakefile
action_kit_rest-0.3.3 Rakefile
action_kit_rest-0.3.2 Rakefile
action_kit_rest-0.3.1 Rakefile
action_kit_rest-0.3.0 Rakefile