Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit 70dc14a

Browse files
authored
Rename to errbit-ng-plugin (#2)
* Update LICENSE * Update LICENSE * Update gemspec authors and email * Update LICENSE * LICENSE -> LICENSE.txt * Update Contributing and add License * Update example * Remove coveralls gem * Remove .coveralls.yml config * Update LICENSE.txt * Update Rakefile * Rename: errbit_plugin -> errbit-ng-plugin * Add standard config * frozen_string_literal -> true * Add rspec config * Cleanup * frozen_string_literal -> true * Rename lib/errbit_plugin/issue_trackers/none.rb -> lib/errbit_plugin/none_issue_tracker.rb * Update rspec configuration * Cleanup * Cleanup * Add .rspec_status to .gitignore * Update .gitignore * Add simplecov gem * Fix * Enable simpecov * Add simplecov-cobertura * Configure CI * Refactoring * Add codecov coverage * Cleanup * Cleanup * Cleanup * Fix * Cleanup * Ruby 3.4
1 parent 82e6dbf commit 70dc14a

25 files changed

+204
-165
lines changed

.coveralls.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

.github/workflows/jruby.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on:
1111
- cron: "0 21 * * 6"
1212

1313
env:
14+
CI: "yes"
1415
JRUBY_OPTS: "--debug"
1516

1617
jobs:
@@ -39,3 +40,5 @@ jobs:
3940
bundler: latest
4041
bundler-cache: true
4142
- run: bundle exec rspec
43+
- name: Upload coverage to Codecov
44+
uses: codecov/codecov-action@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3 # v5.3.1

.github/workflows/rspec.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,17 @@ on:
1010
schedule:
1111
- cron: "0 21 * * 6"
1212

13+
env:
14+
CI: "yes"
15+
1316
jobs:
1417
rspec:
1518
runs-on: ubuntu-24.04
1619
timeout-minutes: 10
1720
strategy:
1821
fail-fast: false
1922
matrix:
20-
ruby: ["3.1", "3.2", "3.3"]
23+
ruby: ["3.1", "3.2", "3.3", "3.4"]
2124

2225
steps:
2326
- name: Harden Runner
@@ -36,3 +39,5 @@ jobs:
3639
bundler: latest
3740
bundler-cache: true
3841
- run: bundle exec rspec
42+
- name: Upload coverage to Codecov
43+
uses: codecov/codecov-action@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3 # v5.3.1

.gitignore

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
1-
*.gem
2-
*.rbc
3-
.bundle
4-
.config
5-
.yardoc
6-
InstalledFiles
7-
_yardoc
8-
coverage
9-
doc/
10-
lib/bundler/man
11-
pkg
12-
rdoc
13-
spec/reports
14-
test/tmp
15-
test/version_tmp
16-
tmp
1+
/.bundle/
2+
/.yardoc
3+
/_yardoc/
4+
/coverage/
5+
/doc/
6+
/pkg/
7+
/spec/reports/
8+
/tmp/
9+
10+
# rspec failure tracking
11+
.rspec_status
12+
1713
.idea/

.rspec

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
--format documentation
2+
--color
3+
--require spec_helper

.standard.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ruby_version: 3.1

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Changelog
2+
3+
## main
4+
5+
* Rename `errbit_plugin` to `errbit-ng-plugin`

Gemfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1+
# frozen_string_literal: true
2+
13
source "https://rubygems.org"
24

3-
# Specify your gem's dependencies in errbit_plugin.gemspec
5+
# Specify your gem's dependencies in errbit-ng-plugin.gemspec
46
gemspec
57

8+
gem "rake"
69
gem "rspec"
7-
gem "coveralls", require: false
810
gem "standard"
11+
gem "simplecov"
12+
gem "simplecov-cobertura", require: false

Gemfile.lock

Lines changed: 13 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
PATH
22
remote: .
33
specs:
4-
errbit_plugin (0.6.0)
4+
errbit-ng-plugin (0.1.0)
55

66
GEM
77
remote: https://rubygems.org/
88
specs:
99
ast (2.4.2)
10-
bigdecimal (3.1.9)
11-
coveralls (0.8.23)
12-
json (>= 1.8, < 3)
13-
simplecov (~> 0.16.1)
14-
term-ansicolor (~> 1.3)
15-
thor (>= 0.19.4, < 2.0)
16-
tins (~> 1.6)
1710
diff-lcs (1.5.1)
1811
docile (1.4.1)
1912
json (2.9.1)
@@ -27,6 +20,7 @@ GEM
2720
rainbow (3.1.1)
2821
rake (13.2.1)
2922
regexp_parser (2.10.0)
23+
rexml (3.4.0)
3024
rspec (3.13.0)
3125
rspec-core (~> 3.13.0)
3226
rspec-expectations (~> 3.13.0)
@@ -56,11 +50,15 @@ GEM
5650
rubocop (>= 1.48.1, < 2.0)
5751
rubocop-ast (>= 1.31.1, < 2.0)
5852
ruby-progressbar (1.13.0)
59-
simplecov (0.16.1)
53+
simplecov (0.22.0)
6054
docile (~> 1.1)
61-
json (>= 1.8, < 3)
62-
simplecov-html (~> 0.10.0)
63-
simplecov-html (0.10.2)
55+
simplecov-html (~> 0.11)
56+
simplecov_json_formatter (~> 0.1)
57+
simplecov-cobertura (2.1.0)
58+
rexml
59+
simplecov (~> 0.19)
60+
simplecov-html (0.13.1)
61+
simplecov_json_formatter (0.1.4)
6462
standard (1.44.0)
6563
language_server-protocol (~> 3.17.0.2)
6664
lint_roller (~> 1.0)
@@ -73,13 +71,6 @@ GEM
7371
standard-performance (1.6.0)
7472
lint_roller (~> 1.1)
7573
rubocop-performance (~> 1.23.0)
76-
sync (0.5.0)
77-
term-ansicolor (1.11.2)
78-
tins (~> 1.0)
79-
thor (1.3.2)
80-
tins (1.38.0)
81-
bigdecimal
82-
sync
8374
unicode-display_width (3.1.4)
8475
unicode-emoji (~> 4.0, >= 4.0.4)
8576
unicode-emoji (4.0.4)
@@ -98,11 +89,11 @@ PLATFORMS
9889
x86_64-linux-musl
9990

10091
DEPENDENCIES
101-
bundler
102-
coveralls
103-
errbit_plugin!
92+
errbit-ng-plugin!
10493
rake
10594
rspec
95+
simplecov
96+
simplecov-cobertura
10697
standard
10798

10899
BUNDLED WITH

LICENSE

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)