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.35 features/support/env.rb
jekyll-s3-2.0.0 features/support/env.rb
jekyll-s3-1.0.0 features/support/env.rb
jekyll-s3-0.0.7 features/support/env.rb
jekyll-s3-0.0.6 features/support/env.rb
jekyll-s3-yearofmoo-0.0.33 features/support/env.rb
jekyll-s3-yearofmoo-0.0.32 features/support/env.rb
jekyll-s3-yearofmoo-0.0.31 features/support/env.rb
jekyll-s3-yearofmoo-0.0.30 features/support/env.rb
jekyll-s3-yearofmoo-0.0.29 features/support/env.rb
jekyll-s3-yearofmoo-0.0.28 features/support/env.rb
jekyll-s3-yearofmoo-0.0.27 features/support/env.rb
jekyll-s3-yearofmoo-0.0.26 features/support/env.rb
jekyll-s3-yearofmoo-0.0.25 features/support/env.rb
jekyll-s3-yearofmoo-0.0.24 features/support/env.rb
jekyll-s3-yearofmoo-0.0.23 features/support/env.rb
jekyll-s3-yearofmoo-0.0.22 features/support/env.rb
jekyll-s3-yearofmoo-0.0.21 features/support/env.rb
jekyll-s3-0.0.5 features/support/env.rb
jekyll-s3-yearofmoo-0.0.20 features/support/env.rb