Sha256: 2c199a7770f343df2fda3e3db73c6aee9e2ca2edbda55e8208939875d84fe7ab

Contents?: true

Size: 465 Bytes

Versions: 5

Compression:

Stored size: 465 Bytes

Contents

require 'fig/logging'
require 'fig/packageerror'
require 'fig/package/statement'

module Fig; end
class Fig::Package; end

# Specifies a default command that will be executed for a given Configuration
# if no command is specified on the command-line.
class Fig::Package::Command
  include Fig::Package::Statement

  attr_reader :command

  def initialize(command)
    @command = command
  end

  def unparse(indent)
    %Q<#{indent}command "#{@command}">
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
fig18-0.1.51-i386-mswin32 lib/fig/package/command.rb
fig18-0.1.51-i386-mingw32 lib/fig/package/command.rb
fig18-0.1.51 lib/fig/package/command.rb
fig-0.1.51-java lib/fig/package/command.rb
fig-0.1.51 lib/fig/package/command.rb