Sha256: ce9b8b2df0f88e4ca64dd9e86505d7f50ea3b4ae3486da38622e5ad63a7f2032

Contents?: true

Size: 562 Bytes

Versions: 56

Compression:

Stored size: 562 Bytes

Contents

#!/usr/bin/env rake
begin
 require 'bundler/setup'
rescue LoadError
 puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

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

Bundler::GemHelper.install_tasks

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

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

56 entries across 56 versions & 7 rubygems

Version Path
activetracker-0.4.9 Rakefile
activetracker-0.4.8 Rakefile
activetracker-0.4.7 Rakefile
activetracker-0.4.6 Rakefile
activetracker-0.4.5 Rakefile
activetracker-0.4.4 Rakefile
activetracker-0.4.3 Rakefile
activetracker-0.4.2 Rakefile
activetracker-0.4.1 Rakefile
activetracker-0.4.0 Rakefile
ctws-0.3.0.beta Rakefile
audited_views-0.0.7 Rakefile
audited_views-0.0.6 Rakefile
audited_views-0.0.5 Rakefile
ctws-0.2.3.beta Rakefile
myrails-7.0.0 lib/myrails/templates/engines/rakefile
audited_views-0.0.4 Rakefile
ctws-0.2.2.beta Rakefile
ctws-0.2.1.beta Rakefile
ctws-0.2.0.beta Rakefile