Class: RSGem::Tasks::AddDependency

Inherits:
Base
  • Object
show all
Defined in:
lib/rsgem/tasks/add_dependency.rb

Constant Summary collapse

OUTPUT =
OutputStruct.new(name: :output_name)

Instance Attribute Summary

Attributes inherited from Base

#args, #context

Instance Method Summary collapse

Methods inherited from Base

#call, #initialize

Methods included from Output

#with_output

Constructor Details

This class inherits a constructor from RSGem::Tasks::Base

Instance Method Details

#performObject



8
9
10
11
12
13
14
# File 'lib/rsgem/tasks/add_dependency.rb', line 8

def perform
  return if already_installed?

  add_dependency
  write_to_gemspec
  dependency.install(context)
end