module SolvePb::ClassMethods

Public Instance Methods

main() click to toggle source
# File lib/solve_pb.rb, line 24
def main
  args = SolvePb::ArgsInspector.new.parse
  args.nil? ? 'Lack of URL' : SolvePb::FileGenerator.new.generate(args)
end
root() click to toggle source
# File lib/solve_pb.rb, line 16
def root
  File.dirname __dir__
end
test() click to toggle source
# File lib/solve_pb.rb, line 20
def test
  File.join root, "test"
end