Sha256: 340e73280046ae3fa6afa31349710d248e14c1affddb9d9c61148769fe11ec5a

Contents?: true

Size: 589 Bytes

Versions: 7

Compression:

Stored size: 589 Bytes

Contents

begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

require 'rdoc/task'

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'TbCheckout'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.md')
  rdoc.rdoc_files.include('lib/**/*.rb')
  rdoc.rdoc_files.include('app/**/*.rb')
end

APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
load 'rails/tasks/engine.rake'

Bundler::GemHelper.install_tasks

require 'rspec/core'
require 'rspec/core/rake_task'

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
tb_checkout-1.1.1 Rakefile
tb_checkout-1.1.0 Rakefile
tb_checkout-1.0.7 Rakefile
tb_checkout-1.0.6 Rakefile
tb_checkout-1.0.5 Rakefile
tb_checkout-1.0.4 Rakefile
tb_checkout-1.0.3 Rakefile