Module: GemDating
- Defined in:
- lib/gem_dating.rb,
lib/gem_dating/cli.rb,
lib/gem_dating/input.rb,
lib/gem_dating/result.rb,
lib/gem_dating/version.rb,
lib/gem_dating/rubygems.rb
Defined Under Namespace
Classes: Cli, Input, Result, Rubygems
Constant Summary
collapse
- VERSION =
"0.1.2"
Class Method Summary
collapse
Class Method Details
.from_file(path, options = {}) ⇒ Object
13
14
15
16
|
# File 'lib/gem_dating.rb', line 13
def self.from_file(path, options = {})
gems = Input.file(path).gems
fetch_specs(gems, options)
end
|
.from_string(s, options = {}) ⇒ Object
8
9
10
11
|
# File 'lib/gem_dating.rb', line 8
def self.from_string(s, options = {})
gems = Input.string(s).gems
fetch_specs(gems, options)
end
|