Class: Catfish::CLI::Resolve

Inherits:
Object
  • Object
show all
Defined in:
lib/catfish/cli/resolve.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options, thor) ⇒ Resolve

Returns a new instance of Resolve.



5
6
7
8
# File 'lib/catfish/cli/resolve.rb', line 5

def initialize(options, thor)
  @options = options
  @thor = thor
end

Instance Attribute Details

#optionsObject (readonly)

Returns the value of attribute options.



3
4
5
# File 'lib/catfish/cli/resolve.rb', line 3

def options
  @options
end

#thorObject (readonly)

Returns the value of attribute thor.



3
4
5
# File 'lib/catfish/cli/resolve.rb', line 3

def thor
  @thor
end

Instance Method Details

#runObject



10
11
12
13
14
15
# File 'lib/catfish/cli/resolve.rb', line 10

def run
  builder = Dsl.new
  builder.eval_catfishfile
  IO.write('Catfishfile.lock', builder.servers.join("\n"))
  p "#{builder.servers.size} servers found"
end