Sha256: 1fe5ca24a54dda051641257b7d7d109e8c4913245fd54933d077c2482e5d4f19

Contents?: true

Size: 709 Bytes

Versions: 19

Compression:

Stored size: 709 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    = 'BridgeCache'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.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

19 entries across 19 versions & 1 rubygems

Version Path
bridge_cache-0.3.19 Rakefile
bridge_cache-0.3.17 Rakefile
bridge_cache-0.3.16 Rakefile
bridge_cache-0.3.15 Rakefile
bridge_cache-0.3.14 Rakefile
bridge_cache-0.3.13 Rakefile
bridge_cache-0.3.12 Rakefile
bridge_cache-0.3.11 Rakefile
bridge_cache-0.3.10 Rakefile
bridge_cache-0.3.9 Rakefile
bridge_cache-0.3.8 Rakefile
bridge_cache-0.3.7 Rakefile
bridge_cache-0.3.6 Rakefile
bridge_cache-0.3.5 Rakefile
bridge_cache-0.3.4 Rakefile
bridge_cache-0.3.3 Rakefile
bridge_cache-0.3.2 Rakefile
bridge_cache-0.3.01 Rakefile
bridge_cache-0.3.0 Rakefile