Sha256: 79973def0103569944bc4b2f948352183a843b3f82dac083b222379c7e8c9381

Contents?: true

Size: 746 Bytes

Versions: 8

Compression:

Stored size: 746 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    = 'Rearview'
  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'

Dir["tasks/**/*.rake"].each { |task| load task }

Bundler::GemHelper.install_tasks

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

desc "Run all specs in spec directory (excluding plugin specs)"
RSpec::Core::RakeTask.new(:spec => 'app:db:test:prepare')

task :default => :spec

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
rearview-1.2.3-jruby Rakefile
rearview-1.2.2.rc.2-jruby Rakefile
rearview-1.2.2.rc.1-jruby Rakefile
rearview-1.2.1-jruby Rakefile
rearview-1.2.0-jruby Rakefile
rearview-1.1.2-jruby Rakefile
rearview-1.1.1-jruby Rakefile
rearview-1.1.0-jruby Rakefile