Skip to content

Commit

Permalink
bump gem version and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
colinbendell committed Mar 27, 2023
1 parent 40f475a commit d0a537f
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ inherit_from:
- https://shopify.github.io/ruby-style-guide/rubocop.yml

AllCops:
TargetRubyVersion: 2.4
TargetRubyVersion: 2.7
Exclude:
- vendor/bundle/**/*
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ source "https://rubygems.org"
gemspec

gem 'rails', '~> 7.0.4'
gem 'rubocop', '1.48.0', require: false
gem 'rubocop', require: false, group: :test
gem 'mocha', require: false, group: :test
gem 'simplecov', require: false, group: :test
19 changes: 9 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
response_bank (1.1.0)
response_bank (1.2.0)
msgpack
useragent

Expand Down Expand Up @@ -96,6 +96,7 @@ GEM
marcel (1.0.2)
method_source (1.0.0)
mini_mime (1.1.2)
mini_portile2 (2.8.1)
minitest (5.18.0)
mocha (2.0.2)
ruby2_keywords (>= 0.0.5)
Expand All @@ -110,7 +111,8 @@ GEM
net-smtp (0.3.3)
net-protocol
nio4r (2.5.8)
nokogiri (1.14.2-arm64-darwin)
nokogiri (1.14.2)
mini_portile2 (~> 2.8.0)
racc (~> 1.4)
parallel (1.22.1)
parser (3.2.1.1)
Expand Down Expand Up @@ -149,7 +151,7 @@ GEM
rake (13.0.6)
regexp_parser (2.7.0)
rexml (3.2.5)
rubocop (1.48.0)
rubocop (1.48.1)
json (~> 2.3)
parallel (~> 1.10)
parser (>= 3.2.0.0)
Expand All @@ -173,8 +175,6 @@ GEM
timeout (0.3.2)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
tzinfo-data (1.2023.2)
tzinfo (>= 1.0.0)
unicode-display_width (2.4.2)
useragent (0.16.10)
websocket-driver (0.7.5)
Expand All @@ -183,17 +183,16 @@ GEM
zeitwerk (2.6.7)

PLATFORMS
arm64-darwin-21
ruby

DEPENDENCIES
minitest (>= 5.13.0)
mocha (>= 1.10.0)
minitest (>= 5.18.0)
mocha
rails (~> 7.0.4)
rake
response_bank!
rubocop (= 1.48.0)
rubocop
simplecov
tzinfo-data (>= 1.2019.3)

BUNDLED WITH
2.3.11
2 changes: 1 addition & 1 deletion lib/response_bank/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# frozen_string_literal: true
module ResponseBank
VERSION = "1.1.0"
VERSION = "1.2.0"
end
9 changes: 4 additions & 5 deletions response_bank.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,15 @@ Gem::Specification.new do |s|
s.files = Dir["lib/**/*.rb", "README.md", "LICENSE.txt"]
s.require_paths = ["lib"]

s.required_ruby_version = ">= 2.4.0"
s.required_ruby_version = ">= 2.7.0"

s.metadata["allowed_push_host"] = "https://rubygems.org"

s.add_runtime_dependency("useragent")
s.add_runtime_dependency("msgpack")

s.add_development_dependency("minitest", ">= 5.13.0")
s.add_development_dependency("mocha", ">= 1.10.0")
s.add_development_dependency("minitest", ">= 5.18.0")
s.add_development_dependency("mocha", ">= 2.0.0")
s.add_development_dependency("rake")
s.add_development_dependency("rails", ">= 5.0")
s.add_development_dependency("tzinfo-data", ">= 1.2019.3")
s.add_development_dependency("rails", ">= 6.1")
end

0 comments on commit d0a537f

Please sign in to comment.