Sha256: c3475b409e054ba16e1d41cf3ba65fd86d993484e87f86275bd6e7f1448394a2

Contents?: true

Size: 685 Bytes

Versions: 54

Compression:

Stored size: 685 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    = 'RailsPerformance'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.md')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

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

load 'rails/tasks/statistics.rake'

require 'bundler/gem_tasks'

require 'rake/testtask'

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

task default: :test

Version data entries

54 entries across 54 versions & 1 rubygems

Version Path
rails_performance-1.2.3 Rakefile
rails_performance-1.2.2 Rakefile
rails_performance-1.2.1 Rakefile
rails_performance-1.2.0 Rakefile
rails_performance-1.2.0.alpha5 Rakefile
rails_performance-1.2.0.alpha4 Rakefile
rails_performance-1.2.0.alpha3 Rakefile
rails_performance-1.2.0.alpha2 Rakefile
rails_performance-1.2.0.alpha1 Rakefile
rails_performance-1.1.0 Rakefile
rails_performance-1.0.5.3 Rakefile
rails_performance-1.0.5.2 Rakefile
rails_performance-1.0.5.1 Rakefile
rails_performance-1.0.5 Rakefile
rails_performance-1.0.4 Rakefile
rails_performance-1.0.3 Rakefile
rails_performance-1.0.2 Rakefile
rails_performance-1.0.1 Rakefile
rails_performance-1.0.0 Rakefile
rails_performance-1.0.0.beta5 Rakefile