Sha256: 1a529805e8ba10f9a98b2eb5d7bd7ee9d3401520f5b249237120cea7269c7664
Contents?: true
Size: 1.23 KB
Versions: 10
Compression:
Stored size: 1.23 KB
Contents
require 'fileutils' include FileUtils Given /^the directory "([^"]*)" does not exist$/ do |dir| dir = File.join(ARUBA_DIR,dir) rm_rf dir,:verbose => false, :secure => true end Given /^my app's name is "([^"]*)"$/ do |app_name| @app_name = app_name end Then /^the file "([^"]*)" should use the same block variable throughout$/ do |file| prep_for_fs_check do content = IO.read(file) from_bundler = content.match(/(\w+)\.authors/)[1] added_by_methadone = content.match(/(\w+).add_development_dependency\('rdoc'/)[1] from_bundler.should == added_by_methadone end end Then /^the stderr should match \/([^\/]*)\/$/ do |expected| assert_matching_output(expected, all_stderr) end Given /^"(.*?)" has configured version to show only the version (.*)and not help$/ do |gemname,extras| lines = File.read("tmp/aruba/tmp/new-gem/#{gemname}").split(/\n/) File.open("tmp/aruba/tmp/new-gem/#{gemname}","w") do |file| lines.each do |line| if line =~ /^\s*version New::Gem::VERSION/ if extras =~ /with a custom format/ file.puts line + ", :compact => true, :format => '%s V%s'" else file.puts line + ", :compact => true" end else file.puts line end end end end
Version data entries
10 entries across 10 versions & 1 rubygems