object_cacheable 1.1.1 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/object_cacheable.rb +1 -0
- data/object_cacheable.gemspec +3 -2
- metadata +4 -3
- data/object_cacheable.rb +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6f8f4b152e3ad8f9de3407d14046f151cc051b4f
|
4
|
+
data.tar.gz: 8aa523780500c94269c0af3c65cb30daa0c6b2e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5b6ed97145418682ea9f67845a678956f5f29410e5ce5902b60dc0f4afcfe48434502b048ebdfa6a32b79b719d83bfb43f488700111ff26d04d9c6d4cf9edf5c
|
7
|
+
data.tar.gz: 88b3905bde776eabf22f054e1099260cf821e63f6929d849c7580dce6e1e19e8d663208776f7413c35a461e7408e4356e0cfb9670707a4df008afe6896624212
|
@@ -0,0 +1 @@
|
|
1
|
+
require "#{File.dirname(__FILE__)}/cacheable"
|
data/object_cacheable.gemspec
CHANGED
@@ -1,14 +1,15 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'object_cacheable'
|
3
|
-
s.version = '1.1.
|
3
|
+
s.version = '1.1.2'
|
4
4
|
s.summary = "Object-level caching"
|
5
5
|
s.description = "A gem for object-level caching."
|
6
6
|
s.authors = ['Linh Chau']
|
7
7
|
s.email = 'chauhonglinh@gmail.com'
|
8
8
|
s.files = [
|
9
|
-
'./Gemfile', './object_cacheable.gemspec', '
|
9
|
+
'./Gemfile', './object_cacheable.gemspec', 'lib/object_cacheable.rb',
|
10
10
|
'conf/cache_configs.yml', 'lib/cache_configuration.rb', 'lib/cache_utils.rb', 'lib/cacheable.rb',
|
11
11
|
'test/models/cacheable_test.rb'
|
12
12
|
]
|
13
13
|
s.homepage = 'https://github.com/linhchauatl/object_cacheable.git'
|
14
|
+
s.license = 'MIT'
|
14
15
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: object_cacheable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Linh Chau
|
@@ -18,14 +18,15 @@ extra_rdoc_files: []
|
|
18
18
|
files:
|
19
19
|
- "./Gemfile"
|
20
20
|
- "./object_cacheable.gemspec"
|
21
|
-
- "./object_cacheable.rb"
|
22
21
|
- conf/cache_configs.yml
|
23
22
|
- lib/cache_configuration.rb
|
24
23
|
- lib/cache_utils.rb
|
25
24
|
- lib/cacheable.rb
|
25
|
+
- lib/object_cacheable.rb
|
26
26
|
- test/models/cacheable_test.rb
|
27
27
|
homepage: https://github.com/linhchauatl/object_cacheable.git
|
28
|
-
licenses:
|
28
|
+
licenses:
|
29
|
+
- MIT
|
29
30
|
metadata: {}
|
30
31
|
post_install_message:
|
31
32
|
rdoc_options: []
|
data/object_cacheable.rb
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
require './lib/cacheable'
|