rubocop-isucon 1.0.2 → 1.0.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/workflows/pages.yml +2 -2
- data/.github/workflows/test.yml +1 -0
- data/CHANGELOG.md +7 -1
- data/lib/rubocop/isucon/memorize_methods.rb +1 -1
- data/lib/rubocop/isucon/version.rb +1 -1
- data/rubocop-isucon.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 533ca97baa3dc182596f94ba288def42fc447f2169b1131c9716abd635f76d99
|
|
4
|
+
data.tar.gz: 0612e7a684d92119fb9c083aa59b54fc89a56838d8f65a3f079b2acdc29a82f2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 57207ec68660cb6e972322ec083ba862bcebea52b25bbf3282a3b7aa9117a8affa350bde55b6e6f56cf619d22778254b0e273f664aaa4b6a573c664b8a42a9ec
|
|
7
|
+
data.tar.gz: c4b1844cb35d839f87bb86a7f8d62d9dfcff5f34a4c47d74f9456c709dda458e0d51fc23794d591db353149e6da8b19cb8f9c85313585e994dd55a7fd28bbcd2
|
data/.github/workflows/pages.yml
CHANGED
|
@@ -48,13 +48,13 @@ jobs:
|
|
|
48
48
|
- name: Setup Pages
|
|
49
49
|
uses: actions/configure-pages@v4
|
|
50
50
|
- name: Upload artifact
|
|
51
|
-
uses: actions/upload-pages-artifact@
|
|
51
|
+
uses: actions/upload-pages-artifact@v3
|
|
52
52
|
with:
|
|
53
53
|
# Upload entire repository
|
|
54
54
|
path: './doc'
|
|
55
55
|
- name: Deploy to GitHub Pages
|
|
56
56
|
id: deployment
|
|
57
|
-
uses: actions/deploy-pages@
|
|
57
|
+
uses: actions/deploy-pages@v4
|
|
58
58
|
|
|
59
59
|
- name: Slack Notification (not success)
|
|
60
60
|
uses: lazy-actions/slatify@master
|
data/.github/workflows/test.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
|
-
[full changelog](http://github.com/sue445/rubocop-isucon/compare/v1.0.
|
|
2
|
+
[full changelog](http://github.com/sue445/rubocop-isucon/compare/v1.0.3...main)
|
|
3
|
+
|
|
4
|
+
## [1.0.3] - 2023-12-28
|
|
5
|
+
[full changelog](http://github.com/sue445/rubocop-isucon/compare/v1.0.2...v1.0.3)
|
|
6
|
+
|
|
7
|
+
* Requires rubocop-performance 1.20.1+
|
|
8
|
+
* https://github.com/sue445/rubocop-isucon/pull/248
|
|
3
9
|
|
|
4
10
|
## [1.0.2] - 2023-12-22
|
|
5
11
|
[full changelog](http://github.com/sue445/rubocop-isucon/compare/v1.0.1...v1.0.2)
|
data/rubocop-isucon.gemspec
CHANGED
|
@@ -38,7 +38,7 @@ Gem::Specification.new do |spec|
|
|
|
38
38
|
spec.add_runtime_dependency "activerecord", ">= 6.1.0"
|
|
39
39
|
spec.add_runtime_dependency "gda", "!= 1.1.2"
|
|
40
40
|
spec.add_runtime_dependency "rubocop", ">= 1.49.0"
|
|
41
|
-
spec.add_runtime_dependency "rubocop-performance", ">= 1.20.
|
|
41
|
+
spec.add_runtime_dependency "rubocop-performance", ">= 1.20.1"
|
|
42
42
|
|
|
43
43
|
spec.add_development_dependency "benchmark-ips"
|
|
44
44
|
spec.add_development_dependency "pry-byebug"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubocop-isucon
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sue445
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-12-
|
|
11
|
+
date: 2023-12-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activerecord
|
|
@@ -58,14 +58,14 @@ dependencies:
|
|
|
58
58
|
requirements:
|
|
59
59
|
- - ">="
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
|
-
version: 1.20.
|
|
61
|
+
version: 1.20.1
|
|
62
62
|
type: :runtime
|
|
63
63
|
prerelease: false
|
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
65
|
requirements:
|
|
66
66
|
- - ">="
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
|
-
version: 1.20.
|
|
68
|
+
version: 1.20.1
|
|
69
69
|
- !ruby/object:Gem::Dependency
|
|
70
70
|
name: benchmark-ips
|
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|