Sha256: beff5bc0498aee7e9ab5c2a132369b35c05a407186af688cbf6de0c2b3c9c386

Contents?: true

Size: 1.15 KB

Versions: 50

Compression:

Stored size: 1.15 KB

Contents

When /^I build the gem$/ do
  project_root = Pathname.new(File.dirname(__FILE__)).parent.parent.expand_path
  rakefile = File.join(project_root, 'Rakefile')
  File.exist?(rakefile).should be_true
  
  # For some unknown reason, the following fails with
  # Don't know how to build task 'default'
  # Even though running the below in irb, and rake -f Rakefile build
  # works fine
  #
  # silent_system('rake -f #{rakefile} build').should be_true
  
  # HACK: using no path for now

  silent_system('rake build').should be_true
  
end

When /^I install the latest gem$/ do
  project_root = Pathname.new(File.dirname(__FILE__)).parent.parent.expand_path
  pkg_dir = project_root.join('pkg')
  glob = File.join(pkg_dir, '*.gem')
  latest = Dir.glob(glob).sort {|a, b| File.ctime(a) <=> File.ctime(b) }.last
  silent_system("gem install #{latest} --no-ri --no-rdoc").should be_true
end

Then /^I should have cucumber\-chef on my path$/ do
  silent_system("which cucumber-chef").should be_true
end

Then /^I can get help about the cucumber\-chef binary on the command line$/ do
  help_text = %x[cucumber-chef help]
  help_text.include?("cucumber-chef help [TASK]").should be_true
end

Version data entries

50 entries across 50 versions & 1 rubygems

Version Path
cucumber-chef-3.0.8 features/steps/installing_steps.rb
cucumber-chef-3.0.7 features/steps/installing_steps.rb
cucumber-chef-3.0.6 features/steps/installing_steps.rb
cucumber-chef-3.0.5 features/steps/installing_steps.rb
cucumber-chef-3.0.4 features/steps/installing_steps.rb
cucumber-chef-3.0.3 features/steps/installing_steps.rb
cucumber-chef-3.0.2 features/steps/installing_steps.rb
cucumber-chef-3.0.1 features/steps/installing_steps.rb
cucumber-chef-3.0.0 features/steps/installing_steps.rb
cucumber-chef-3.0.0.rc.5 features/steps/installing_steps.rb
cucumber-chef-3.0.0.rc.4 features/steps/installing_steps.rb
cucumber-chef-3.0.0.rc.3 features/steps/installing_steps.rb
cucumber-chef-3.0.0.rc.2 features/steps/installing_steps.rb
cucumber-chef-3.0.0.rc.1 features/steps/installing_steps.rb
cucumber-chef-3.0.0.rc.0 features/steps/installing_steps.rb
cucumber-chef-2.1.0.rc.15 features/steps/installing_steps.rb
cucumber-chef-2.1.0.rc.14 features/steps/installing_steps.rb
cucumber-chef-2.1.0.rc.12 features/steps/installing_steps.rb
cucumber-chef-2.1.0.rc.11 features/steps/installing_steps.rb
cucumber-chef-2.1.0.rc.10 features/steps/installing_steps.rb