where_exists 2.0.0 → 2.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/MIT-LICENSE +0 -0
- data/README.markdown +3 -1
- data/Rakefile +0 -0
- data/lib/where_exists/version.rb +1 -1
- data/lib/where_exists.rb +0 -0
- data/test/belongs_to_polymorphic_test.rb +0 -0
- data/test/belongs_to_test.rb +0 -0
- data/test/db/test.db +0 -0
- data/test/documentation_test.rb +0 -0
- data/test/has_and_belongs_to_many.rb +0 -0
- data/test/has_many_polymorphic_test.rb +0 -0
- data/test/has_many_test.rb +0 -0
- data/test/has_many_through_test.rb +0 -0
- data/test/test_helper.rb +0 -0
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 70bb8d0cc4affb99051fe748c883841abd8635f78faab07572208dd495ae9e0e
|
4
|
+
data.tar.gz: 56be70dc7847f0beddf4a19284485e8e50c38709e2b0db4f64a0250c967b0a33
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e86824a1c85aa3a4006bc20035444fe36d1895c7cb17fd3019e5da5431753ba45fd735bbd41ae903f807bc7e45e36d415c887390d2fab8805d44e8afdcd37f2c
|
7
|
+
data.tar.gz: 5a4814a20b678da5ee28b9cdbccd99ef653f4ea6284fd42f5203d0074301d35b3627524e00e89623000595fdb7f9c110873224f163edc2b0a112ae0deeba18b9
|
data/MIT-LICENSE
CHANGED
File without changes
|
data/README.markdown
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
## Description
|
6
6
|
|
7
|
-
<img src="
|
7
|
+
<img src="exists.png" alt="Exists" align="right" width="100" height="200">
|
8
8
|
|
9
9
|
This gem does exactly two things:
|
10
10
|
|
@@ -155,6 +155,8 @@ Also,
|
|
155
155
|
* Submit pull request with new features or bug fixes
|
156
156
|
* Enhance or clarify the documentation that you are reading
|
157
157
|
|
158
|
+
**Please ping me in addition to creating PR/issue** (just add "@EugZol" to the PR/issue text). Thank you!
|
159
|
+
|
158
160
|
To run tests:
|
159
161
|
```
|
160
162
|
> bundle exec appraisal install
|
data/Rakefile
CHANGED
File without changes
|
data/lib/where_exists/version.rb
CHANGED
data/lib/where_exists.rb
CHANGED
File without changes
|
File without changes
|
data/test/belongs_to_test.rb
CHANGED
File without changes
|
data/test/db/test.db
CHANGED
Binary file
|
data/test/documentation_test.rb
CHANGED
File without changes
|
File without changes
|
File without changes
|
data/test/has_many_test.rb
CHANGED
File without changes
|
File without changes
|
data/test/test_helper.rb
CHANGED
File without changes
|
metadata
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: where_exists
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eugene Zolotarev
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-07-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
14
|
+
name: activerecord
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
@@ -145,12 +145,12 @@ signing_key:
|
|
145
145
|
specification_version: 4
|
146
146
|
summary: "#where_exists extension of ActiveRecord"
|
147
147
|
test_files:
|
148
|
+
- test/documentation_test.rb
|
148
149
|
- test/belongs_to_polymorphic_test.rb
|
149
150
|
- test/belongs_to_test.rb
|
150
|
-
- test/db/test.db
|
151
|
-
- test/documentation_test.rb
|
152
|
-
- test/has_and_belongs_to_many.rb
|
153
151
|
- test/has_many_polymorphic_test.rb
|
154
|
-
- test/
|
152
|
+
- test/db/test.db
|
155
153
|
- test/has_many_through_test.rb
|
156
154
|
- test/test_helper.rb
|
155
|
+
- test/has_and_belongs_to_many.rb
|
156
|
+
- test/has_many_test.rb
|