standalone_migrations 6.0.0 → 6.1.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: da230149d03a3c1a2c9d615df88599e690f4c916c67118ddfe5ea8a29aaa3bd3
4
- data.tar.gz: 4a064b52613d1298de969a468b2d56673d63e62bb3dadf8ef66c458663f35e47
3
+ metadata.gz: b8e8591f80bdab9e910865a8c59db8310ae4113a5e2d0609f87970c0a8299ffe
4
+ data.tar.gz: d7e46d10c47fc90262b2d199a9c266c7956638ff07fcf5a65dd7014f7aafde5f
5
5
  SHA512:
6
- metadata.gz: 6afd779861221a5e6aadbfce173998a420eaa4f98a4ea8a4245f6551e27c4365b936c16df0ce4d2ca9845c5c649582226388fdf882f5549efac25eda25208cb6
7
- data.tar.gz: 416811724fc812df39bdbf3a250b83548f08480020ab7f2a0cb3c58fb4991d325a9ba75e1d8ddf2e384388b1db26997393eac721829784c51e79d30288b82be9
6
+ metadata.gz: 666fcce50aaeef0bc6a9cc392b099a8b79226f3efcf5cd67fbaf38f0773280800e5cb1a312eaaedec4ef411df8606a8b73ac1f4e7b9edf5c7d2e02141168c166
7
+ data.tar.gz: b1bf542f8bb7c50ce32db5792afcca79e76cc20d4dbab2dc1e585dbe7b06f61faf2a4a82af62a09ab566e5bdc135113ab2b4c79e183d38003094fc56483d36c2
data/.travis.yml CHANGED
@@ -2,14 +2,24 @@ language: ruby
2
2
  rvm:
3
3
  - 2.5.7
4
4
  - 2.6.5
5
+ - 2.7.3
5
6
  env:
6
7
  - AR="~> 4.2.0" SQL="~>1.3.6" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
7
8
  - AR="~> 5.0.0" SQL="~>1.3.6" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
8
9
  - AR=">= 5.1.0.rc2,< 5.2" SQL="~>1.3.6" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
9
10
  - AR=">= 5.2.0.rc2,< 5.3,!= 5.2.3,!=5.2.3.rc1" SQL="~>1.3.6" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
10
11
  - AR="~> 6.0.0" SQL="~>1.4" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
12
+ - AR="~> 6.1.0" SQL="~>1.4" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
11
13
  jobs:
12
14
  exclude:
13
15
  - rvm: 2.6.5
14
16
  env: AR="~> 4.2.0" SQL="~>1.3.6" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
17
+ - rvm: 2.7.3
18
+ env: AR="~> 4.2.0" SQL="~>1.3.6" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
19
+ - rvm: 2.7.3
20
+ env: AR="~> 5.0.0" SQL="~>1.3.6" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
21
+ - rvm: 2.7.3
22
+ env: AR=">= 5.1.0.rc2,< 5.2" SQL="~>1.3.6" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
23
+ - rvm: 2.7.3
24
+ env: AR=">= 5.2.0.rc2,< 5.3,!= 5.2.3,!=5.2.3.rc1" SQL="~>1.3.6" NOKOGIRI_USE_SYSTEM_LIBRARIES=1
15
25
  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.1.0", "!= 5.2.3", "!=5.2.3.rc1"]
5
- gem 'railties', ENV['AR'] ? ENV['AR'].split(",") : [">= 4.2.7", "< 6.1.0", "!= 5.2.3", "!=5.2.3.rc1"]
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"]
6
6
 
7
7
  group :dev do
8
8
  gem 'sqlite3', ENV['SQL'] ? ENV['SQL'].split(",") : ['~> 1.4']
data/README.markdown CHANGED
@@ -4,6 +4,8 @@ Rails migrations in non-Rails (and non Ruby) projects.
4
4
 
5
5
  WHAT'S NEW
6
6
  ==========
7
+ In the 6.x release we've added support for Rails 6 migrations thanks to [Marco Adkins](https://github.com/marcoadkins).
8
+
7
9
  In the 5.x release we have moved to using Rails 5 migrations instead of maintaining our own migration related code. Just about anything you can do with Rails 5 migrations you can now do with [Standalone Migrations](https://github.com/thuss/standalone-migrations) too!
8
10
 
9
11
  CONTRIBUTE
@@ -267,3 +269,4 @@ Contributors
267
269
  - [Benjamin Dobell](https://github.com/Benjamin-Dobell)
268
270
  - [Hassan Mahmoud](https://github.com/HassanTC)
269
271
  - [Marco Adkins](https://github.com/marcoadkins)
272
+ - [Mithun James](https://github.com/drtechie)
data/VERSION CHANGED
@@ -1 +1 @@
1
- 6.0.0
1
+ 6.1.0
@@ -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.0.0 ruby lib
5
+ # stub: standalone_migrations 6.1.0 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "standalone_migrations".freeze
9
- s.version = "6.0.0"
9
+ s.version = "6.1.0"
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 = "2020-06-11"
14
+ s.date = "2021-11-12"
15
15
  s.email = "thuss@gabrito.com".freeze
16
16
  s.extra_rdoc_files = [
17
17
  "LICENSE",
@@ -51,7 +51,7 @@ Gem::Specification.new do |s|
51
51
  ]
52
52
  s.homepage = "http://github.com/thuss/standalone-migrations".freeze
53
53
  s.licenses = ["MIT".freeze]
54
- s.rubygems_version = "3.1.2".freeze
54
+ s.rubygems_version = "3.1.4".freeze
55
55
  s.summary = "A thin wrapper to use Rails Migrations in non Rails projects".freeze
56
56
 
57
57
  if s.respond_to? :specification_version then
@@ -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.1.0", "!= 5.2.3", "!= 5.2.3.rc1"])
64
- s.add_runtime_dependency(%q<railties>.freeze, [">= 4.2.7", "< 6.1.0", "!= 5.2.3", "!= 5.2.3.rc1"])
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"])
65
65
  else
66
66
  s.add_dependency(%q<rake>.freeze, [">= 10.0"])
67
- s.add_dependency(%q<activerecord>.freeze, [">= 4.2.7", "< 6.1.0", "!= 5.2.3", "!= 5.2.3.rc1"])
68
- s.add_dependency(%q<railties>.freeze, [">= 4.2.7", "< 6.1.0", "!= 5.2.3", "!= 5.2.3.rc1"])
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"])
69
69
  end
70
70
  end
71
71
 
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: standalone_migrations
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.0
4
+ version: 6.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Todd Huss
8
8
  - Michael Grosser
9
- autorequire:
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-06-11 00:00:00.000000000 Z
12
+ date: 2021-11-12 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.1.0
37
+ version: 6.2.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.1.0
53
+ version: 6.2.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.1.0
69
+ version: 6.2.0
70
70
  - - "!="
71
71
  - !ruby/object:Gem::Version
72
72
  version: 5.2.3
@@ -82,14 +82,14 @@ dependencies:
82
82
  version: 4.2.7
83
83
  - - "<"
84
84
  - !ruby/object:Gem::Version
85
- version: 6.1.0
85
+ version: 6.2.0
86
86
  - - "!="
87
87
  - !ruby/object:Gem::Version
88
88
  version: 5.2.3
89
89
  - - "!="
90
90
  - !ruby/object:Gem::Version
91
91
  version: 5.2.3.rc1
92
- description:
92
+ description:
93
93
  email: thuss@gabrito.com
94
94
  executables: []
95
95
  extensions: []
@@ -131,7 +131,7 @@ homepage: http://github.com/thuss/standalone-migrations
131
131
  licenses:
132
132
  - MIT
133
133
  metadata: {}
134
- post_install_message:
134
+ post_install_message:
135
135
  rdoc_options: []
136
136
  require_paths:
137
137
  - lib
@@ -146,8 +146,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
146
146
  - !ruby/object:Gem::Version
147
147
  version: '0'
148
148
  requirements: []
149
- rubygems_version: 3.1.2
150
- signing_key:
149
+ rubygems_version: 3.1.4
150
+ signing_key:
151
151
  specification_version: 4
152
152
  summary: A thin wrapper to use Rails Migrations in non Rails projects
153
153
  test_files: []