rubocop-migration 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: 85aebed56d23b5b864f2be24cff92db854c04214
4
- data.tar.gz: e1d42ca0ebfea2ee641820dcaaca204d2506b0ae
3
+ metadata.gz: 18d15295e2b2d2cea9b6cdb58f2de2e5c2ae2931
4
+ data.tar.gz: d616df1b06c2c711d6f82e4eb2548a536eaff1f7
5
5
  SHA512:
6
- metadata.gz: 297517f1ec4b2395419075356cdc2219f10db378bf814fa143cdbfed01bfeec49e5ba168bb2d187695a428dd27e21a1a878d8de2fc06c50185a8752997c776f4
7
- data.tar.gz: d4b33de1abaafb04c9e30ea2064c08ead9efc6b126ab6f013b1e9f3a1d770e83f7a7e69ecaa6f02e0ab61a98cb409ae464fe31b905b2de48e336b6d4e3a3cf99
6
+ metadata.gz: cf93f98b7b7bfddaee4689e7dae70d267c8e4b202e480c22221ce2d9c8b4d8e3dc9cc6258581eb589228ef79c60d442a3e085781bd43c855718345e176720335
7
+ data.tar.gz: d88df8c695daf167df7b46f621f9cc4ce5b74a754cde2d523c97234203a0c84449a96830b933b6e450e9b369daef47df598f7004f4e7abe600ea0df9edb32d12
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # rubocop-migration [![CircleCI](https://circleci.com/gh/wealthsimple/rubocop-migration.svg?style=svg)](https://circleci.com/gh/wealthsimple/rubocop-migration)
1
+ # rubocop-migration [![CircleCI](https://circleci.com/gh/wealthsimple/rubocop-migration.svg?style=svg)](https://circleci.com/gh/wealthsimple/rubocop-migration) [![Gem Version](https://badge.fury.io/rb/rubocop-migration.svg)](https://rubygems.org/gems/rubocop-migration)
2
2
 
3
3
  RuboCop extension to catch common pitfalls in ActiveRecord migrations.
4
4
 
@@ -2,7 +2,7 @@ module RuboCop
2
2
  module Cop
3
3
  module Migration
4
4
  class AddIndexNonConcurrently < Cop
5
- MSG = 'Use `algorithm: :concurrently` to avoid locking database.'.freeze
5
+ MSG = 'Use `algorithm: :concurrently` to avoid locking table.'.freeze
6
6
 
7
7
  def_node_matcher :add_index_match, <<-PATTERN
8
8
  (send nil :add_index _ _ (hash $...))
@@ -1,5 +1,5 @@
1
1
  module RuboCop
2
2
  module Migration
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-migration
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
  - Peter Graham