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.8.3 Rakefile
reactive-record-0.8.2 Rakefile
reactive-record-0.8.1 Rakefile
reactive-record-0.7.43 Rakefile
reactive-record-0.7.42 Rakefile
reactive-record-0.7.41 Rakefile
reactive-record-0.7.40 Rakefile
reactive-record-0.7.39 Rakefile
reactive-record-0.7.38 Rakefile
reactive-record-0.7.37 Rakefile
reactive-record-0.7.36 Rakefile
reactive-record-0.7.35 Rakefile
reactive-record-0.7.34 Rakefile
reactive-record-0.7.33 Rakefile
reactive-record-0.7.32 Rakefile
reactive-record-0.7.31 Rakefile
reactive-record-0.7.30 Rakefile
reactive-record-0.7.29 Rakefile
reactive-record-0.7.28 Rakefile
reactive-record-0.7.27 Rakefile