Skip to content

Commit

Permalink
Update dependencies and Github Action
Browse files Browse the repository at this point in the history
  • Loading branch information
stac47 committed Jan 4, 2024
1 parent 848d16e commit e655e5b
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 32 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,9 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby:
- '2.6.10'
- '2.7.6'

ruby: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3']
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down
5 changes: 5 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
source "http://rubygems.org"

gemspec

gem "rake"
gem "irb"
gem "debug"
46 changes: 27 additions & 19 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,44 +1,52 @@
PATH
remote: .
specs:
tzu_mock (1.3.0)
tzu_mock (1.4.0)
binding_of_caller (>= 0.7)
hashie (~> 3)
rspec
tzu

GEM
remote: http://rubygems.org/
specs:
binding_of_caller (1.0.0)
debug_inspector (>= 0.0.1)
byebug (11.1.3)
debug_inspector (1.1.0)
debug (1.8.0)
irb (>= 1.5.0)
reline (>= 0.3.1)
debug_inspector (1.2.0)
diff-lcs (1.5.0)
hashie (3.6.0)
rake (13.0.6)
rspec (3.11.0)
rspec-core (~> 3.11.0)
rspec-expectations (~> 3.11.0)
rspec-mocks (~> 3.11.0)
rspec-core (3.11.0)
rspec-support (~> 3.11.0)
rspec-expectations (3.11.0)
io-console (0.7.1)
irb (1.6.3)
reline (>= 0.3.0)
rake (13.1.0)
reline (0.4.1)
io-console (~> 0.5)
rspec (3.12.0)
rspec-core (~> 3.12.0)
rspec-expectations (~> 3.12.0)
rspec-mocks (~> 3.12.0)
rspec-core (3.12.2)
rspec-support (~> 3.12.0)
rspec-expectations (3.12.3)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.11.0)
rspec-mocks (3.11.1)
rspec-support (~> 3.12.0)
rspec-mocks (3.12.6)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.11.0)
rspec-support (3.11.0)
rspec-support (~> 3.12.0)
rspec-support (3.12.1)
tzu (0.1.2.0)

PLATFORMS
ruby

DEPENDENCIES
byebug
debug
irb
rake
rspec
tzu
tzu_mock!

BUNDLED WITH
2.3.13
2.4.22
13 changes: 5 additions & 8 deletions tzu_mock.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ $:.push File.expand_path('../lib', __FILE__)

Gem::Specification.new do |s|
s.name = 'tzu_mock'
s.version = '1.3.0'
s.version = '1.4.0'
s.platform = Gem::Platform::RUBY
s.authors = ['Blake Turner']
s.description = 'Simple library for mocking Tzu in RSpec'
Expand All @@ -15,11 +15,8 @@ Gem::Specification.new do |s|
s.test_files = Dir.glob("{spec}/**/*")
s.require_paths = ['lib']

s.add_runtime_dependency 'binding_of_caller', '>= 0.7'
s.add_runtime_dependency 'hashie', '~> 3'

s.add_development_dependency 'tzu'
s.add_development_dependency 'rspec'
s.add_development_dependency 'byebug'
s.add_development_dependency 'rake'
s.add_dependency 'binding_of_caller', '>= 0.7'
s.add_dependency 'hashie', '~> 3'
s.add_dependency 'tzu'
s.add_dependency 'rspec'
end

0 comments on commit e655e5b

Please sign in to comment.