Sha256: aa05b0e2e55de002ba5cdb6d30d707545d5551176f864bf4c6c1a126f0c3bc9d

Contents?: true

Size: 675 Bytes

Versions: 14

Compression:

Stored size: 675 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)"

# This is for moutable engines
# RSpec::Core::RakeTask.new(:spec => 'app:db:test:prepare')

# This is for plugins that don't have models
RSpec::Core::RakeTask.new(:spec)
task :default => :spec

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
happy_seed-0.0.21 lib/generators/happy_seed/plugin/templates/Rakefile
happy_seed-0.0.19 lib/generators/happy_seed/plugin/templates/Rakefile
happy_seed-0.0.18 lib/generators/happy_seed/plugin/templates/Rakefile
happy_seed-0.0.17 lib/generators/happy_seed/plugin/templates/Rakefile
happy_seed-0.0.16 lib/generators/happy_seed/plugin/templates/Rakefile
happy_seed-0.0.15 lib/generators/happy_seed/plugin/templates/Rakefile
happy_seed-0.0.14 lib/generators/happy_seed/plugin/templates/Rakefile
happy_seed-0.0.13 lib/generators/happy_seed/plugin/templates/Rakefile
happy_seed-0.0.12 lib/generators/happy_seed/plugin/templates/Rakefile
happy_seed-0.0.11 lib/generators/happy_seed/plugin/templates/Rakefile
happy_seed-0.0.10 lib/generators/happy_seed/plugin/templates/Rakefile
happy_seed-0.0.9 lib/generators/happy_seed/plugin/templates/Rakefile
happy_seed-0.0.8 lib/generators/happy_seed/plugin/templates/Rakefile
happy_seed-0.0.7 lib/generators/happy_seed/plugin/templates/Rakefile