mongoid-denormalization 0.1.0 → 0.1.1
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +35 -0
- data/lib/mongoid/denormalization/version.rb +1 -1
- data/mongoid-denormalization.gemspec +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aa1a0ba39056d1e83f3f6b9979d7a35ab94b5385
|
|
4
|
+
data.tar.gz: ebb5f7a673846691c0125e2688dabe112441b513
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4ab451d3b02ca0be0085802d4760e052a1e1dcbcbb14edcd0020ce2d217e97b52e78bd7b238c45b9bc98cdafabf466e72bc8d3f0f9c872a253f96c20c6f1c509
|
|
7
|
+
data.tar.gz: d23b0d4a2913d3a5bfca789954f76a5d5098dbae7f1d8e8f8de455b1cb5c4ad56ef4c6ef8a756425264495f8127cd225f83bd2944ff9c1d864501d7b965704c6
|
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
mongoid-denormalization (0.1.1)
|
|
5
|
+
|
|
6
|
+
GEM
|
|
7
|
+
remote: https://rubygems.org/
|
|
8
|
+
specs:
|
|
9
|
+
diff-lcs (1.3)
|
|
10
|
+
rake (10.5.0)
|
|
11
|
+
rspec (3.6.0)
|
|
12
|
+
rspec-core (~> 3.6.0)
|
|
13
|
+
rspec-expectations (~> 3.6.0)
|
|
14
|
+
rspec-mocks (~> 3.6.0)
|
|
15
|
+
rspec-core (3.6.0)
|
|
16
|
+
rspec-support (~> 3.6.0)
|
|
17
|
+
rspec-expectations (3.6.0)
|
|
18
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
19
|
+
rspec-support (~> 3.6.0)
|
|
20
|
+
rspec-mocks (3.6.0)
|
|
21
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
22
|
+
rspec-support (~> 3.6.0)
|
|
23
|
+
rspec-support (3.6.0)
|
|
24
|
+
|
|
25
|
+
PLATFORMS
|
|
26
|
+
ruby
|
|
27
|
+
|
|
28
|
+
DEPENDENCIES
|
|
29
|
+
bundler (~> 1.16)
|
|
30
|
+
mongoid-denormalization!
|
|
31
|
+
rake (~> 10.0)
|
|
32
|
+
rspec (~> 3.0)
|
|
33
|
+
|
|
34
|
+
BUNDLED WITH
|
|
35
|
+
1.16.0
|
|
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
|
|
|
11
11
|
|
|
12
12
|
spec.summary = %q{Mongoid denormalization helper module}
|
|
13
13
|
spec.description = %q{Helper module for denormalizing association attributes in Mongoid models.}
|
|
14
|
-
spec.homepage = "http://github.com/chaudhary/
|
|
14
|
+
spec.homepage = "http://github.com/chaudhary/mongoid-denormalization"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
|
17
17
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mongoid-denormalization
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amit Chaudhary
|
|
@@ -64,6 +64,7 @@ files:
|
|
|
64
64
|
- ".travis.yml"
|
|
65
65
|
- CODE_OF_CONDUCT.md
|
|
66
66
|
- Gemfile
|
|
67
|
+
- Gemfile.lock
|
|
67
68
|
- LICENSE.txt
|
|
68
69
|
- README.md
|
|
69
70
|
- Rakefile
|
|
@@ -72,7 +73,7 @@ files:
|
|
|
72
73
|
- lib/mongoid/denormalization.rb
|
|
73
74
|
- lib/mongoid/denormalization/version.rb
|
|
74
75
|
- mongoid-denormalization.gemspec
|
|
75
|
-
homepage: http://github.com/chaudhary/
|
|
76
|
+
homepage: http://github.com/chaudhary/mongoid-denormalization
|
|
76
77
|
licenses:
|
|
77
78
|
- MIT
|
|
78
79
|
metadata: {}
|