Sha256: 7230b11b2053c126f282c3cc4ea6465436b5d53ae48563e66e96ead39f152153

Contents?: true

Size: 635 Bytes

Versions: 10

Compression:

Stored size: 635 Bytes

Contents

#!/usr/bin/env rake
begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
begin
  require 'rdoc/task'
rescue LoadError
  require 'rdoc/rdoc'
  require 'rake/rdoctask'
  RDoc::Task = Rake::RDocTask
end

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

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

Bundler::GemHelper.install_tasks

require 'rake'

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
tb_core-1.1.4 Rakefile
tb_core-1.1.2 Rakefile
tb_core-1.1.1 Rakefile
tb_core-1.1.0 Rakefile
tb_core-1.0.2 Rakefile
tb_core-1.0.1 Rakefile
tb_core-1.0 Rakefile
tb_core-0.9.19 Rakefile
tb_core-0.9.18 Rakefile
tb_core-0.9.17 Rakefile