Sha256: 8318bfa9224d9e8bf4ac6c8658c7012ddbd779ac0dd5df14c004da7c97c965d1

Contents?: true

Size: 1.22 KB

Versions: 18

Compression:

Stored size: 1.22 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 'jeweler'
Jeweler::Tasks.new do |gem|
  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
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

RSpec::Core::RakeTask.new(:rcov) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
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

18 entries across 18 versions & 1 rubygems

Version Path
vertebrae-0.2.11 Rakefile
vertebrae-0.2.10 Rakefile
vertebrae-0.2.9 Rakefile
vertebrae-0.2.8 Rakefile
vertebrae-0.2.7 Rakefile
vertebrae-0.2.6 Rakefile
vertebrae-0.2.5 Rakefile
vertebrae-0.2.4 Rakefile
vertebrae-0.2.2 Rakefile
vertebrae-0.2.1 Rakefile
vertebrae-0.2.0 Rakefile
vertebrae-0.1.6 Rakefile
vertebrae-0.1.5 Rakefile
vertebrae-0.1.4 Rakefile
vertebrae-0.1.3 Rakefile
vertebrae-0.1.2 Rakefile
vertebrae-0.1.1 Rakefile
vertebrae-0.1.0 Rakefile