Sha256: d784b5284d88f214526e56bc56f01f6134670af2f9b2919b807d582549f33cbe
Contents?: true
Size: 376 Bytes
Versions: 11
Compression:
Stored size: 376 Bytes
Contents
module RSpec module Helpers def lib File.expand_path('../../../lib', __FILE__) end def flombefile(*args) path = flombe_app("Flombefile") path = args.shift if Pathname === args.first str = args.shift || "" path.dirname.mkpath File.open(path.to_s, 'w') do |f| f.puts str end path.to_s end end end
Version data entries
11 entries across 11 versions & 1 rubygems