Class: Catfish::CLI::Resolve
- Inherits:
-
Object
- Object
- Catfish::CLI::Resolve
- Defined in:
- lib/catfish/cli/resolve.rb
Instance Attribute Summary collapse
-
#options ⇒ Object
readonly
Returns the value of attribute options.
Instance Method Summary collapse
-
#initialize(options) ⇒ Resolve
constructor
A new instance of Resolve.
- #run ⇒ Object
Constructor Details
#initialize(options) ⇒ Resolve
Returns a new instance of Resolve.
5 6 7 |
# File 'lib/catfish/cli/resolve.rb', line 5 def initialize() = end |
Instance Attribute Details
#options ⇒ Object (readonly)
Returns the value of attribute options.
3 4 5 |
# File 'lib/catfish/cli/resolve.rb', line 3 def end |
Instance Method Details
#run ⇒ Object
9 10 11 12 13 14 |
# File 'lib/catfish/cli/resolve.rb', line 9 def run builder = Dsl.new builder.eval_catfishfile IO.write('Catfishfile.lock', builder.servers.join("\n")) p "#{builder.servers.size} servers found" end |