Sha256: 05c674b8dcd3cba507e8e3fd80968bd0e0e98479e58ff63f7dd349dcfc972f3d

Contents?: true

Size: 736 Bytes

Versions: 12

Compression:

Stored size: 736 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    = 'BootstrapToolbelt'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include(['lib/**/*.rb', 'app/**/*.rb'])
end

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


load 'rails/tasks/statistics.rake'



Bundler::GemHelper.install_tasks

require 'rake/testtask'

Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end


task default: :test

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
bootstrap_toolbelt-0.1.00 Rakefile
bootstrap_toolbelt-0.0.11 Rakefile
bootstrap_toolbelt-0.0.10 Rakefile
bootstrap_toolbelt-0.0.9 Rakefile
bootstrap_toolbelt-0.0.8 Rakefile
bootstrap_toolbelt-0.0.7 Rakefile
bootstrap_toolbelt-0.0.6 Rakefile
bootstrap_toolbelt-0.0.5 Rakefile
bootstrap_toolbelt-0.0.4 Rakefile
bootstrap_toolbelt-0.0.3 Rakefile
bootstrap_toolbelt-0.0.2 Rakefile
bootstrap_toolbelt-0.0.1 Rakefile