Method: LicenseFinder::Rebar#initialize

Defined in:
lib/license_finder/package_managers/rebar.rb

#initialize(options = {}) ⇒ Rebar

Returns a new instance of Rebar.



5
6
7
8
9
# File 'lib/license_finder/package_managers/rebar.rb', line 5

def initialize(options = {})
  super
  @command = options[:rebar_command] || package_management_command
  @deps_path = Pathname(options[:rebar_deps_dir] || File.join(project_path, '_build/default/lib'))
end