Class: TheLocal::ProviderCheck

Inherits:
Object
  • Object
show all
Defined in:
lib/the_local/provider_check.rb

Constant Summary collapse

LOCALS =
%w[info install develop].freeze

Instance Method Summary collapse

Constructor Details

#initialize(gem_root) ⇒ ProviderCheck

Returns a new instance of ProviderCheck.



11
12
13
# File 'lib/the_local/provider_check.rb', line 11

def initialize(gem_root)
  @gem_root = gem_root
end

Instance Method Details

#problemsObject



15
16
17
# File 'lib/the_local/provider_check.rb', line 15

def problems
  format_problems + scope_problems + interface_problems
end