Sha256: 1138ca0962df864e0badabca0d6d122f6277abe727d0611a3e7acbea876c2f55
Contents?: true
Size: 1.22 KB
Versions: 6
Compression:
Stored size: 1.22 KB
Contents
ENV["RAILS_ROOT"] ||= 'spec/internal' require 'rspec/core/rake_task' desc "Run specs" RSpec::Core::RakeTask.new(:spec => [:generate, :fixtures]) do |t| # if ENV['COVERAGE'] and RUBY_VERSION =~ /^1.8/ # t.rcov = true # t.rcov_opts = %w{--exclude spec\/*,gems\/*,ruby\/* --aggregate coverage.data} # end t.rspec_opts = "--colour" end task :fixtures do within_test_app do system "rake hydra:fixtures:refresh RAILS_ENV=test" end end desc "Create the test rails app" task :generate do unless File.exists?('spec/internal/Rakefile') puts "Generating rails app" `rails new spec/internal` puts "Copying gemfile" `cp spec/support/Gemfile spec/internal` puts "Copying generator" `cp -r spec/support/lib/generators spec/internal/lib` within_test_app do puts "Bundle install" `bundle install` puts "running test_app_generator" system "rails generate test_app" puts "running migrations" puts `rake db:migrate db:test:prepare` end end puts "Running specs" end desc "Clean out the test rails app" task :clean do puts "Removing sample rails app" `rm -rf spec/internal` end def within_test_app FileUtils.cd('spec/internal') yield FileUtils.cd('../..') end
Version data entries
6 entries across 6 versions & 1 rubygems