Sha256: 47753c15799433ad9c14d64dde5afa0491487742b45feb56e1625dc0fa5f70b1

Contents?: true

Size: 931 Bytes

Versions: 43

Compression:

Stored size: 931 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') 

require 'opal/rspec/rake_task'
require 'bundler'
Bundler.require

# Add our opal/ directory to the load path
#Opal.append_path File.expand_path('../lib', __FILE__)

Opal::RSpec::RakeTask.new(:spec_opal) do |s|
  s.sprockets.paths.tap { s.sprockets.clear_paths }[0..-2].each { |path| s.sprockets.append_path path}
  s.main = 'sprockets_runner'
  s.append_path 'spec-opal'
end

task :default => [:spec, :spec_opal]

Version data entries

43 entries across 43 versions & 1 rubygems

Version Path
reactive-record-0.7.26 Rakefile
reactive-record-0.7.25 Rakefile
reactive-record-0.7.24 Rakefile
reactive-record-0.7.22 Rakefile
reactive-record-0.7.20 Rakefile
reactive-record-0.7.19 Rakefile
reactive-record-0.7.18 Rakefile
reactive-record-0.7.17 Rakefile
reactive-record-0.7.16 Rakefile
reactive-record-0.7.15 Rakefile
reactive-record-0.7.14 Rakefile
reactive-record-0.7.13 Rakefile
reactive-record-0.7.12 Rakefile
reactive-record-0.7.11 Rakefile
reactive-record-0.7.10 Rakefile
reactive-record-0.7.9 Rakefile
reactive-record-0.7.8 Rakefile
reactive-record-0.7.7 Rakefile
reactive-record-0.7.6 Rakefile
reactive-record-0.7.5 Rakefile