Sha256: 778ef715d02b8c7043a3852008438233100fa980cf3aa7ddc58950b156e2162f

Contents?: true

Size: 1.33 KB

Versions: 11

Compression:

Stored size: 1.33 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 = "vertebrae"
  gem.homepage = "http://github.com/controlshift/vertebrae"
  gem.license = "MIT"
  gem.summary = %Q{API Client Infrastructure}
  gem.description = %Q{A set of low level infrastructure and reusable code for building API clients}
  gem.email = "nathan@controlshiftlabs.com"
  gem.authors = ["Nathan Woodhull"]

  # dependencies defined in Gemfile
end
Juwelier::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'] = "true"
  Rake::Task['spec'].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 = "vertebrae #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
vertebrae-0.7.0 Rakefile
vertebrae-0.6.2 Rakefile
vertebrae-0.6.0 Rakefile
vertebrae-0.5.1 Rakefile
vertebrae-0.5.0 Rakefile
vertebrae-0.4.3 Rakefile
vertebrae-0.4.2 Rakefile
vertebrae-0.4.1 Rakefile
vertebrae-0.4.0 Rakefile
vertebrae-0.3.1 Rakefile
vertebrae-0.3.0 Rakefile