Class: RubyFly::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/ruby_fly.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



62
63
64
65
66
67
# File 'lib/ruby_fly.rb', line 62

def initialize
  @binary = 'fly'
  @stdin = ''
  @stdout = $stdout
  @stderr = $stderr
end

Instance Attribute Details

#binaryObject

Returns the value of attribute binary.



60
61
62
# File 'lib/ruby_fly.rb', line 60

def binary
  @binary
end

#stderrObject

Returns the value of attribute stderr.



60
61
62
# File 'lib/ruby_fly.rb', line 60

def stderr
  @stderr
end

#stdinObject

Returns the value of attribute stdin.



60
61
62
# File 'lib/ruby_fly.rb', line 60

def stdin
  @stdin
end

#stdoutObject

Returns the value of attribute stdout.



60
61
62
# File 'lib/ruby_fly.rb', line 60

def stdout
  @stdout
end