fetchable 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/Changelog.md +7 -0
- data/fetchable.gemspec +1 -1
- data/lib/fetchable.rb +0 -1
- data/lib/fetchable/version.rb +1 -1
- metadata +3 -1
data/Changelog.md
ADDED
data/fetchable.gemspec
CHANGED
@@ -6,7 +6,7 @@ require 'fetchable/version'
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = "fetchable"
|
8
8
|
spec.version = Fetchable::VERSION
|
9
|
-
spec.authors = ["Stephen Best"]
|
9
|
+
spec.authors = ["Stephen Best", "Sam Phippen"]
|
10
10
|
spec.email = ["bestie@gmail.com"]
|
11
11
|
spec.summary = %q{Provides a decorator to add a Hash#fetch style interface to any object.}
|
12
12
|
spec.description = spec.summary + " " + %{For extra flexibility you may specify the method used to fetch items from the underlying collection.}
|
data/lib/fetchable.rb
CHANGED
data/lib/fetchable/version.rb
CHANGED
metadata
CHANGED
@@ -1,11 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fetchable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Stephen Best
|
9
|
+
- Sam Phippen
|
9
10
|
autorequire:
|
10
11
|
bindir: bin
|
11
12
|
cert_chain: []
|
@@ -70,6 +71,7 @@ extra_rdoc_files: []
|
|
70
71
|
files:
|
71
72
|
- .gitignore
|
72
73
|
- .rspec
|
74
|
+
- Changelog.md
|
73
75
|
- Gemfile
|
74
76
|
- LICENSE.txt
|
75
77
|
- README.md
|