Sha256: ed438013915dfd8e93b3ae12f0c1bd728ab8d1261873d91ec2f63215af084ba1

Contents?: true

Size: 433 Bytes

Versions: 11

Compression:

Stored size: 433 Bytes

Contents

#!/usr/bin/env rake
require "bundler/gem_tasks"
require 'cucumber/rake/task'

namespace :spec do
  task :mocked do
    sh "env MOCK_CORE=true bundle exec rspec spec/"
  end
  task :unmocked do
    sh "env MOCK_CORE=false CORE_URL=http://api-development.localdev.engineyard.com:9292 bundle exec rspec spec/"
  end
end

task :spec => ["spec:mocked", "spec:unmocked"]

Cucumber::Rake::Task.new

task default: ["spec:mocked", :cucumber]

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
ey-core-3.6.0.autoscaling1 Rakefile
ey-core-3.6.4 Rakefile
ey-core-3.6.3 Rakefile
ey-core-3.6.1 Rakefile
groove-ey-core-3.6.3 Rakefile
groove-ey-core-3.6.2 Rakefile
groove-ey-core-3.6.1 Rakefile
ey-core-3.5.0 Rakefile
ey-core-3.4.4 Rakefile
ey-core-3.4.2 Rakefile
ey-core-3.4.1 Rakefile