class Jpmobile::Resolver
Constants
- DEFAULT_PATTERN
- EXTENSIONS
Public Class Methods
new(path)
click to toggle source
Calls superclass method
# File lib/jpmobile/resolver.rb, line 6 def initialize(path) raise ArgumentError, 'path already is a Resolver class' if path.is_a?(Resolver) super @pattern = DEFAULT_PATTERN @path = File.expand_path(path) end