Sha256: 1896696bbae50f39650fea7c843a32549bdc05f4f76bbc2270ae51712ad8f494

Contents?: true

Size: 776 Bytes

Versions: 27

Compression:

Stored size: 776 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    = 'G5Updatable'
  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'

Bundler::GemHelper.install_tasks

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

Dir[File.join(File.dirname(__FILE__), 'tasks/**/*.rake')].each {|f| load f }

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

27 entries across 27 versions & 1 rubygems

Version Path
g5_updatable-0.20.3.pre.1 Rakefile
g5_updatable-0.10.3 Rakefile
g5_updatable-0.10.2 Rakefile
g5_updatable-0.10.1 Rakefile
g5_updatable-0.10.0 Rakefile
g5_updatable-0.9.0 Rakefile
g5_updatable-0.8.0 Rakefile
g5_updatable-0.7.2 Rakefile
g5_updatable-0.7.1 Rakefile
g5_updatable-0.7.0 Rakefile
g5_updatable-0.6.1 Rakefile
g5_updatable-0.6.0 Rakefile
g5_updatable-0.5.1 Rakefile
g5_updatable-0.5.0 Rakefile
g5_updatable-0.4.3 Rakefile
g5_updatable-0.4.2 Rakefile
g5_updatable-0.4.1 Rakefile
g5_updatable-0.4.0 Rakefile
g5_updatable-0.3.5 Rakefile
g5_updatable-0.3.4 Rakefile