slonik_migration 1.2.0 → 1.2.1

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: 3caa52c10f2bf3e46027dbb8c0ff309e8dad46d9f5efc45694d31af21c2ba9f7
4
- data.tar.gz: 5f430959a86ff8b3bcb71e911eba4115bb8e4f2acb69c03554a19e66cc9b19d6
3
+ metadata.gz: 6e91f59938392524c23e33e477734c3faa88b512900ebab204d2f5c49c19f839
4
+ data.tar.gz: b87cb6f4e6f518b974f43393ed28bf4c97a5abd14c835e39ae211e202865387d
5
5
  SHA512:
6
- metadata.gz: a06fdbe3f87891a5c456ad5da721a064044db89ab66059dcb1a0f4ce3c5a84601f785a3f37de2d8ac9a15e118b5855e8b1e71f550774c54f714497e7eb8f7674
7
- data.tar.gz: 8a9ff1a400a121b4759251733892dd49bcecb21e1bcf0e47b4718c039743f6102879f51cb44c790c88038b99d6739440b1a4786d0595b4a10e6ccc92032451d7
6
+ metadata.gz: 80d8c5a880b0b5f8bd7184a785affd795e9f6c0f255aa22ef305eaa855e3119dfebbcc0f9f41c12912784f504d4fcb2f142c1c9c9b6e1749ba8c1611b65a2653
7
+ data.tar.gz: 8c88b74567361e765339afe6554512d8f726f1ab555ea262c97c0c77e3daf4f23fa9f37ef2dd3adc6098dc40e624270dd14ad46bd65b4e2017b7b95b2a1014eb
@@ -4,10 +4,10 @@ on: [push, pull_request]
4
4
 
5
5
  jobs:
6
6
  test:
7
- runs-on: ubuntu-20.04
7
+ runs-on: ubuntu-22.04
8
8
  services:
9
9
  postgres:
10
- image: postgres:9.5
10
+ image: postgres:15
11
11
  env:
12
12
  POSTGRES_USER: postgres
13
13
  POSTGRES_PASSWORD: postgres
@@ -17,8 +17,8 @@ jobs:
17
17
  strategy:
18
18
  fail-fast: false
19
19
  matrix:
20
- ruby: [2.4, 2.5, 2.6, 2.7, '3.0', 3.1]
21
- gemfile: ['rails50', 'rails51', 'rails52', 'rails60', 'rails61', 'rails70']
20
+ ruby: [2.4, 2.5, 2.6, 2.7, '3.0', 3.1, 3.2, 3.3]
21
+ gemfile: ['rails50', 'rails51', 'rails52', 'rails60', 'rails61', 'rails70', 'rails71']
22
22
  exclude:
23
23
  - ruby: 2.4
24
24
  gemfile: rails60
@@ -26,10 +26,16 @@ jobs:
26
26
  gemfile: rails61
27
27
  - ruby: 2.4
28
28
  gemfile: rails70
29
+ - ruby: 2.4
30
+ gemfile: rails71
29
31
  - ruby: 2.5
30
32
  gemfile: rails70
33
+ - ruby: 2.5
34
+ gemfile: rails71
31
35
  - ruby: 2.6
32
36
  gemfile: rails70
37
+ - ruby: 2.6
38
+ gemfile: rails71
33
39
  - ruby: 3.0
34
40
  gemfile: rails50
35
41
  - ruby: 3.0
@@ -42,6 +48,18 @@ jobs:
42
48
  gemfile: rails51
43
49
  - ruby: 3.1
44
50
  gemfile: rails52
51
+ - ruby: 3.2
52
+ gemfile: rails50
53
+ - ruby: 3.2
54
+ gemfile: rails51
55
+ - ruby: 3.2
56
+ gemfile: rails52
57
+ - ruby: 3.3
58
+ gemfile: rails50
59
+ - ruby: 3.3
60
+ gemfile: rails51
61
+ - ruby: 3.3
62
+ gemfile: rails52
45
63
 
46
64
  name: ruby ${{ matrix.ruby }}, ${{ matrix.gemfile }}
47
65
 
@@ -51,7 +69,7 @@ jobs:
51
69
  BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
52
70
 
53
71
  steps:
54
- - uses: actions/checkout@v2
72
+ - uses: actions/checkout@v4
55
73
  - uses: ruby/setup-ruby@v1
56
74
  with:
57
75
  ruby-version: ${{ matrix.ruby }}
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 1.2.1
4
+
5
+ * Add `frozen_string_literal: true`.
6
+
3
7
  ## 1.2.0
4
8
 
5
9
  * Support ruby 3.1.
@@ -2,5 +2,6 @@ source 'https://rubygems.org'
2
2
 
3
3
  gem "rails", "~> 5.0.0"
4
4
  gem "pg", "~> 0.18"
5
+ gem "loofah", "~> 2.19.1"
5
6
 
6
7
  gemspec path: "../"
@@ -2,5 +2,6 @@ source 'https://rubygems.org'
2
2
 
3
3
  gem "rails", "~> 5.1.0"
4
4
  gem "pg", "~> 0.18"
5
+ gem "loofah", "~> 2.19.1"
5
6
 
6
7
  gemspec path: "../"
@@ -1,5 +1,6 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  gem "rails", "~> 5.2.0"
4
+ gem "loofah", "~> 2.19.1"
4
5
 
5
6
  gemspec path: "../"
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem "rails", "~> 7.1.0"
4
+
5
+ gemspec path: "../"
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'rails/generators'
2
4
 
3
5
  module SlonikMigration
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'yaml'
2
4
  require 'shellwords'
3
5
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'ostruct'
2
4
 
3
5
  module SlonikMigration
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require_relative 'command'
2
4
 
3
5
  module SlonikMigration
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module SlonikMigration
2
4
  class Railtie < Rails::Railtie
3
5
  rake_tasks do
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module SlonikMigration
2
- VERSION = '1.2.0'
4
+ VERSION = '1.2.1'
3
5
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'slonik_migration/version'
2
4
  require 'slonik_migration/railtie' if defined?(Rails)
3
5
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'slonik_migration/config'
2
4
  require 'slonik_migration/extension'
3
5
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slonik_migration
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yoshikazu Kaneta
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-01-08 00:00:00.000000000 Z
11
+ date: 2024-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -115,6 +115,7 @@ files:
115
115
  - gemfiles/rails60.gemfile
116
116
  - gemfiles/rails61.gemfile
117
117
  - gemfiles/rails70.gemfile
118
+ - gemfiles/rails71.gemfile
118
119
  - lib/generators/slonik_migration/config_generator.rb
119
120
  - lib/generators/slonik_migration/templates/slonik.yml
120
121
  - lib/slonik_migration.rb
@@ -128,7 +129,7 @@ files:
128
129
  homepage: https://github.com/kanety/slonik_migration
129
130
  licenses: []
130
131
  metadata: {}
131
- post_install_message:
132
+ post_install_message:
132
133
  rdoc_options: []
133
134
  require_paths:
134
135
  - lib
@@ -143,8 +144,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
143
144
  - !ruby/object:Gem::Version
144
145
  version: '0'
145
146
  requirements: []
146
- rubygems_version: 3.1.2
147
- signing_key:
147
+ rubygems_version: 3.3.3
148
+ signing_key:
148
149
  specification_version: 4
149
150
  summary: A rails migration gem for slony
150
151
  test_files: []