Class: Capistrano::Command::Tree::ConditionBranch::Evaluator
- Inherits:
-
Object
- Object
- Capistrano::Command::Tree::ConditionBranch::Evaluator
- Defined in:
- lib/capistrano/command.rb
Instance Attribute Summary collapse
-
#condition ⇒ Object
readonly
Returns the value of attribute condition.
-
#configuration ⇒ Object
readonly
Returns the value of attribute configuration.
-
#server ⇒ Object
readonly
Returns the value of attribute server.
Instance Method Summary collapse
- #in?(role) ⇒ Boolean
-
#initialize(config, condition, server) ⇒ Evaluator
constructor
A new instance of Evaluator.
- #method_missing(sym, *args, &block) ⇒ Object
- #result ⇒ Object
Constructor Details
#initialize(config, condition, server) ⇒ Evaluator
Returns a new instance of Evaluator.
58 59 60 61 62 |
# File 'lib/capistrano/command.rb', line 58 def initialize(config, condition, server) @configuration = config @condition = condition @server = server end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(sym, *args, &block) ⇒ Object
72 73 74 75 76 77 78 79 80 |
# File 'lib/capistrano/command.rb', line 72 def method_missing(sym, *args, &block) if server.respond_to?(sym) server.send(sym, *args, &block) elsif configuration.respond_to?(sym) configuration.send(sym, *args, &block) else super end end |
Instance Attribute Details
#condition ⇒ Object (readonly)
Returns the value of attribute condition.
56 57 58 |
# File 'lib/capistrano/command.rb', line 56 def condition @condition end |
#configuration ⇒ Object (readonly)
Returns the value of attribute configuration.
56 57 58 |
# File 'lib/capistrano/command.rb', line 56 def configuration @configuration end |
#server ⇒ Object (readonly)
Returns the value of attribute server.
56 57 58 |
# File 'lib/capistrano/command.rb', line 56 def server @server end |
Instance Method Details
#in?(role) ⇒ Boolean
64 65 66 |
# File 'lib/capistrano/command.rb', line 64 def in?(role) configuration.roles[role].include?(server) end |
#result ⇒ Object
68 69 70 |
# File 'lib/capistrano/command.rb', line 68 def result eval(condition, binding) end |