Sha256: a56b5c0b62b8e3a63eeeb48dc928fb960facb17e5c816dde8bcf6dda8d33f688

Contents?: true

Size: 692 Bytes

Versions: 14

Compression:

Stored size: 692 Bytes

Contents

require 'stove'

require 'aruba'
require 'aruba/cucumber'
require 'aruba/in_process'

Aruba::InProcess.main_class = Stove::Cli
Aruba.process = Aruba::InProcess

require 'community_zero/rspec'
CommunityZero::RSpec.start

require File.expand_path('../stove/git', __FILE__)

World(Aruba::Api)
World(Stove::Git)

Before do
  CommunityZero::RSpec.reset!

  Stove::Config.endpoint = CommunityZero::RSpec.url
  Stove::Config.username = 'stove'
  Stove::Config.key      = File.expand_path('../stove.pem', __FILE__)
end

Before do
  FileUtils.rm_rf(scratch_dir)
  FileUtils.mkdir_p(scratch_dir)
end

# The scratch directory
def scratch_dir
  @scratch_dir ||= File.expand_path('tmp/aruba/scratch')
end

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
stove-6.0.0 features/support/env.rb
stove-5.2.0 features/support/env.rb
stove-5.1.0 features/support/env.rb
stove-5.0.0 features/support/env.rb
stove-4.1.1 features/support/env.rb
stove-4.1.0 features/support/env.rb
stove-4.0.0 features/support/env.rb
stove-3.2.8 features/support/env.rb
wood-stove-3.2.9000 features/support/env.rb
stove-3.2.7 features/support/env.rb
stove-3.2.6 features/support/env.rb
stove-3.2.5 features/support/env.rb
stove-3.2.4 features/support/env.rb
stove-3.2.3 features/support/env.rb