unique_validation_inspector 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/README.md +1 -0
- data/lib/unique_validation_inspector/version.rb +1 -1
- data/unique_validation_inspector.gemspec +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a9edb175131948f266f9b55a44203e057c2fceeb
|
4
|
+
data.tar.gz: 27c0ffd038c946a2e277ac35ff010d5aa872d3b7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c5b662d683c2184c305a43991a8b4abbd78353f1613432284d9944c403d6337e437b3b405edd19cf67dc3cd3dbaa6e4378fe3ccc1b1e8d47b975d082501b1fbe
|
7
|
+
data.tar.gz: 79e041bd0fa772fed009adbdc1daf59aeb2e97d4de267d59355eddbe3669dfe860aff5efac5520ab1e8c3e0826eab46b34e8947ac1c68c005910c71a3c2ffb79
|
data/README.md
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
# UniqueValidationInspector
|
2
2
|
|
3
3
|

|
4
|
+
[](https://badge.fury.io/rb/unique_validation_inspector)
|
4
5
|
|
5
6
|
A Rake task that helps you find unique validations in models that do not have proper DB indexes.
|
6
7
|
|
@@ -9,9 +9,9 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ["Igor Khomenko"]
|
10
10
|
spec.email = ["igor@quickblox.com"]
|
11
11
|
|
12
|
-
spec.summary = "A Rake task that helps you find unique validations in models that do not have DB indexes."
|
12
|
+
spec.summary = "A Rake task that helps you find unique validations in models that do not have proper DB indexes."
|
13
13
|
spec.description = "A Rake task investigates the application's models definition, then tells you unique validations that do not have DB indexes."
|
14
|
-
spec.homepage = "https://
|
14
|
+
spec.homepage = "https://github.com/soulfly/unique_validation_inspector"
|
15
15
|
spec.license = 'MIT'
|
16
16
|
|
17
17
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: unique_validation_inspector
|
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
|
- Igor Khomenko
|
@@ -100,7 +100,7 @@ files:
|
|
100
100
|
- lib/unique_validation_inspector.rb
|
101
101
|
- lib/unique_validation_inspector/version.rb
|
102
102
|
- unique_validation_inspector.gemspec
|
103
|
-
homepage: https://
|
103
|
+
homepage: https://github.com/soulfly/unique_validation_inspector
|
104
104
|
licenses:
|
105
105
|
- MIT
|
106
106
|
metadata: {}
|
@@ -124,5 +124,5 @@ rubygems_version: 2.5.2
|
|
124
124
|
signing_key:
|
125
125
|
specification_version: 4
|
126
126
|
summary: A Rake task that helps you find unique validations in models that do not
|
127
|
-
have DB indexes.
|
127
|
+
have proper DB indexes.
|
128
128
|
test_files: []
|