migration-lock-timeout 1.2.0 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.circleci/config.yml +1 -1
- data/.ruby-version +1 -1
- data/Appraisals +9 -0
- data/CHANGELOG.md +4 -0
- data/gemfiles/.bundle/config +2 -0
- data/gemfiles/activerecord_6.gemfile +7 -0
- data/gemfiles/activerecord_6_with_strong_migrations.gemfile +8 -0
- data/lib/migration_lock_timeout/version.rb +1 -1
- data/migration-lock-timeout.gemspec +1 -1
- metadata +8 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 1737c35a61a69bb0c2668358c0dc8ca561aac317c62392f9116b362b6c95728c
|
4
|
+
data.tar.gz: a871a42b0de535c5853bd2826269d8a80719dca0ad95940ab0e2e7f2102a06ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a93600760cbf865b3a836ab64d4f1d74849ccc9e861dc03b39a983524bbbc0d63785dd031872aeeecdb30174a2ea154bc8811a411e5e303ac0cd56a04b86a82
|
7
|
+
data.tar.gz: c6cda326f927ebfdb9da6475c2c435afdd54b54854b2712b1cde0369edcbacc8d81e627bb8342c36c6ffe74f7803b37376402f0a6321f0a2b318b114a3066e0c
|
data/.circleci/config.yml
CHANGED
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
2.5.5
|
data/Appraisals
CHANGED
@@ -15,3 +15,12 @@ appraise "activerecord-5_with_strong_migrations" do
|
|
15
15
|
gem "activerecord", "5.0.0.1"
|
16
16
|
gem "strong_migrations", "0.2"
|
17
17
|
end
|
18
|
+
|
19
|
+
appraise "activerecord-6" do
|
20
|
+
gem "activerecord", "6.0.0"
|
21
|
+
end
|
22
|
+
|
23
|
+
appraise "activerecord-6_with_strong_migrations" do
|
24
|
+
gem "activerecord", "6.0.0"
|
25
|
+
gem "strong_migrations", "0.2"
|
26
|
+
end
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
6
|
|
7
|
+
## [1.3.0]
|
8
|
+
### Added
|
9
|
+
- Support for Rails 6
|
10
|
+
|
7
11
|
## [1.2.0]
|
8
12
|
### Added
|
9
13
|
- Support for using with the [strong_migrations](https://github.com/ankane/strong_migrations) gem
|
@@ -34,5 +34,5 @@ Gem::Specification.new do |spec|
|
|
34
34
|
spec.add_development_dependency "rake", "~> 11.2.2"
|
35
35
|
spec.add_development_dependency "rspec", "~> 3.0"
|
36
36
|
|
37
|
-
spec.add_runtime_dependency "activerecord", ">= 4.0", "<
|
37
|
+
spec.add_runtime_dependency "activerecord", ">= 4.0", "< 7.0"
|
38
38
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: migration-lock-timeout
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brad Urani
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-05-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: appraisal
|
@@ -103,7 +103,7 @@ dependencies:
|
|
103
103
|
version: '4.0'
|
104
104
|
- - "<"
|
105
105
|
- !ruby/object:Gem::Version
|
106
|
-
version: '
|
106
|
+
version: '7.0'
|
107
107
|
type: :runtime
|
108
108
|
prerelease: false
|
109
109
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -113,7 +113,7 @@ dependencies:
|
|
113
113
|
version: '4.0'
|
114
114
|
- - "<"
|
115
115
|
- !ruby/object:Gem::Version
|
116
|
-
version: '
|
116
|
+
version: '7.0'
|
117
117
|
description: Ruby gem that automatically adds a lock timeout to all Active Record
|
118
118
|
migrations
|
119
119
|
email:
|
@@ -137,10 +137,13 @@ files:
|
|
137
137
|
- Rakefile
|
138
138
|
- bin/console
|
139
139
|
- bin/setup
|
140
|
+
- gemfiles/.bundle/config
|
140
141
|
- gemfiles/activerecord_4.gemfile
|
141
142
|
- gemfiles/activerecord_4_with_strong_migrations.gemfile
|
142
143
|
- gemfiles/activerecord_5.gemfile
|
143
144
|
- gemfiles/activerecord_5_with_strong_migrations.gemfile
|
145
|
+
- gemfiles/activerecord_6.gemfile
|
146
|
+
- gemfiles/activerecord_6_with_strong_migrations.gemfile
|
144
147
|
- lib/migration-lock-timeout.rb
|
145
148
|
- lib/migration_lock_timeout/config.rb
|
146
149
|
- lib/migration_lock_timeout/lock_manager.rb
|
@@ -169,7 +172,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
169
172
|
version: '0'
|
170
173
|
requirements: []
|
171
174
|
rubyforge_project:
|
172
|
-
rubygems_version: 2.6.
|
175
|
+
rubygems_version: 2.7.6.2
|
173
176
|
signing_key:
|
174
177
|
specification_version: 4
|
175
178
|
summary: Ruby gem that adds a lock timeout to Active Record migrations
|