Sha256: f5bf550819c75be7ac05324f117ff17bf7288d380553e9961eb1740b93091b77
Contents?: true
Size: 1.28 KB
Versions: 1
Compression:
Stored size: 1.28 KB
Contents
Given /^a Cocoa app that does not have an existing Rakefile$/ do Given "a safe folder" setup_active_project_folder "SampleApp" end Given /^a Cocoa app that does have an existing Rakefile$/ do Given "a Cocoa app that does not have an existing Rakefile" in_project_folder do File.open("Rakefile", "w") do |f| f << <<-RUBY.gsub(/^ /, '') require "rubygems" require "rake" RUBY end end end Given /Rakefile wired to use development code instead of installed RubyGem/ do in_project_folder do prepend_to_file "Rakefile", "$:.unshift('#{@lib_path}')" end end Given /Rakefile constants rewired for local rsync/ do end Given /^a Cocoa app with choctop installed$/ do Given "a safe folder" @remote_folder = File.expand_path(File.join(@tmp_root, 'website')) FileUtils.rm_rf @remote_folder FileUtils.mkdir_p @remote_folder `cp -r #{File.dirname(__FILE__) + "/../fixtures/SampleApp"} #{@tmp_root}/ 2> /dev/null` `rm -rf #{@tmp_root}/SampleApp/build` setup_active_project_folder "SampleApp" Given "I run local executable 'install_choctop' with arguments '.'" Given "Rakefile wired to use development code instead of installed RubyGem" Given "Rakefile constants rewired for local rsync" ENV['NO_FINDER'] = 'YES' # disable Finder during tests end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
choctop-0.9.3 | features/steps/generator.rb |