document_hash 0.0.1 → 0.0.2
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/document_hash.gemspec +1 -1
- data/lib/document_hash/version.rb +2 -2
- data/lib/{document.rb → document_hash.rb} +1 -1
- metadata +3 -3
data/document_hash.gemspec
CHANGED
|
@@ -5,7 +5,7 @@ require 'document_hash/version'
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |gem|
|
|
7
7
|
gem.name = "document_hash"
|
|
8
|
-
gem.version =
|
|
8
|
+
gem.version = DocumentHash::VERSION
|
|
9
9
|
gem.authors = ["Giancarlo Palavicini"]
|
|
10
10
|
gem.email = ["kasthor@gmail.com"]
|
|
11
11
|
gem.description = %q{Implements a multi-level nested document, that notifies about changes, and some other related features}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
module
|
|
2
|
-
VERSION = "0.0.
|
|
1
|
+
module DocumentHash
|
|
2
|
+
VERSION = "0.0.2"
|
|
3
3
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: document_hash
|
|
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-05-
|
|
12
|
+
date: 2013-05-24 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rspec
|
|
@@ -44,7 +44,7 @@ files:
|
|
|
44
44
|
- document_hash.gemspec
|
|
45
45
|
- lib/.document.rb.swo
|
|
46
46
|
- lib/.document.rb.swp
|
|
47
|
-
- lib/
|
|
47
|
+
- lib/document_hash.rb
|
|
48
48
|
- lib/document_hash/.version.rb.swp
|
|
49
49
|
- lib/document_hash/version.rb
|
|
50
50
|
- spec/.spec_helper.rb.swp
|