standalone_migrations 6.1.0 → 7.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
  SHA256:
3
- metadata.gz: b8e8591f80bdab9e910865a8c59db8310ae4113a5e2d0609f87970c0a8299ffe
4
- data.tar.gz: d7e46d10c47fc90262b2d199a9c266c7956638ff07fcf5a65dd7014f7aafde5f
3
+ metadata.gz: 66f87cd3256a662758f0fd259e5f70041cb7d66bd9c291bf40ba6b48786fa437
4
+ data.tar.gz: 54ffbe0be9e3122eaa6ba568448ce62f80bff8f0005308417b47e67e45aa3d71
5
5
  SHA512:
6
- metadata.gz: 666fcce50aaeef0bc6a9cc392b099a8b79226f3efcf5cd67fbaf38f0773280800e5cb1a312eaaedec4ef411df8606a8b73ac1f4e7b9edf5c7d2e02141168c166
7
- data.tar.gz: b1bf542f8bb7c50ce32db5792afcca79e76cc20d4dbab2dc1e585dbe7b06f61faf2a4a82af62a09ab566e5bdc135113ab2b4c79e183d38003094fc56483d36c2
6
+ metadata.gz: cdfe6fcfdd99b9586126daa36c9772479f7872bab6755cf6daeeef0aa8cd3695154a37e9bd9d15ee49ed18317d7f02d7010206afe55e2cd88309d39ba2164f92
7
+ data.tar.gz: 87c736c8d019bb2b9d36b628f220902e4f77e20ef7cf866ae6bc6ba00e4453dcf09a5f4d520598e222266bda03d09845fdfeadf3db6fbf87d0a74b6bde960a13
data/.travis.yml CHANGED
@@ -1,8 +1,9 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.5.7
4
- - 2.6.5
5
- - 2.7.3
3
+ - 2.5.9
4
+ - 2.6.9
5
+ - 2.7.5
6
+ - 3.0.3
6
7
  env:
7
8
  - AR="~> 4.2.0" SQL="~>1.3.6" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
8
9
  - AR="~> 5.0.0" SQL="~>1.3.6" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
@@ -10,16 +11,19 @@ env:
10
11
  - AR=">= 5.2.0.rc2,< 5.3,!= 5.2.3,!=5.2.3.rc1" SQL="~>1.3.6" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
11
12
  - AR="~> 6.0.0" SQL="~>1.4" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
12
13
  - AR="~> 6.1.0" SQL="~>1.4" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
14
+ - AR="~> 7.0.0" SQL="~>1.4" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
13
15
  jobs:
14
16
  exclude:
15
- - rvm: 2.6.5
17
+ - rvm: 2.6.9
16
18
  env: AR="~> 4.2.0" SQL="~>1.3.6" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
17
- - rvm: 2.7.3
19
+ - rvm: 2.7.5
18
20
  env: AR="~> 4.2.0" SQL="~>1.3.6" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
19
- - rvm: 2.7.3
21
+ - rvm: 3.0.3
22
+ env: AR="~> 4.2.0" SQL="~>1.3.6" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
23
+ - rvm: 2.7.5
20
24
  env: AR="~> 5.0.0" SQL="~>1.3.6" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
21
- - rvm: 2.7.3
25
+ - rvm: 2.7.5
22
26
  env: AR=">= 5.1.0.rc2,< 5.2" SQL="~>1.3.6" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
23
- - rvm: 2.7.3
27
+ - rvm: 2.7.5
24
28
  env: AR=">= 5.2.0.rc2,< 5.3,!= 5.2.3,!=5.2.3.rc1" SQL="~>1.3.6" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
25
29
  script: bundle exec rake specs:travis
data/Gemfile CHANGED
@@ -1,8 +1,8 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  gem 'rake', '>= 10.0'
4
- gem 'activerecord', ENV['AR'] ? ENV['AR'].split(",") : [">= 4.2.7", "< 6.2.0", "!= 5.2.3", "!=5.2.3.rc1"]
5
- gem 'railties', ENV['AR'] ? ENV['AR'].split(",") : [">= 4.2.7", "< 6.2.0", "!= 5.2.3", "!=5.2.3.rc1"]
4
+ gem 'activerecord', ENV['AR'] ? ENV['AR'].split(",") : [">= 4.2.7", "< 7.1.0", "!= 5.2.3", "!=5.2.3.rc1"]
5
+ gem 'railties', ENV['AR'] ? ENV['AR'].split(",") : [">= 4.2.7", "< 7.1.0", "!= 5.2.3", "!=5.2.3.rc1"]
6
6
 
7
7
  group :dev do
8
8
  gem 'sqlite3', ENV['SQL'] ? ENV['SQL'].split(",") : ['~> 1.4']
data/README.markdown CHANGED
@@ -270,3 +270,4 @@ Contributors
270
270
  - [Hassan Mahmoud](https://github.com/HassanTC)
271
271
  - [Marco Adkins](https://github.com/marcoadkins)
272
272
  - [Mithun James](https://github.com/drtechie)
273
+ - [Sarah Ridge](https://github.com/smridge)
data/VERSION CHANGED
@@ -1 +1 @@
1
- 6.1.0
1
+ 7.1.1
@@ -88,7 +88,7 @@ module StandaloneMigrations
88
88
  end
89
89
 
90
90
  def load_from_file(defaults)
91
- return nil unless File.exists? configuration_file
91
+ return nil unless File.exist? configuration_file
92
92
  config = YAML.load( ERB.new(IO.read(configuration_file)).result )
93
93
  {
94
94
  :config => config["config"] ? config["config"]["database"] : defaults[:config],
@@ -2,16 +2,16 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: standalone_migrations 6.1.0 ruby lib
5
+ # stub: standalone_migrations 7.1.1 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "standalone_migrations".freeze
9
- s.version = "6.1.0"
9
+ s.version = "7.1.1"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib".freeze]
13
13
  s.authors = ["Todd Huss".freeze, "Michael Grosser".freeze]
14
- s.date = "2021-11-12"
14
+ s.date = "2023-04-06"
15
15
  s.email = "thuss@gabrito.com".freeze
16
16
  s.extra_rdoc_files = [
17
17
  "LICENSE",
@@ -60,12 +60,12 @@ Gem::Specification.new do |s|
60
60
 
61
61
  if s.respond_to? :add_runtime_dependency then
62
62
  s.add_runtime_dependency(%q<rake>.freeze, [">= 10.0"])
63
- s.add_runtime_dependency(%q<activerecord>.freeze, [">= 4.2.7", "< 6.2.0", "!= 5.2.3", "!= 5.2.3.rc1"])
64
- s.add_runtime_dependency(%q<railties>.freeze, [">= 4.2.7", "< 6.2.0", "!= 5.2.3", "!= 5.2.3.rc1"])
63
+ s.add_runtime_dependency(%q<activerecord>.freeze, [">= 4.2.7", "< 7.1.0", "!= 5.2.3", "!= 5.2.3.rc1"])
64
+ s.add_runtime_dependency(%q<railties>.freeze, [">= 4.2.7", "< 7.1.0", "!= 5.2.3", "!= 5.2.3.rc1"])
65
65
  else
66
66
  s.add_dependency(%q<rake>.freeze, [">= 10.0"])
67
- s.add_dependency(%q<activerecord>.freeze, [">= 4.2.7", "< 6.2.0", "!= 5.2.3", "!= 5.2.3.rc1"])
68
- s.add_dependency(%q<railties>.freeze, [">= 4.2.7", "< 6.2.0", "!= 5.2.3", "!= 5.2.3.rc1"])
67
+ s.add_dependency(%q<activerecord>.freeze, [">= 4.2.7", "< 7.1.0", "!= 5.2.3", "!= 5.2.3.rc1"])
68
+ s.add_dependency(%q<railties>.freeze, [">= 4.2.7", "< 7.1.0", "!= 5.2.3", "!= 5.2.3.rc1"])
69
69
  end
70
70
  end
71
71
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: standalone_migrations
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.1.0
4
+ version: 7.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Todd Huss
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-11-12 00:00:00.000000000 Z
12
+ date: 2023-04-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -34,7 +34,7 @@ dependencies:
34
34
  version: 4.2.7
35
35
  - - "<"
36
36
  - !ruby/object:Gem::Version
37
- version: 6.2.0
37
+ version: 7.1.0
38
38
  - - "!="
39
39
  - !ruby/object:Gem::Version
40
40
  version: 5.2.3
@@ -50,7 +50,7 @@ dependencies:
50
50
  version: 4.2.7
51
51
  - - "<"
52
52
  - !ruby/object:Gem::Version
53
- version: 6.2.0
53
+ version: 7.1.0
54
54
  - - "!="
55
55
  - !ruby/object:Gem::Version
56
56
  version: 5.2.3
@@ -66,7 +66,7 @@ dependencies:
66
66
  version: 4.2.7
67
67
  - - "<"
68
68
  - !ruby/object:Gem::Version
69
- version: 6.2.0
69
+ version: 7.1.0
70
70
  - - "!="
71
71
  - !ruby/object:Gem::Version
72
72
  version: 5.2.3
@@ -82,7 +82,7 @@ dependencies:
82
82
  version: 4.2.7
83
83
  - - "<"
84
84
  - !ruby/object:Gem::Version
85
- version: 6.2.0
85
+ version: 7.1.0
86
86
  - - "!="
87
87
  - !ruby/object:Gem::Version
88
88
  version: 5.2.3