activerecord-simple_index_name 1.1.2 → 1.1.3
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 +4 -4
- data/.github/dependabot.yml +11 -1
- data/.github/release.yml +31 -0
- data/.github/workflows/dependabot-manager.yml +28 -0
- data/.github/workflows/pages.yml +4 -45
- data/.github/workflows/release_gem.yml +4 -4
- data/.github/workflows/test.yml +43 -24
- data/CHANGELOG.md +10 -1
- data/README.md +1 -1
- data/gemfiles/rails_6_0.gemfile +3 -0
- data/gemfiles/rails_6_1.gemfile +3 -0
- data/lib/active_record/simple_index_name/configuration.rb +12 -6
- data/lib/active_record/simple_index_name/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e70808f3fb4d0cc8543fad5113dc68439e5ac283f9ecd1e05e850bd531ba3710
|
|
4
|
+
data.tar.gz: fd1b06d368ed19855fb344c5549adfda2359cc2eb752fca31505ea5bbafc7d91
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 986c9ea57b5e0cbc744fcfbde39e5b5f67ac9a4d571aec200cd26bf9354f5c88f3d173cb07cc1bbbafa869bc1774e45dcdc1c1cdecc05e7e0bc19f8aee774749
|
|
7
|
+
data.tar.gz: 28b1d146d1efea030ac6e511b73de62dbfca914c687c82ee64f496591bdce65de70b5ccbb7df5807d21c03c63f8e2df29b9fb5ac47767134616e7f9aa265c71c
|
data/.github/dependabot.yml
CHANGED
|
@@ -2,9 +2,19 @@
|
|
|
2
2
|
version: 2
|
|
3
3
|
|
|
4
4
|
updates:
|
|
5
|
+
###########################################################
|
|
6
|
+
# NOTE: following sections are auto generated. DO NOT EDIT!
|
|
7
|
+
###########################################################
|
|
5
8
|
- package-ecosystem: github-actions
|
|
6
9
|
directory: /
|
|
7
10
|
schedule:
|
|
8
|
-
interval:
|
|
11
|
+
interval: monthly
|
|
12
|
+
time: "05:00"
|
|
13
|
+
timezone: Asia/Tokyo
|
|
9
14
|
assignees:
|
|
10
15
|
- sue445
|
|
16
|
+
cooldown:
|
|
17
|
+
default-days: 7
|
|
18
|
+
exclude:
|
|
19
|
+
- ruby/setup-ruby
|
|
20
|
+
###########################################################
|
data/.github/release.yml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# ref. https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes#configuring-automatically-generated-release-notes
|
|
2
|
+
|
|
3
|
+
changelog:
|
|
4
|
+
exclude:
|
|
5
|
+
labels:
|
|
6
|
+
- chore
|
|
7
|
+
|
|
8
|
+
categories:
|
|
9
|
+
- title: ":bomb: Breaking Changes"
|
|
10
|
+
labels:
|
|
11
|
+
- breaking change
|
|
12
|
+
|
|
13
|
+
- title: ":lock: Security Fix"
|
|
14
|
+
labels:
|
|
15
|
+
- security
|
|
16
|
+
|
|
17
|
+
- title: ":rocket: Features"
|
|
18
|
+
labels:
|
|
19
|
+
- enhancement
|
|
20
|
+
|
|
21
|
+
- title: ":bug: Bug Fixes"
|
|
22
|
+
labels:
|
|
23
|
+
- bug
|
|
24
|
+
|
|
25
|
+
- title: ":dependabot: Dependency updates"
|
|
26
|
+
labels:
|
|
27
|
+
- dependencies
|
|
28
|
+
|
|
29
|
+
- title: ":pencil: Other Changes"
|
|
30
|
+
labels:
|
|
31
|
+
- "*"
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
name: dependabot-manager
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
types:
|
|
6
|
+
- opened
|
|
7
|
+
- synchronize # PR branch is rebased
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
dependabot-auto-merge:
|
|
11
|
+
uses: sue445/workflows/.github/workflows/dependabot-auto-merge.yml@main
|
|
12
|
+
with:
|
|
13
|
+
repo-name: sue445/activerecord-simple_index_name
|
|
14
|
+
secrets:
|
|
15
|
+
# TODO: Set secrets to Dependabot secrets
|
|
16
|
+
app-id: ${{ secrets.GH_APP_ID }}
|
|
17
|
+
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
|
|
18
|
+
slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
|
|
19
|
+
|
|
20
|
+
dependabot-security-alert:
|
|
21
|
+
uses: sue445/workflows/.github/workflows/dependabot-security-alert.yml@main
|
|
22
|
+
with:
|
|
23
|
+
repo-name: sue445/activerecord-simple_index_name
|
|
24
|
+
secrets:
|
|
25
|
+
# TODO: Set secrets to Dependabot secrets
|
|
26
|
+
app-id: ${{ secrets.GH_APP_ID }}
|
|
27
|
+
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
|
|
28
|
+
slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
|
data/.github/workflows/pages.yml
CHANGED
|
@@ -1,59 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
name: Deploy static content to Pages
|
|
1
|
+
name: Deploy yard to Pages
|
|
3
2
|
|
|
4
3
|
on:
|
|
5
|
-
# Runs on pushes targeting the default branch
|
|
6
4
|
push:
|
|
7
5
|
branches:
|
|
8
6
|
- master
|
|
9
|
-
|
|
10
|
-
# Allows you to run this workflow manually from the Actions tab
|
|
11
7
|
workflow_dispatch:
|
|
12
8
|
|
|
13
|
-
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
|
14
9
|
permissions:
|
|
15
10
|
contents: read
|
|
16
11
|
pages: write
|
|
17
12
|
id-token: write
|
|
18
13
|
|
|
19
|
-
# Allow one concurrent deployment
|
|
20
|
-
concurrency:
|
|
21
|
-
group: "pages"
|
|
22
|
-
cancel-in-progress: true
|
|
23
|
-
|
|
24
14
|
jobs:
|
|
25
|
-
# Single deploy job since we're just deploying
|
|
26
15
|
deploy:
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
runs-on: ubuntu-latest
|
|
31
|
-
steps:
|
|
32
|
-
- name: Checkout
|
|
33
|
-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
|
34
|
-
|
|
35
|
-
- uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # v1.268.0
|
|
36
|
-
with:
|
|
37
|
-
ruby-version: ruby
|
|
38
|
-
bundler-cache: true
|
|
39
|
-
|
|
40
|
-
- run: bundle exec yard
|
|
41
|
-
|
|
42
|
-
- name: Setup Pages
|
|
43
|
-
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
|
|
44
|
-
- name: Upload artifact
|
|
45
|
-
uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v4.0.0
|
|
46
|
-
with:
|
|
47
|
-
# Upload entire repository
|
|
48
|
-
path: './doc'
|
|
49
|
-
- name: Deploy to GitHub Pages
|
|
50
|
-
id: deployment
|
|
51
|
-
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5
|
|
52
|
-
|
|
53
|
-
- name: Slack Notification (not success)
|
|
54
|
-
uses: act10ns/slack@cfcc30955fe9377f4f55e1079e5419ee1014269f # v2
|
|
55
|
-
if: "! success()"
|
|
56
|
-
continue-on-error: true
|
|
57
|
-
with:
|
|
58
|
-
status: ${{ job.status }}
|
|
59
|
-
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
16
|
+
uses: sue445/workflows/.github/workflows/pages-yard.yml@main
|
|
17
|
+
secrets:
|
|
18
|
+
slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
|
|
@@ -18,20 +18,20 @@ jobs:
|
|
|
18
18
|
|
|
19
19
|
steps:
|
|
20
20
|
- name: Harden Runner
|
|
21
|
-
uses: step-security/harden-runner@
|
|
21
|
+
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
|
|
22
22
|
with:
|
|
23
23
|
egress-policy: audit
|
|
24
24
|
|
|
25
|
-
- uses: actions/checkout@
|
|
25
|
+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
26
26
|
|
|
27
27
|
- name: Set up Ruby
|
|
28
|
-
uses: ruby/setup-ruby@
|
|
28
|
+
uses: ruby/setup-ruby@09a7688d3b55cf0e976497ff046b70949eeaccfd # v1.288.0
|
|
29
29
|
with:
|
|
30
30
|
bundler-cache: true
|
|
31
31
|
ruby-version: ruby
|
|
32
32
|
|
|
33
33
|
- name: Publish to RubyGems
|
|
34
|
-
uses: rubygems/release-gem@
|
|
34
|
+
uses: rubygems/release-gem@1c162a739e8b4cb21a676e97b087e8268d8fc40b # v1.1.2
|
|
35
35
|
|
|
36
36
|
- name: Create GitHub release
|
|
37
37
|
run: |
|
data/.github/workflows/test.yml
CHANGED
|
@@ -31,6 +31,7 @@ jobs:
|
|
|
31
31
|
- "3.2"
|
|
32
32
|
- "3.3"
|
|
33
33
|
- "3.4"
|
|
34
|
+
- "4.0"
|
|
34
35
|
gemfile:
|
|
35
36
|
- rails_5_0
|
|
36
37
|
- rails_5_1
|
|
@@ -147,41 +148,32 @@ jobs:
|
|
|
147
148
|
gemfile: rails_5_1
|
|
148
149
|
- ruby: "3.4"
|
|
149
150
|
gemfile: rails_5_2
|
|
151
|
+
- ruby: "4.0"
|
|
152
|
+
gemfile: rails_5_0
|
|
153
|
+
- ruby: "4.0"
|
|
154
|
+
gemfile: rails_5_1
|
|
155
|
+
- ruby: "4.0"
|
|
156
|
+
gemfile: rails_5_2
|
|
150
157
|
|
|
151
158
|
env:
|
|
152
159
|
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
|
|
153
160
|
|
|
154
161
|
steps:
|
|
155
|
-
- uses: actions/checkout@
|
|
162
|
+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
156
163
|
|
|
157
164
|
- run: sudo apt-get update
|
|
158
165
|
- run: sudo apt-get install -y libsqlite3-dev
|
|
159
166
|
|
|
160
|
-
- uses: ruby/setup-ruby@
|
|
167
|
+
- uses: ruby/setup-ruby@09a7688d3b55cf0e976497ff046b70949eeaccfd # v1.288.0
|
|
161
168
|
with:
|
|
162
169
|
ruby-version: ${{ matrix.ruby }}
|
|
163
170
|
bundler-cache: true
|
|
164
171
|
cache-version: ${{ matrix.gemfile }}
|
|
165
172
|
|
|
166
|
-
- run: bundle update --jobs $(nproc) --retry 3
|
|
167
|
-
|
|
168
|
-
- name: Setup Code Climate Test Reporter
|
|
169
|
-
uses: aktions/codeclimate-test-reporter@7634aa9ac7883182f583f15ff7b6ff519939dd0a # v1.2.0
|
|
170
|
-
with:
|
|
171
|
-
codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
|
|
172
|
-
command: before-build
|
|
173
|
-
continue-on-error: true
|
|
173
|
+
- run: bundle update --all --jobs $(nproc) --retry 3
|
|
174
174
|
|
|
175
175
|
- run: bundle exec rspec
|
|
176
176
|
|
|
177
|
-
- name: Teardown Code Climate Test Reporter
|
|
178
|
-
uses: aktions/codeclimate-test-reporter@7634aa9ac7883182f583f15ff7b6ff519939dd0a # v1.2.0
|
|
179
|
-
with:
|
|
180
|
-
codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
|
|
181
|
-
command: after-build
|
|
182
|
-
if: always()
|
|
183
|
-
continue-on-error: true
|
|
184
|
-
|
|
185
177
|
- name: Slack Notification (not success)
|
|
186
178
|
uses: act10ns/slack@cfcc30955fe9377f4f55e1079e5419ee1014269f # v2
|
|
187
179
|
if: "! success()"
|
|
@@ -191,17 +183,44 @@ jobs:
|
|
|
191
183
|
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
192
184
|
matrix: ${{ toJson(matrix) }}
|
|
193
185
|
|
|
194
|
-
|
|
195
|
-
needs:
|
|
196
|
-
- test
|
|
197
|
-
|
|
186
|
+
yard:
|
|
198
187
|
runs-on: ubuntu-latest
|
|
199
188
|
|
|
200
189
|
steps:
|
|
201
|
-
-
|
|
190
|
+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
191
|
+
|
|
192
|
+
- uses: ruby/setup-ruby@09a7688d3b55cf0e976497ff046b70949eeaccfd # v1.288.0
|
|
193
|
+
with:
|
|
194
|
+
ruby-version: ruby
|
|
195
|
+
bundler-cache: true
|
|
196
|
+
|
|
197
|
+
- run: bundle update --all --jobs $(nproc) --retry 3
|
|
198
|
+
|
|
199
|
+
- name: yard generating test
|
|
200
|
+
run: |
|
|
201
|
+
set -xe
|
|
202
|
+
bundle exec yard
|
|
203
|
+
ls -ld doc/
|
|
204
|
+
|
|
205
|
+
- name: Slack Notification (not success)
|
|
202
206
|
uses: act10ns/slack@cfcc30955fe9377f4f55e1079e5419ee1014269f # v2
|
|
203
|
-
if:
|
|
207
|
+
if: "! success()"
|
|
204
208
|
continue-on-error: true
|
|
205
209
|
with:
|
|
206
210
|
status: ${{ job.status }}
|
|
207
211
|
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
212
|
+
|
|
213
|
+
all-pass:
|
|
214
|
+
if: always()
|
|
215
|
+
|
|
216
|
+
needs:
|
|
217
|
+
- test
|
|
218
|
+
- yard
|
|
219
|
+
|
|
220
|
+
runs-on: ubuntu-slim
|
|
221
|
+
|
|
222
|
+
steps:
|
|
223
|
+
- name: check dependent jobs
|
|
224
|
+
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
|
|
225
|
+
with:
|
|
226
|
+
jobs: ${{ toJSON(needs) }}
|
data/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,20 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
|
-
[full changelog](http://github.com/sue445/activerecord-simple_index_name/compare/v1.1.
|
|
4
|
+
[full changelog](http://github.com/sue445/activerecord-simple_index_name/compare/v1.1.3...master)
|
|
5
|
+
|
|
6
|
+
## [v1.1.3](https://github.com/sue445/activerecord-simple_index_name/releases/tag/v1.1.3)
|
|
7
|
+
[full changelog](http://github.com/sue445/activerecord-simple_index_name/compare/v1.1.2...v1.1.3)
|
|
8
|
+
|
|
9
|
+
* Fix deprecation warning since activerecord 8.1
|
|
10
|
+
* https://github.com/sue445/activerecord-simple_index_name/pull/137
|
|
5
11
|
|
|
6
12
|
## [v1.1.2](https://github.com/sue445/activerecord-simple_index_name/releases/tag/v1.1.2)
|
|
7
13
|
[full changelog](http://github.com/sue445/activerecord-simple_index_name/compare/v1.1.1...v1.1.2)
|
|
8
14
|
|
|
15
|
+
* Release gem from GitHub Actions
|
|
16
|
+
* https://github.com/sue445/activerecord-simple_index_name/pull/114
|
|
17
|
+
|
|
9
18
|
## v1.1.1
|
|
10
19
|
[full changelog](http://github.com/sue445/activerecord-simple_index_name/compare/v1.1.0...v1.1.1)
|
|
11
20
|
|
data/README.md
CHANGED
|
@@ -5,7 +5,7 @@ Shorten index name
|
|
|
5
5
|
[](https://badge.fury.io/rb/activerecord-simple_index_name)
|
|
6
6
|
[](https://github.com/sue445/activerecord-simple_index_name/actions/workflows/test.yml)
|
|
7
7
|
[](https://coveralls.io/github/sue445/activerecord-simple_index_name?branch=master)
|
|
8
|
-
[](https://qlty.sh/gh/sue445/projects/activerecord-simple_index_name)
|
|
9
9
|
|
|
10
10
|
## Requirements
|
|
11
11
|
* Ruby 2.3+
|
data/gemfiles/rails_6_0.gemfile
CHANGED
data/gemfiles/rails_6_1.gemfile
CHANGED
|
@@ -1,14 +1,20 @@
|
|
|
1
1
|
module ActiveRecord
|
|
2
2
|
module SimpleIndexName
|
|
3
|
-
require "active_support/configurable"
|
|
4
|
-
|
|
5
3
|
class Configuration
|
|
6
|
-
|
|
4
|
+
if ActiveSupport.gem_version < Gem::Version.create("8.1.0")
|
|
5
|
+
require "active_support/configurable"
|
|
6
|
+
|
|
7
|
+
include ActiveSupport::Configurable
|
|
8
|
+
|
|
9
|
+
config_accessor :auto_shorten
|
|
7
10
|
|
|
8
|
-
|
|
11
|
+
configure do |config|
|
|
12
|
+
config.auto_shorten = true
|
|
13
|
+
end
|
|
14
|
+
else
|
|
15
|
+
require "active_support/core_ext/class/attribute"
|
|
9
16
|
|
|
10
|
-
|
|
11
|
-
config.auto_shorten = true
|
|
17
|
+
class_attribute :auto_shorten, default: true
|
|
12
18
|
end
|
|
13
19
|
end
|
|
14
20
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: activerecord-simple_index_name
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sue445
|
|
@@ -172,6 +172,8 @@ extra_rdoc_files: []
|
|
|
172
172
|
files:
|
|
173
173
|
- ".coveralls.yml"
|
|
174
174
|
- ".github/dependabot.yml"
|
|
175
|
+
- ".github/release.yml"
|
|
176
|
+
- ".github/workflows/dependabot-manager.yml"
|
|
175
177
|
- ".github/workflows/pages.yml"
|
|
176
178
|
- ".github/workflows/release_gem.yml"
|
|
177
179
|
- ".github/workflows/test.yml"
|
|
@@ -231,7 +233,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
231
233
|
- !ruby/object:Gem::Version
|
|
232
234
|
version: '0'
|
|
233
235
|
requirements: []
|
|
234
|
-
rubygems_version:
|
|
236
|
+
rubygems_version: 4.0.3
|
|
235
237
|
specification_version: 4
|
|
236
238
|
summary: Shorten index name
|
|
237
239
|
test_files: []
|