simplycop 1.16.1 → 1.16.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +1 -1
- data/.github/workflows/publish_gem.yml +2 -2
- data/.rubocop.yml +3 -0
- data/.ruby-version +1 -1
- data/lib/simplycop/version.rb +1 -1
- data/simplycop.gemspec +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a0e04cd031d6da9d39f2893f31c5a7cc54d79b996a3c2bb61bd582a8b539d867
|
4
|
+
data.tar.gz: b865527b41cf25c174b3c7a6fe15b0f022faebebe19a8f7d1dafb65e47ba7ad4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b0c18624f2d3abf7f03256207089bca57d87b875bb3b24d3055b23d80c11e42c29c6f55a94d88a2e8c1459477b50ffcb96c3cf3a6bda263c03e81556f283aaf
|
7
|
+
data.tar.gz: 8b8c8a3f8f1564cec3c15957e96bea39ca7f7d611c4b3578a155719d72b17b1119245f1388278a9bbd7d79a09f553ec9f3ca6791239cc57a9cd3da9ccc3ff222
|
data/.github/workflows/ci.yml
CHANGED
@@ -12,10 +12,10 @@ jobs:
|
|
12
12
|
runs-on: ubuntu-latest
|
13
13
|
steps:
|
14
14
|
- uses: actions/checkout@v4
|
15
|
-
- name: Set up Ruby 3.
|
15
|
+
- name: Set up Ruby 3.1
|
16
16
|
uses: actions/setup-ruby@v1
|
17
17
|
with:
|
18
|
-
version: 3.
|
18
|
+
version: 3.1.x
|
19
19
|
- name: Publish to RubyGems
|
20
20
|
run: |
|
21
21
|
mkdir -p $HOME/.gem
|
data/.rubocop.yml
CHANGED
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0
|
1
|
+
3.3.0
|
data/lib/simplycop/version.rb
CHANGED
data/simplycop.gemspec
CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.version = Simplycop::VERSION
|
10
10
|
spec.authors = ['Simply Business']
|
11
11
|
spec.email = ['tech@simplybusiness.co.uk']
|
12
|
-
spec.required_ruby_version = '>= 3.
|
12
|
+
spec.required_ruby_version = ['>= 3.1 ', '< 3.4']
|
13
13
|
spec.license = 'MIT'
|
14
14
|
spec.summary = 'Provides a single point of reference for common rubocop rules.'
|
15
15
|
spec.description = 'Require this gem in your application to use Simply Business common rubocop rules.'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simplycop
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.16.
|
4
|
+
version: 1.16.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Simply Business
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-03-
|
11
|
+
date: 2024-03-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -181,7 +181,10 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
181
181
|
requirements:
|
182
182
|
- - ">="
|
183
183
|
- !ruby/object:Gem::Version
|
184
|
-
version: '3.
|
184
|
+
version: '3.1'
|
185
|
+
- - "<"
|
186
|
+
- !ruby/object:Gem::Version
|
187
|
+
version: '3.4'
|
185
188
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
186
189
|
requirements:
|
187
190
|
- - ">="
|