Sha256: e99935cb85261db33e8f43ec10b92575d624d22c9b6c009dd495d0546f44f7de

Contents?: true

Size: 542 Bytes

Versions: 10

Compression:

Stored size: 542 Bytes

Contents

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

10 entries across 10 versions & 1 rubygems

Version Path
bit_core-1.2.2 Rakefile
bit_core-1.2.1 Rakefile
bit_core-1.2.0 Rakefile
bit_core-1.1.6 Rakefile
bit_core-1.1.5 Rakefile
bit_core-1.1.4 Rakefile
bit_core-1.1.3 Rakefile
bit_core-1.1.2 Rakefile
bit_core-1.1.1 Rakefile
bit_core-1.1.0 Rakefile