blockcache 0.2 → 0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/blockcache.gemspec +18 -0
- metadata +4 -3
data/blockcache.gemspec
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Gem::Specification.new do |s|
|
|
2
|
+
s.name = 'blockcache'
|
|
3
|
+
s.version = '0.3'
|
|
4
|
+
|
|
5
|
+
s.authors = ["Matthew Scharley"]
|
|
6
|
+
s.date = %q{2012-03-11}
|
|
7
|
+
s.description = %q{Cache that knows how to update it's own contents.}
|
|
8
|
+
s.email = %q{matt.scharley@gmail.com}
|
|
9
|
+
s.files = `git ls-files | egrep -v '^\\.'`.split("\n")
|
|
10
|
+
s.homepage = %q{http://github.com/mscharley/ruby-blockcache}
|
|
11
|
+
s.require_paths = ['lib']
|
|
12
|
+
s.summary = %q{iCache that knows how to update it's own contents.}
|
|
13
|
+
|
|
14
|
+
if s.respond_to? :specification_version then
|
|
15
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
16
|
+
s.specification_version = 2
|
|
17
|
+
end
|
|
18
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: blockcache
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: '0.
|
|
4
|
+
version: '0.3'
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -11,7 +11,7 @@ bindir: bin
|
|
|
11
11
|
cert_chain: []
|
|
12
12
|
date: 2012-03-11 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
|
-
description:
|
|
14
|
+
description: Cache that knows how to update it's own contents.
|
|
15
15
|
email: matt.scharley@gmail.com
|
|
16
16
|
executables: []
|
|
17
17
|
extensions: []
|
|
@@ -19,6 +19,7 @@ extra_rdoc_files: []
|
|
|
19
19
|
files:
|
|
20
20
|
- LICENSE
|
|
21
21
|
- README.md
|
|
22
|
+
- blockcache.gemspec
|
|
22
23
|
- lib/blockcache.rb
|
|
23
24
|
homepage: http://github.com/mscharley/ruby-blockcache
|
|
24
25
|
licenses: []
|
|
@@ -43,5 +44,5 @@ rubyforge_project:
|
|
|
43
44
|
rubygems_version: 1.8.15
|
|
44
45
|
signing_key:
|
|
45
46
|
specification_version: 2
|
|
46
|
-
summary:
|
|
47
|
+
summary: iCache that knows how to update it's own contents.
|
|
47
48
|
test_files: []
|