ae_check_migrations_load_silently 0.2.1 → 1.0.0

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
  SHA256:
3
- metadata.gz: 62f02fac802f20df55f4249e14bf4a6f35982b1314379de276a3869f911c1806
4
- data.tar.gz: 296a21673ad2e68e2d0cb307a2726e674b4d82fde8e33362dd13226b87e75056
3
+ metadata.gz: d80a2f0567fb52e873f2b9f700d25f3232a2fea0f654b6dc7e236a5aaa189184
4
+ data.tar.gz: 53d1061e8f0e2e45a6b05a14770e071aa46dabc12fec555efae0fa333d800181
5
5
  SHA512:
6
- metadata.gz: '05984d92c1dfa3426a838f491704e2f3106a6001742ddd55405bf9b9dc2264ce37eedfed31fa9b340acfb09e1a4e6a2f55ad0b74d655b9b55f4af5cc5a086b7e'
7
- data.tar.gz: 4f690af9fb698c18087eb445524a370bf3189735b95b67ecdb68fd0a776eddfa77289e0c3172c5017dac825fa1d444dbd26a8234f6c4d35c4c55041060a8bfc1
6
+ metadata.gz: 2548ce477dda76555c83e33a8e11f49f509e8d3f60fad6f440726ee1194d28ca7cc3c8559710e270a7dcc7f06645330d96b21d7d25f9fd7f23ba6704b4460917
7
+ data.tar.gz: eb6e65ca0173736fd59d387ef9205fd7747f50e988463047b9c1f140d715eee87e057fa7a735cc3769b60101bf0f2265215d08632586c88ae1edf439aec06231
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2020-2022 AppFolio, Inc
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/ae_check_migrations_load_silently/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'ae_check_migrations_load_silently'
7
+ spec.version = AeCheckMigrationsLoadSilently::VERSION
8
+ spec.platform = Gem::Platform::RUBY
9
+ spec.author = 'AppFolio'
10
+ spec.email = 'opensource@appfolio.com'
11
+ spec.description = 'Check migrations do not affect database on load.'
12
+ spec.summary = spec.description
13
+ spec.homepage = 'https://github.com/appfolio/ae_check_migrations_load_silently'
14
+ spec.license = 'MIT'
15
+ spec.files = Dir['**/*'].select { |f| f[%r{^(lib/|LICENSE.txt|.*gemspec)}] }
16
+ spec.require_paths = ['lib']
17
+ spec.required_ruby_version = Gem::Requirement.new('>= 2.6.3')
18
+
19
+ spec.metadata['allowed_push_host'] = 'https://rubygems.org'
20
+
21
+ spec.add_dependency('activerecord', ['>= 6', '< 7.1'])
22
+ spec.add_dependency('minitest', ['>= 5.8', '< 6'])
23
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module AeCheckMigrationsLoadSilently
4
+ VERSION = '1.0.0'
5
+ end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'active_record'
2
4
  require 'minitest'
3
5
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ae_check_migrations_load_silently
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
- - Appfolio
8
- autorequire:
7
+ - AppFolio
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-08-21 00:00:00.000000000 Z
11
+ date: 2022-02-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -16,25 +16,56 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0'
19
+ version: '6'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '7.1'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '6'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '7.1'
33
+ - !ruby/object:Gem::Dependency
34
+ name: minitest
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '5.8'
40
+ - - "<"
41
+ - !ruby/object:Gem::Version
42
+ version: '6'
20
43
  type: :runtime
21
44
  prerelease: false
22
45
  version_requirements: !ruby/object:Gem::Requirement
23
46
  requirements:
24
47
  - - ">="
25
48
  - !ruby/object:Gem::Version
26
- version: '0'
27
- description: Check migrations do not affect database on load
28
- email:
49
+ version: '5.8'
50
+ - - "<"
51
+ - !ruby/object:Gem::Version
52
+ version: '6'
53
+ description: Check migrations do not affect database on load.
54
+ email: opensource@appfolio.com
29
55
  executables: []
30
56
  extensions: []
31
57
  extra_rdoc_files: []
32
58
  files:
59
+ - LICENSE.txt
60
+ - ae_check_migrations_load_silently.gemspec
33
61
  - lib/ae_check_migrations_load_silently.rb
62
+ - lib/ae_check_migrations_load_silently/version.rb
34
63
  homepage: https://github.com/appfolio/ae_check_migrations_load_silently
35
- licenses: []
36
- metadata: {}
37
- post_install_message:
64
+ licenses:
65
+ - MIT
66
+ metadata:
67
+ allowed_push_host: https://rubygems.org
68
+ post_install_message:
38
69
  rdoc_options: []
39
70
  require_paths:
40
71
  - lib
@@ -42,15 +73,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
42
73
  requirements:
43
74
  - - ">="
44
75
  - !ruby/object:Gem::Version
45
- version: '0'
76
+ version: 2.6.3
46
77
  required_rubygems_version: !ruby/object:Gem::Requirement
47
78
  requirements:
48
79
  - - ">="
49
80
  - !ruby/object:Gem::Version
50
81
  version: '0'
51
82
  requirements: []
52
- rubygems_version: 3.0.8
53
- signing_key:
83
+ rubygems_version: 3.1.4
84
+ signing_key:
54
85
  specification_version: 4
55
- summary: Check migrations do not affect database on load
86
+ summary: Check migrations do not affect database on load.
56
87
  test_files: []