Sha256: 2efa77fe5d3655e422481feeaae24880eebe461f9d9aa0b1b28ec4258b549569

Contents?: true

Size: 585 Bytes

Versions: 8

Compression:

Stored size: 585 Bytes

Contents

# encoding: utf-8

require 'rubygems'

begin
  require 'bundler'
rescue LoadError => e
  warn e.message
  warn "Run `gem install bundler` to install Bundler."
  exit -1
end

begin
  Bundler.setup(:development)
rescue Bundler::BundlerError => e
  warn e.message
  warn "Run `bundle install` to install missing gems."
  exit e.status_code
end

require 'rake'

require 'rdoc/task'
RDoc::Task.new do |rdoc|
  rdoc.title = "luggage"
end
task :doc => :rdoc

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new

task :test    => :spec
task :default => :spec

require "bundler/gem_tasks"

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
luggage-1.2.3 Rakefile
luggage-1.2.2 Rakefile
luggage-1.2.1 Rakefile
luggage-1.2.0 Rakefile
luggage-1.1.2 Rakefile
luggage-1.1.1 Rakefile
luggage-1.1.0 Rakefile
luggage-1.0.0 Rakefile