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 ADDED
@@ -0,0 +1,7 @@
1
+ # Change log
2
+
3
+ ## 0.0.2
4
+ Fix require bug
5
+
6
+ ## 0.0.1
7
+ Initial release
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
@@ -1,4 +1,3 @@
1
- require "fetchable/version"
2
1
  require "delegate"
3
2
 
4
3
  class Fetchable < SimpleDelegator
@@ -1,3 +1,3 @@
1
1
  require "fetchable"
2
2
 
3
- Fetchable::VERSION = "0.0.1"
3
+ Fetchable::VERSION = "0.0.2"
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.1
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