ae_check_migrations_load_silently 1.1.0 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bb1d1d3a3c7a00df804703b6ce3596f1609a0922a18f24bc4d7c27b2312bb2b5
4
- data.tar.gz: 4b844b546b3dad841fbf6424102d2c62ca668dc834c3927379c707a1582a9da0
3
+ metadata.gz: '09a5ff07a4eed6e5928f1dfc68ae703852199a8cb8abda1f3164a1d2511eaee5'
4
+ data.tar.gz: df3189c6f92f4376af4b0d26ff521f645bc6dbb1d7c581809b251839a0b83465
5
5
  SHA512:
6
- metadata.gz: c1d84ccd20a675d02a443166909dfff41e120333bb2e87ca7f8ffe07eb5c76948a92c51a79cb295163e06565e46d08ff50b6adf61f474055567382b7ee9bf54b
7
- data.tar.gz: 786536611cd8d876411dcb3cdba09f02a18708ab282ace0fd7d3be5232fbdc401061a47122bfd05140a92e10e7a04bb295554170b9f2d364ef425209a2e94846
6
+ metadata.gz: 4382e6ded08efcae5580a12989f4350631c61cec52b0d21266a90bdd22bfeedf7bf21b832ebfb89933c693ee2289018bbae9254ae66501284016a2373df026fd
7
+ data.tar.gz: 942ff0aa2a7c6ef5816b5bbdfe669e28f3ecf7e2dc1d50e03d5afe0e6f593a2b50573917adedd52a0b176dd92b1a43c965ccbf99c531f5de3d07afba9d08bb4f
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2020-2023 AppFolio, Inc
1
+ Copyright (c) 2020-2024 AppFolio, Inc
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
@@ -3,19 +3,19 @@
3
3
  require_relative 'lib/ae_check_migrations_load_silently/version'
4
4
 
5
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')
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']
18
17
 
18
+ spec.required_ruby_version = Gem::Requirement.new('< 3.4')
19
19
  spec.metadata['allowed_push_host'] = 'https://rubygems.org'
20
20
 
21
21
  spec.add_dependency('activerecord', ['>= 6.1', '< 7.2'])
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AeCheckMigrationsLoadSilently
4
- VERSION = '1.1.0'
4
+ VERSION = '1.2.0'
5
5
  end
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: 1.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - AppFolio
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-24 00:00:00.000000000 Z
11
+ date: 2024-02-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -71,16 +71,16 @@ require_paths:
71
71
  - lib
72
72
  required_ruby_version: !ruby/object:Gem::Requirement
73
73
  requirements:
74
- - - ">="
74
+ - - "<"
75
75
  - !ruby/object:Gem::Version
76
- version: 2.6.3
76
+ version: '3.4'
77
77
  required_rubygems_version: !ruby/object:Gem::Requirement
78
78
  requirements:
79
79
  - - ">="
80
80
  - !ruby/object:Gem::Version
81
81
  version: '0'
82
82
  requirements: []
83
- rubygems_version: 3.3.26
83
+ rubygems_version: 3.5.3
84
84
  signing_key:
85
85
  specification_version: 4
86
86
  summary: Check migrations do not affect database on load.