Sha256: daa45ca92d731f025c10cd80baa05e16bf7029be67d60d1cff95f9949f491feb

Contents?: true

Size: 1.58 KB

Versions: 6

Compression:

Stored size: 1.58 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", "minitest-rails", "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"
  spec_task "minitest-rails"

  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
      run_in_dummy_app "rake"
    end
  end
end

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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
draper-1.0.0.beta6 Rakefile
draper-1.0.0.beta5 Rakefile
draper-1.0.0.beta4 Rakefile
draper-1.0.0.beta3 Rakefile
draper-1.0.0.beta2 Rakefile
draper-1.0.0.beta1 Rakefile