Sha256: 346f055b2f4d426563ed84441fa09f83a364c384642465a563e8e8becf82651e

Contents?: true

Size: 632 Bytes

Versions: 5

Compression:

Stored size: 632 Bytes

Contents

require "bundler"
Bundler.setup
Bundler::GemHelper.install_tasks

require "rake"

require "rspec/core/rake_task"
require "rspec/legacy_formatters/version"

require "cucumber/rake/task"
Cucumber::Rake::Task.new(:cucumber)

desc "Run all examples"
RSpec::Core::RakeTask.new(:spec) do |t|
  t.ruby_opts = %w[-w]
end

task :default => [:spec, :cucumber]

task :verify_private_key_present do
  private_key = File.expand_path('~/.gem/rspec-gem-private_key.pem')
  unless File.exist?(private_key)
    raise "Your private key is not present. This gem should not be built without that."
  end
end

task :build => :verify_private_key_present

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
rspec-legacy_formatters-1.0.2 Rakefile
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/rspec-legacy_formatters-1.0.1/Rakefile
rspec-legacy_formatters-1.0.1 Rakefile
rspec-legacy_formatters-1.0.0 Rakefile
rspec-legacy_formatters-1.0.0.rc1 Rakefile