Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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: 5 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# This file is synced from hanakai-rb/repo-sync


name: CI

on:
Expand All @@ -20,10 +19,11 @@ jobs:
fail-fast: false
matrix:
ruby:
- "3.4"
- "3.3"
- "3.2"
- "3.3.0"
- "3.4"
- "3.3"
- "3.2"
- "3.3.0"
- jruby
include:
- ruby: "3.4"
coverage: "true"
Expand Down Expand Up @@ -69,4 +69,3 @@ jobs:
run: |
tag=$(echo $GITHUB_REF | cut -d / -f 3)
ossy gh w dry-rb/devtools release --payload "{\"tag\":\"$tag\",\"sha\":\"${{github.sha}}\",\"tag_creator\":\"$GITHUB_ACTOR\",\"repo\":\"$GITHUB_REPOSITORY\",\"repo_name\":\"${{github.event.repository.name}}\"}"

1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,5 @@ Gemfile.lock
doc
.vscode
pkg/
.byebug_history
spec/examples.txt
/.rubocop-http*
1 change: 0 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ group :test do
end

group :tools do
gem "pry-byebug"
gem "readline"
gem "redcarpet", platform: :mri
end
Expand Down
1 change: 0 additions & 1 deletion Gemfile.devtools
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,4 @@ end

group :tools do
gem "rubocop", "~> 1.72.0"
gem "byebug"
end
4 changes: 0 additions & 4 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,8 @@
require_relative "support/warnings"

Warning.ignore(%r{gems/i18n})
Warning.ignore(/byebug/)
Warning.process { |w| raise w }

begin
require "pry-byebug"
rescue LoadError; end
SPEC_ROOT = Pathname(__dir__)

Dir[SPEC_ROOT.join("shared/**/*.rb")].each(&method(:require))
Expand Down
Loading