Sha256: 59b7c3d0dad4bc40c05ca501e9aa7f4c87c2613c91442a8d0242df2c8b07d728

Contents?: true

Size: 376 Bytes

Versions: 2

Compression:

Stored size: 376 Bytes

Contents

module MinableSupport
  def install_minable(path = nil)
    if path
      run_simple("bundle exec minable install --path '#{path}'")
    else
      run_simple("bundle exec minable install")
    end
  end

  def minable_path(prefix, path)
    if prefix
      File.join(prefix, 'minable', path)
    else
      File.join('minable', path)
    end
  end
end

World(MinableSupport)

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
minable-0.0.2 features/support/minable_support.rb
minable-0.0.1 features/support/minable_support.rb