Sha256: 2bf18593c840882c8171e5cb4ef7cd8d4f68dacf52697cc778d2ad49b0b5bf22

Contents?: true

Size: 723 Bytes

Versions: 16

Compression:

Stored size: 723 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'
load 'tasks/rearview.rake'

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

16 entries across 16 versions & 1 rubygems

Version Path
rearview-1.0.3.rc.4-jruby Rakefile
rearview-1.0.3.rc.3-jruby Rakefile
rearview-1.0.3.rc.2-jruby Rakefile
rearview-1.0.3.rc.1-jruby Rakefile
rearview-1.0.2-jruby Rakefile
rearview-1.0.2.rc.4-jruby Rakefile
rearview-1.0.2.rc.3-jruby Rakefile
rearview-1.0.2.rc.2-jruby Rakefile
rearview-1.0.2.rc.1-jruby Rakefile
rearview-1.0.1-jruby Rakefile
rearview-1.0.0-jruby Rakefile
rearview-1.0.0.rc5-jruby Rakefile
rearview-1.0.0.rc4-jruby Rakefile
rearview-1.0.0.rc3-jruby Rakefile
rearview-1.0.0.rc2-jruby Rakefile
rearview-1.0.0.rc1-jruby Rakefile