Class: RubyFly::Configuration
- Inherits:
-
Object
- Object
- RubyFly::Configuration
- Defined in:
- lib/ruby_fly.rb
Instance Attribute Summary collapse
-
#binary ⇒ Object
Returns the value of attribute binary.
-
#stderr ⇒ Object
Returns the value of attribute stderr.
-
#stdin ⇒ Object
Returns the value of attribute stdin.
-
#stdout ⇒ Object
Returns the value of attribute stdout.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
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
#binary ⇒ Object
Returns the value of attribute binary.
60 61 62 |
# File 'lib/ruby_fly.rb', line 60 def binary @binary end |
#stderr ⇒ Object
Returns the value of attribute stderr.
60 61 62 |
# File 'lib/ruby_fly.rb', line 60 def stderr @stderr end |
#stdin ⇒ Object
Returns the value of attribute stdin.
60 61 62 |
# File 'lib/ruby_fly.rb', line 60 def stdin @stdin end |
#stdout ⇒ Object
Returns the value of attribute stdout.
60 61 62 |
# File 'lib/ruby_fly.rb', line 60 def stdout @stdout end |