Skip to content

[pull] master from increments:master #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 24 commits into from
May 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
300fb76
Fix code metadata to allow containing colon
wataru86 Mar 14, 2022
bbadf80
Merge pull request #111 from increments/fix-code-metadata-to-allow-co…
wataru86 Mar 18, 2022
d363c65
Release v0.40.1
wataru86 Mar 18, 2022
3b097ea
Merge pull request #112 from increments/release-v0.40.1
wataru86 Mar 18, 2022
59a0325
Bump rubocop from 0.40.0 to 1.7.0
mziyut Mar 29, 2022
58c3c5f
Dropping Ruby 2.5 support
mziyut Mar 29, 2022
29e0e65
Update CHANGELOG.md
mziyut Mar 29, 2022
0f058c0
Merge pull request #113 from increments/eol-for-ruby-25
mziyut Apr 4, 2022
b9a6de9
Bump greenmat from 3.5.1.2 to 3.5.1.3
mziyut Apr 4, 2022
8413b13
Merge pull request #114 from increments/bump-greenmat-from-3512-to-3513
mziyut Apr 5, 2022
c707b82
Release v0.41.0
mziyut Apr 5, 2022
0e19747
Merge pull request #115 from increments/release-v0.41.0
mziyut Apr 7, 2022
e3e5cbc
fix some warnings for ruby3
maedana Apr 11, 2022
0a176f0
Test against all of Ruby 3.x
maedana Apr 11, 2022
9b02f21
Update qiita-markdown.gemspec
maedana Apr 15, 2022
43318fe
Updated rubocop to 1.27.0
maedana Apr 15, 2022
d09f1cd
Run `bundle exec rubocop --auto-gen-config --exclude-limit 99999`
maedana Apr 15, 2022
879ef4b
Hide `Style/HashSyntax: Omit the hash value.`
maedana Apr 15, 2022
4ae6ce9
Bump greenmat from 3.5.1.3 to 3.5.1.4
mziyut Apr 19, 2022
f706487
Fix some rubocop offences on Ruby2.6.x
maedana Apr 19, 2022
4b21fba
Merge pull request #117 from increments/bump-greenmat-from-3513-to-3514
mziyut Apr 20, 2022
b83d5a0
Merge pull request #116 from maedana/fix-for-ruby3
mziyut Apr 20, 2022
7a89d4f
Release v0.42.0
mziyut Apr 20, 2022
d5dff43
Merge pull request #119 from increments/release-v0.42.0
mziyut Apr 22, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,13 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ['ubuntu-18.04', 'macos-latest']
ruby: ['2.2', '2.3', '2.4', '2.5', '2.7']
os: ['ubuntu-18.04', 'ubuntu-latest', 'macos-latest']
ruby: ['2.6', '2.7', '3.0', '3.1']
experimental: [false]
include:
- os: 'ubuntu-18.04'
- os: 'ubuntu-latest'
ruby: 'head'
experimental: true
exclude:
- os: 'ubuntu-18.04'
ruby: '2.2' # Rugged uses the wrong openssl version on CI and segfaults (similar to https://github.com/libgit2/rugged/issues/718)
- os: 'ubuntu-18.04'
ruby: '2.3' # Rugged uses the wrong openssl version on CI and segfaults (similar to https://github.com/libgit2/rugged/issues/718)
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
steps:
Expand Down
12 changes: 9 additions & 3 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
inherit_from: .rubocop_todo.yml

AllCops:
NewCops: enable

Metrics/ClassLength:
Enabled: false

Expand All @@ -17,7 +20,7 @@ Style/GuardClause:
Enabled: false

Style/PredicateName:
NamePrefixBlacklist:
ForbiddenPrefixes:
- is_

Style/StringLiterals:
Expand All @@ -26,10 +29,13 @@ Style/StringLiterals:
Style/TrailingCommaInArguments:
EnforcedStyleForMultiline: comma

Style/TrailingCommaInLiteral:
Style/TrailingCommaInHashLiteral:
EnforcedStyleForMultiline: comma

Style/TrailingCommaInArrayLiteral:
EnforcedStyleForMultiline: comma

Style/UnneededPercentQ:
Style/RedundantPercentQ:
Enabled: false

Metrics/LineLength:
Expand Down
Loading