Skip to content

Commit

Permalink
Merge pull request #10 from rcode5/chore/bump-gems
Browse files Browse the repository at this point in the history
bump gems
  • Loading branch information
bunnymatic authored Sep 4, 2023
2 parents ecd4c95 + 5773332 commit cbbbf05
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.6.6
2.7.6
7 changes: 7 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
source "https://rubygems.org"
gemspec

group :development, :test do
gem "minitest", "~> 5.x"
gem "rake", "~> 13.0"
gem "rubocop", "~> 1.x"
gem "rubocop-performance", "~> 1.x"
end
36 changes: 21 additions & 15 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,37 +2,43 @@ PATH
remote: .
specs:
qr4r (0.6.2)
mojo_magick (~> 0.6.5)
rqrcode_core (~> 1.0)
mojo_magick (~> 0.6.8)
rqrcode_core (~> 1.2.0)

GEM
remote: https://rubygems.org/
specs:
ast (2.4.2)
base64 (0.1.1)
json (2.6.3)
minitest (5.18.0)
mojo_magick (0.6.7)
language_server-protocol (3.17.0.3)
minitest (5.19.0)
mojo_magick (0.6.8)
parallel (1.23.0)
parser (3.2.2.0)
parser (3.2.2.3)
ast (~> 2.4.1)
racc
racc (1.7.1)
rainbow (3.1.1)
rake (13.0.6)
regexp_parser (2.8.0)
rexml (3.2.5)
regexp_parser (2.8.1)
rexml (3.2.6)
rqrcode_core (1.2.0)
rubocop (1.50.2)
rubocop (1.56.2)
base64 (~> 0.1.1)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.2.0.0)
parser (>= 3.2.2.3)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.28.0, < 2.0)
rubocop-ast (>= 1.28.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.28.0)
rubocop-ast (1.29.0)
parser (>= 3.2.1.0)
rubocop-performance (1.17.1)
rubocop-performance (1.19.0)
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
ruby-progressbar (1.13.0)
Expand All @@ -42,11 +48,11 @@ PLATFORMS
ruby

DEPENDENCIES
minitest (~> 5.14)
minitest (~> 5.x)
qr4r!
rake (~> 13.0)
rubocop (~> 1.0)
rubocop-performance (~> 1.8)
rubocop (~> 1.x)
rubocop-performance (~> 1.x)

BUNDLED WITH
2.2.33
2 changes: 1 addition & 1 deletion examples/generate_qr4r.rb
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def help

if options.verbose
print "Encoding \"#{to_encode}\" to file #{outfile}"
print " with border #{options.border}" if options.border.positive?
print " with border #{options.border}" if options.border.positive?
print " and pixel_size #{options.pixel_size}"
puts " and format #{options.format}"
end
Expand Down
8 changes: 2 additions & 6 deletions qr4r.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,7 @@ Gem::Specification.new do |s|
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency("mojo_magick", "~> 0.6.5")
s.add_dependency("rqrcode_core", "~> 1.0")
s.add_development_dependency("minitest", "~> 5.14")
s.add_development_dependency("rake", "~> 13.0")
s.add_development_dependency("rubocop", "~> 1.0")
s.add_development_dependency("rubocop-performance", "~> 1.8")
s.add_dependency("mojo_magick", "~> 0.6.8")
s.add_dependency("rqrcode_core", "~> 1.2.0")
s.metadata["rubygems_mfa_required"] = "true"
end
3 changes: 2 additions & 1 deletion test/qr4r_test.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
require "minitest/autorun"
require File.expand_path(File.join(File.dirname(__FILE__), "..", "init"))
require "tempfile"
class Qr4rTest < MiniTest::Test

class Qr4rTest < Minitest::Test
def test_encode
# do something
f = Tempfile.new(["qr4r", ".png"])
Expand Down

0 comments on commit cbbbf05

Please sign in to comment.