Sha256: 08a4431446e1d26d0fd5f5e399511ecdf0a2d43ede281628c9ae25b599d26755

Contents?: true

Size: 1.67 KB

Versions: 11

Compression:

Stored size: 1.67 KB

Contents

require 'rake'
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'

def run_in_dummy_app(command)
  success = system("cd spec/dummy && #{command}")
  raise "#{command} failed" unless success
end

task "default" => "ci"

desc "Run all tests for CI"
task "ci" => "spec"

desc "Run all specs"
task "spec" => "spec:all"

namespace "spec" do
  task "all" => ["draper", "generators", "integration"]

  def spec_task(name)
    desc "Run #{name} specs"
    RSpec::Core::RakeTask.new(name) do |t|
      t.pattern = "spec/#{name}/**/*_spec.rb"
    end
  end

  spec_task "draper"
  spec_task "generators"

  desc "Run integration specs"
  task "integration" => ["db:setup", "integration:all"]

  namespace "integration" do
    task "all" => ["development", "production", "test"]

    ["development", "production"].each do |environment|
      task environment do
        Rake::Task["spec:integration:run"].execute environment
      end
    end

    task "run" do |t, environment|
      puts "Running integration specs in #{environment}"

      ENV["RAILS_ENV"] = environment
      success = system("rspec spec/integration")

      raise "Integration specs failed in #{environment}" unless success
    end

    task "test" do
      puts "Running rake in dummy app"
      ENV["RAILS_ENV"] = "test"
      run_in_dummy_app "rake"
    end
  end
end

namespace "db" do
  desc "Set up databases for integration testing"
  task "setup" do
    puts "Setting up databases"
    run_in_dummy_app "rm -f db/*.sqlite3"
    run_in_dummy_app "RAILS_ENV=development rake db:schema:load db:seed"
    run_in_dummy_app "RAILS_ENV=production rake db:schema:load db:seed"
    run_in_dummy_app "RAILS_ENV=test rake db:schema:load"
  end
end

Version data entries

11 entries across 11 versions & 4 rubygems

Version Path
draper_new-3.0.0 Rakefile
sc_core-0.0.7 test/dummy/vendor/bundle/ruby/2.2.0/gems/draper-2.1.0/Rakefile
draper-2.1.0 Rakefile
draper-2.0.0 Rakefile
draper-1.4.0 Rakefile
draper-1.3.1 Rakefile
draper-1.3.0 Rakefile
draper-1.2.1 Rakefile
draper-1.2.0 Rakefile
jamesgolick-draper-1.1.1a Rakefile
draper-1.1.0 Rakefile