Module: Pullable
- Defined in:
- lib/pullable.rb,
lib/pullable/version.rb,
lib/pullable/directory.rb
Defined Under Namespace
Classes: Directory, Processor
Constant Summary
collapse
- VERSION =
"1.1.0"
Class Method Summary
collapse
Class Method Details
.process!(path, method = 'merge') ⇒ Object
7
8
9
10
11
12
13
|
# File 'lib/pullable.rb', line 7
def self.process!(path, method = 'merge')
if method == '' || method == nil
method = 'merge'
end
Pullable::Directory.process!(path, method)
end
|