Skip to content

Commit 211166a

Browse files
committed
- Upgrade dependencies
1 parent 27bd73b commit 211166a

File tree

5 files changed

+8
-26
lines changed

5 files changed

+8
-26
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
strategy:
13-
matrix: { ruby: ['2.7', '3.0', '3.1', head] }
13+
matrix: { ruby: ['2.7', '3.0', '3.1', '3.2', head] }
1414

1515
steps:
1616
- name: Checkout code

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ gem 'byebug'
44
gem 'lp'
55
gem 'rspec'
66
gem 'rspec_approvals'
7-
gem 'runfile'
8-
gem 'runfile-tasks'
7+
gem 'runfile', '>= 1.0.0.rc4'
8+
gem 'runfile-tasks', '>= 1.0.0.rc2'
99
gem 'simplecov'
1010

1111
gemspec

Runfile

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
1-
require "runfile-tasks"
21
require "byebug"
3-
require_relative 'lib/completely'
4-
require_relative 'lib/completely/version'
2+
require 'completely/version'
53

64
title "Completely Developer Toolbelt"
75
summary "Runfile tasks for building the Completely gem"
86
version Completely::VERSION
97

10-
RunfileTasks::RubyGems.all 'completely'
11-
RunfileTasks::Testing.rspec
12-
RunfileTasks::Docker.all 'dannyben/completely', Completely::VERSION
13-
14-
help "Run interactive console"
15-
action :console, :c do
16-
exec "bundle exec bin/console"
17-
end
18-
19-
require './debug.rb' if File.exist? 'debug.rb'
8+
import_gem 'runfile-tasks/gem', gemname: 'completely'
9+
import_gem 'runfile-tasks/docker', image: 'dannyben/completely', version: Completely::VERSION

bin/console

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

completely.gemspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ Gem::Specification.new do |s|
1313
s.executables = ['completely']
1414
s.homepage = 'https://github.com/dannyben/completely'
1515
s.license = 'MIT'
16+
1617
s.required_ruby_version = '>= 2.7.0'
1718

18-
s.add_runtime_dependency 'colsole', '~> 0.8', '>= 0.8.1'
19+
s.add_runtime_dependency 'colsole', '>= 0.8.1', '< 2'
1920
s.add_runtime_dependency 'mister_bin', '~> 0.7'
2021

2122
s.metadata['rubygems_mfa_required'] = 'true'

0 commit comments

Comments
 (0)