mongoid-compatibility 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop_todo.yml +5 -5
- data/CHANGELOG.md +4 -0
- data/README.md +2 -0
- data/lib/mongoid-compatibility.rb +1 -6
- data/lib/mongoid/compatibility.rb +4 -0
- data/lib/{mongoid-compatibility → mongoid/compatibility}/object_id.rb +0 -0
- data/lib/{mongoid-compatibility → mongoid/compatibility}/self.rb +1 -1
- data/lib/{mongoid-compatibility → mongoid/compatibility}/version.rb +0 -0
- data/mongoid-compatibility.gemspec +1 -1
- data/spec/{mongoid-compatibility → mongoid/compatibility}/object_id_spec.rb +0 -0
- data/spec/{mongoid-compatibility → mongoid/compatibility}/self_spec.rb +0 -0
- data/spec/spec_helper.rb +1 -1
- metadata +8 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b581d6fe6ab393d78062a912a5469d7556264ddf
|
4
|
+
data.tar.gz: 8c4d0a914c47b6cd8aa3c2ad5f33e98bfa00dc2c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9de999fb31af5a1f174879fd7e2977b0dcc1d82e938b6912aecaa79872d2bab0eec8aa2a52be60a71dd5717957e44c6f3e608dae304fe44fc7945fdd60ef8d68
|
7
|
+
data.tar.gz: 09f6db3fd48cbd4aef59d1f7b3fd9495e40c8683be87e13b1c854d7547851d34dd3870b1a8e826a5d842fd1c06eacc054b43794eea2913b89217b75949ed8b98
|
data/.rubocop_todo.yml
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on 2015-09-
|
3
|
+
# on 2015-09-18 13:28:36 -0400 using RuboCop version 0.33.0.
|
4
4
|
# The point is for the user to remove these configuration records
|
5
5
|
# one by one as the offenses are removed from the code base.
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
7
7
|
# versions of RuboCop, may require this file to be generated again.
|
8
8
|
|
9
|
-
# Offense count:
|
9
|
+
# Offense count: 4
|
10
10
|
# Configuration parameters: AllowURI, URISchemes.
|
11
11
|
Metrics/LineLength:
|
12
12
|
Max: 118
|
@@ -14,9 +14,9 @@ Metrics/LineLength:
|
|
14
14
|
# Offense count: 3
|
15
15
|
Style/Documentation:
|
16
16
|
Exclude:
|
17
|
-
- 'lib/mongoid
|
18
|
-
- 'lib/mongoid
|
19
|
-
- 'lib/mongoid
|
17
|
+
- 'lib/mongoid/compatibility/object_id.rb'
|
18
|
+
- 'lib/mongoid/compatibility/self.rb'
|
19
|
+
- 'lib/mongoid/compatibility/version.rb'
|
20
20
|
|
21
21
|
# Offense count: 1
|
22
22
|
# Configuration parameters: Exclude.
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mongoid-compatibility
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Doubrovkine
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-09-
|
11
|
+
date: 2015-09-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: mongoid
|
@@ -56,16 +56,17 @@ files:
|
|
56
56
|
- README.md
|
57
57
|
- Rakefile
|
58
58
|
- lib/mongoid-compatibility.rb
|
59
|
-
- lib/mongoid
|
60
|
-
- lib/mongoid
|
61
|
-
- lib/mongoid
|
59
|
+
- lib/mongoid/compatibility.rb
|
60
|
+
- lib/mongoid/compatibility/object_id.rb
|
61
|
+
- lib/mongoid/compatibility/self.rb
|
62
|
+
- lib/mongoid/compatibility/version.rb
|
62
63
|
- lib/mongoid_compatibility.rb
|
63
64
|
- mongoid-compatibility.gemspec
|
64
65
|
- spec/config/mongoid3.yml
|
65
66
|
- spec/config/mongoid4.yml
|
66
67
|
- spec/config/mongoid5.yml
|
67
|
-
- spec/mongoid
|
68
|
-
- spec/mongoid
|
68
|
+
- spec/mongoid/compatibility/object_id_spec.rb
|
69
|
+
- spec/mongoid/compatibility/self_spec.rb
|
69
70
|
- spec/spec_helper.rb
|
70
71
|
- spec/support/mongoid.rb
|
71
72
|
homepage: http://github.com/dblock/mongoid-compatibility
|