dry_ice 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +2 -0
- data/dry_ice.gemspec +1 -0
- data/lib/dry_ice/version.rb +1 -1
- metadata +4 -3
data/README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# DryIce - Caching for HTTParty
|
2
2
|
|
3
|
+
[![Code Climate](https://codeclimate.com/repos/5204fbf4c7f3a324e901d957/badges/4da6100b52ac17461549/gpa.png)](https://codeclimate.com/repos/5204fbf4c7f3a324e901d957/feed)
|
4
|
+
|
3
5
|
## Description
|
4
6
|
|
5
7
|
Cache responses in HTTParty models. Every response from a resource which has a non 0 max-age header will be cached for the appropriate amount of time in the cache you provide it.
|
data/dry_ice.gemspec
CHANGED
@@ -11,6 +11,7 @@ Gem::Specification.new do |s|
|
|
11
11
|
s.homepage = "https://github.com/homeflow/dry_ice"
|
12
12
|
s.summary = %q{Caching for HTTParty}
|
13
13
|
s.description = %q{Cache responses in HTTParty models}
|
14
|
+
s.license = 'MIT'
|
14
15
|
|
15
16
|
s.add_dependency("httparty", "~> 0.9.0")
|
16
17
|
s.add_dependency("msgpack")
|
data/lib/dry_ice/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dry_ice
|
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:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-08-
|
12
|
+
date: 2013-08-12 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: httparty
|
@@ -62,7 +62,8 @@ files:
|
|
62
62
|
- spec/dry_ice_spec.rb
|
63
63
|
- spec/spec_helper.rb
|
64
64
|
homepage: https://github.com/homeflow/dry_ice
|
65
|
-
licenses:
|
65
|
+
licenses:
|
66
|
+
- MIT
|
66
67
|
post_install_message:
|
67
68
|
rdoc_options: []
|
68
69
|
require_paths:
|