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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d8d22a62608548622ce222589c6916de85df638f
4
- data.tar.gz: 334955c619c2d49aba3f11abac0d3c23c00e3833
3
+ metadata.gz: a9edb175131948f266f9b55a44203e057c2fceeb
4
+ data.tar.gz: 27c0ffd038c946a2e277ac35ff010d5aa872d3b7
5
5
  SHA512:
6
- metadata.gz: 7c9cb2a3b3985708c5ad6dc1c93e1d5a7e952cd3563b24f20ac696713cc9a749a3085b865b1a0f5bc413ebe2f90024f722969020b47664e6482c566b050f1e49
7
- data.tar.gz: e7d7a8e3db130b5c994089327623e6515d641b39f19a4e3754fc045ff7be82610a45f6a6713c71d6797deed07b01ea593dffcef2ebaaaf8477ff6ed84aa177d3
6
+ metadata.gz: c5b662d683c2184c305a43991a8b4abbd78353f1613432284d9944c403d6337e437b3b405edd19cf67dc3cd3dbaa6e4378fe3ccc1b1e8d47b975d082501b1fbe
7
+ data.tar.gz: 79e041bd0fa772fed009adbdc1daf59aeb2e97d4de267d59355eddbe3669dfe860aff5efac5520ab1e8c3e0826eab46b34e8947ac1c68c005910c71a3c2ffb79
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # UniqueValidationInspector
2
2
 
3
3
  ![build passing](https://travis-ci.org/soulfly/unique_validation_inspector.svg?branch=master)
4
+ [![Gem Version](https://badge.fury.io/rb/unique_validation_inspector.svg)](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
 
@@ -1,3 +1,3 @@
1
1
  module UniqueValidationInspector
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -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://igor.io"
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.0
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://igor.io
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: []