Skip to content

Commit

Permalink
Fix gem dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Augusto committed Mar 24, 2024
1 parent 64f6076 commit 46ab588
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 0 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# development dependencies will be added by default to the :development group.
gemspec

gem "activesupport"
gem "byebug", "~> 11.1"
gem "logger"
gem "minitest", "~> 5.14"
gem "rake", "~> 13.0"
gem "rubocop", "~> 1.21"
Expand Down
3 changes: 2 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ PATH
remote: .
specs:
zspay (1.0.0)
http
activesupport (>= 6.0.0)
http (>= 5.2.0)

GEM
remote: https://rubygems.org/
Expand Down
1 change: 0 additions & 1 deletion lib/zspay.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# frozen_string_literal: true

require "http"
require "byebug"
require "logger"
require "active_support/hash_with_indifferent_access"

Expand Down
4 changes: 3 additions & 1 deletion zspay.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = Gem::Requirement.new("~> 3.0")

spec.add_runtime_dependency "http"
spec.add_runtime_dependency "activesupport", ">= 6.0.0"
spec.add_runtime_dependency "http", ">= 5.2.0"

spec.metadata["rubygems_mfa_required"] = "true"
end

0 comments on commit 46ab588

Please sign in to comment.