Sha256: c2a527b06189d44901f644cded1f52d1339558c394aa9be98c765f0a2e464d4f

Contents?: true

Size: 580 Bytes

Versions: 37

Compression:

Stored size: 580 Bytes

Contents

require 'rubygems'
require 'bundler'

Bundler.require

require 'aruba/cucumber'
require 'cucumber/rspec/doubles'

# Following from 'aruba/cucumber'
Before do
  @__aruba_original_paths = (ENV['PATH'] || '').split(File::PATH_SEPARATOR)
  ENV['PATH'] = ([File.expand_path('bin')] + @__aruba_original_paths).join(File::PATH_SEPARATOR)
end

After do
  ENV['PATH'] = @__aruba_original_paths.join(File::PATH_SEPARATOR)
end
# End of following from 'aruba/cucumber'

Then /^the file "([^"]*)" should contain:$/ do |file, exact_content|
  check_file_content(file, exact_content, true)
end

Version data entries

37 entries across 37 versions & 2 rubygems

Version Path
jekyll-s3-yearofmoo-0.0.19 features/support/env.rb
jekyll-s3-yearofmoo-0.0.18 features/support/env.rb
jekyll-s3-yearofmoo-0.0.17 features/support/env.rb
jekyll-s3-yearofmoo-0.0.16 features/support/env.rb
jekyll-s3-yearofmoo-0.0.15 features/support/env.rb
jekyll-s3-yearofmoo-0.0.14 features/support/env.rb
jekyll-s3-yearofmoo-0.0.13 features/support/env.rb
jekyll-s3-yearofmoo-0.0.12 features/support/env.rb
jekyll-s3-yearofmoo-0.0.11 features/support/env.rb
jekyll-s3-yearofmoo-0.0.10 features/support/env.rb
jekyll-s3-yearofmoo-0.0.9 features/support/env.rb
jekyll-s3-yearofmoo-0.0.8 features/support/env.rb
jekyll-s3-yearofmoo-0.0.7 features/support/env.rb
jekyll-s3-yearofmoo-0.0.6 features/support/env.rb
jekyll-s3-yearofmoo-0.0.5 features/support/env.rb
jekyll-s3-yearofmoo-0.0.4 features/support/env.rb
jekyll-s3-0.0.4 features/support/env.rb