Sha256: fb9debd4df4a9677928879eab52fcf6334c1517b1641378ad99554bd684acf41

Contents?: true

Size: 952 Bytes

Versions: 16

Compression:

Stored size: 952 Bytes

Contents

# require 'bundler'
# Bundler.require
# Bundler::GemHelper.install_tasks
#
# # Store the BUNDLE_GEMFILE env, since rake or rspec seems to clean it
# # while invoking task.
# ENV['REAL_BUNDLE_GEMFILE'] = ENV['BUNDLE_GEMFILE']
#
# require 'rspec/core/rake_task'
# require 'opal/rspec/rake_task'
#
# RSpec::Core::RakeTask.new('ruby:rspec')
#
# task :test do
#   Rake::Task['ruby:rspec'].invoke
# end
#
# require 'generators/reactive_ruby/test_app/test_app_generator'
# desc "Generates a dummy app for testing"
# task :test_app do
#   ReactiveRuby::TestAppGenerator.start
#   puts "Setting up test app database..."
#   system("bundle exec rake db:drop db:create db:migrate > #{File::NULL}")
# end
#
# task :test_prepare do
#   system("./dciy_prepare.sh")
# end
#
# task default: [ :test ]

require "bundler/gem_tasks"
require "rspec/core/rake_task"

RSpec::Core::RakeTask.new(:spec)

namespace :spec do
  task :prepare do
  end
end

task :default => :spec

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
hyper-component-1.0.alpha1.8 Rakefile
hyper-component-1.0.alpha1.7 Rakefile
hyper-component-1.0.alpha1.6 Rakefile
hyper-component-1.0.alpha1.5 Rakefile
hyper-component-1.0.alpha1.4 Rakefile
hyper-component-0.99.6 Rakefile
hyper-component-1.0.alpha1.3 Rakefile
hyper-component-0.99.5 Rakefile
hyper-component-0.99.4 Rakefile
hyper-component-1.0.alpha1.2 Rakefile
hyper-component-1.0.alpha1.1 Rakefile
hyper-component-1.0.alpha1 Rakefile
hyper-component-0.99.3 Rakefile
hyper-component-0.99.2 Rakefile
hyper-component-0.99.1 Rakefile
hyper-component-0.99.0 Rakefile