errbit_github_plugin 0.4.0 → 0.5.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 297a2628ce82518179d2e1c49e6e3fa74d5196e0477989441ef642e59a9d53fc
4
- data.tar.gz: e77faf9c3f5de3af16b4a05d9e684c5fe0ec6697f3135aae2a8fefd97647075b
3
+ metadata.gz: 0c13c852fd44efa8b849a98b63e77ad0b3901b0a49475dfc33dd625ad64f86dc
4
+ data.tar.gz: 8c2561530b4e8d20c6950a9ccb1619a02c39785d75dbc4992babe4a9cc65b782
5
5
  SHA512:
6
- metadata.gz: 8f47ea7b0efa36f9224db491ebee2cc1f147a6ae0ad66cc59fb45dc470b82a4ba97b308d6a060002a45dbdd72c262a41ac08cc22380e0055ff5cf9e71728ec83
7
- data.tar.gz: 58040aeb2ae35411303e871e279cb5dea26499d58cad30e070174edefbc707c27bf281c5c86960537173d133b08a8d9e1be2ed342935838260bce9e069821025
6
+ metadata.gz: bbe99ca05acc31a22cb923091c11a56f6152474286d7680b5e25df5b5e118da1e756ad33116600eeb9d6683949a16bf610fb118d1f6121a3bb1993d90d7f8b33
7
+ data.tar.gz: 67edcde4c42008cea711954490aca671188c23849f5252340a49a428cb197269c80d7ee441479747216b33dac2c0e9517fee3713d8981a0aac7e1bbec69457a5
data/.rubocop.yml CHANGED
@@ -1,13 +1,11 @@
1
- require:
2
- - rubocop-disable_syntax
3
-
4
1
  plugins:
5
2
  - rubocop-performance
6
3
  - rubocop-rake
7
4
  - rubocop-rspec
5
+ - rubocop-disable_syntax
8
6
 
9
7
  AllCops:
10
- TargetRubyVersion: 3.1
8
+ TargetRubyVersion: 4.0
11
9
  NewCops: enable
12
10
 
13
11
  # We use standard as a linter and formatter instead Rubocop.
@@ -346,6 +344,10 @@ RSpec/IndexedLet:
346
344
  RSpec/NamedSubject:
347
345
  Enabled: false
348
346
 
347
+ # We prefer `receive` over `have_received`
348
+ RSpec/MessageSpies:
349
+ Enabled: false
350
+
349
351
  # Naming rules:
350
352
 
351
353
  # Disable anonymous block forwarding.
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.1.7
1
+ 4.0.5
data/.standard.yml CHANGED
@@ -1 +1 @@
1
- ruby_version: 3.1
1
+ ruby_version: 4.0
data/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
  # Errbit GitHub Plugin
2
2
 
3
3
  [![RSpec](https://github.com/errbit/errbit_github_plugin/actions/workflows/rspec.yml/badge.svg)](https://github.com/errbit/errbit_github_plugin/actions/workflows/rspec.yml)
4
- [![RSpec on JRuby](https://github.com/errbit/errbit_github_plugin/actions/workflows/jruby.yml/badge.svg)](https://github.com/errbit/errbit_github_plugin/actions/workflows/jruby.yml)
5
4
  [![Ruby Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://github.com/standardrb/standard)
6
5
 
7
6
  This plugin provides GitHub issue tracker integration for Errbit, and it is the
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ErrbitGithubPlugin
4
- VERSION = "0.4.0"
4
+ VERSION = "0.5.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: errbit_github_plugin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Crosby
@@ -72,7 +72,6 @@ executables: []
72
72
  extensions: []
73
73
  extra_rdoc_files: []
74
74
  files:
75
- - ".envrc"
76
75
  - ".rspec"
77
76
  - ".rubocop.yml"
78
77
  - ".ruby-version"
@@ -102,14 +101,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
102
101
  requirements:
103
102
  - - ">="
104
103
  - !ruby/object:Gem::Version
105
- version: 3.1.0
104
+ version: 4.0.0
106
105
  required_rubygems_version: !ruby/object:Gem::Requirement
107
106
  requirements:
108
107
  - - ">="
109
108
  - !ruby/object:Gem::Version
110
109
  version: '0'
111
110
  requirements: []
112
- rubygems_version: 3.6.7
111
+ rubygems_version: 4.0.13
113
112
  specification_version: 4
114
113
  summary: GitHub integration for Errbit
115
114
  test_files: []
data/.envrc DELETED
@@ -1 +0,0 @@
1
- export JRUBY_OPTS="--debug"