rqrcode 2.2.0 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 46c752f56b2f26a71997009f105896a93874304e47b5453f6d399790ec5d67ee
4
- data.tar.gz: 3a32e1b77c24d1118510084ad0b0f700ff54c8605c5e5cf77aca2c5efc782438
3
+ metadata.gz: 8b36678dab893b7737a87335397f977752eb01a3b935e8ac8a0025163d9fb4b7
4
+ data.tar.gz: 9938a0bf2f27ab46db54bf5d6171b3c52bbbd0e650f13bbe5d692ee769f08e88
5
5
  SHA512:
6
- metadata.gz: 28ae604413d674f2c8fe6aac337aab7253874357d6d0e4e656c7e3cf743c8a65d102a5eeb8790601678d4c65172bbdd882cf1a51766d23df99b4253f0801a11d
7
- data.tar.gz: 34fbe27e846970fe5b8571c446d6bee7327d46c3b645aaf07b141cf96d98c7beb918f6cc929408fd612940d260a0258c5656937f7283acbcf6cab0d00e09c082
6
+ metadata.gz: 4effb47e47d8d89935fb07957960b5ec6fddcefbe8259b03311b62b6721bdb1838227c1066745fd564a70faab521598a932cf1a6acea2470957458d4415737ff
7
+ data.tar.gz: a0d482a08eb97e2b5347a248a9ee52daa840d295e04b5d4c4b5c7e6618a6b4e0a3bba6e39f228a77e56048236f87fc76dcd6b49942cbae2a00dc904317af55ee
@@ -0,0 +1,4 @@
1
+ # These are supported funding model platforms
2
+
3
+ github: whomwah
4
+ buy_me_a_coffee: duncanrobertson
@@ -3,10 +3,9 @@ name: rqrcode
3
3
  on:
4
4
  push:
5
5
  branches:
6
- - master
7
- pull_request:
8
- branches:
9
- - master
6
+ - main
7
+ - release
8
+ pull_request: # Runs on any PR regardless of target branch
10
9
 
11
10
  jobs:
12
11
  Build:
@@ -14,15 +13,15 @@ jobs:
14
13
  fail-fast: false
15
14
  matrix:
16
15
  os: [ubuntu-latest, macos-latest]
17
- ruby: ['2.6', '2.7', '3.0', '3.1', '3.2']
16
+ ruby: ["3.0", "3.1", "3.2", "3.3", "3.4"]
18
17
  runs-on: ${{ matrix.os }}
19
18
  steps:
20
- - uses: actions/checkout@v3
21
- - uses: ruby/setup-ruby@v1
22
- with:
23
- ruby-version: ${{ matrix.ruby }}
24
- bundler-cache: true # runs 'bundle install' and caches installed gems automatically
25
- - name: Run Tests for Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
26
- run: bundle exec rake spec
27
- - name: StandardRB check for Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
28
- run: bundle exec standardrb --format progress
19
+ - uses: actions/checkout@v3
20
+ - uses: ruby/setup-ruby@v1
21
+ with:
22
+ ruby-version: ${{ matrix.ruby }}
23
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
24
+ - name: Run Tests for Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
25
+ run: bundle exec rake spec
26
+ - name: StandardRB check for Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
27
+ run: bundle exec standardrb --format progress
data/.standard.yml ADDED
@@ -0,0 +1 @@
1
+ ruby_version: 2.7
data/CHANGELOG.md CHANGED
@@ -7,21 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [3.0.0] - 2025-04-24
11
+
12
+ - Drop support for Ruby <3.0 in order to keep up with dev dependencies.
13
+ - **Breaking Change**: The `rqrcode_core` gem has been updated to version 3.0.0, which includes breaking changes. Please refer to the [rqrcode_core changelog](https://github.com/whomwah/rqrcode/blob/main/CHANGELOG.md)
14
+
10
15
  ## [2.2.0] - 2023-06-17
11
16
 
12
17
  ### Changed
13
18
 
14
- * Allow all ChunkyPNG::Color options to be passed into `fill` and `color` on `as_png` [#135]
15
- * Add 3.2 to CI [@petergoldstein](https://github.com/petergoldstein) [#133]
16
- * Development dependency upgrades. Minimum Ruby change [#130]
17
- * README updates
19
+ - Allow all ChunkyPNG::Color options to be passed into `fill` and `color` on `as_png` [#135]
20
+ - Add 3.2 to CI [@petergoldstein](https://github.com/petergoldstein) [#133]
21
+ - Development dependency upgrades. Minimum Ruby change [#130]
22
+ - README updates
18
23
 
19
24
  ## [2.1.2] - 2022-07-26
20
25
 
21
26
  ### Changed
22
27
 
23
- * Remove setup script as it just calls bundle install [#128]
24
- * Change inline styles to the fill property to allow for strict CSP style-src directive [#127]
28
+ - Remove setup script as it just calls bundle install [#128]
29
+ - Change inline styles to the fill property to allow for strict CSP style-src directive [#127]
25
30
 
26
31
  ## [2.1.1] - 2022-02-11
27
32
 
@@ -60,7 +65,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
60
65
 
61
66
  ### Breaking Change
62
67
 
63
- - The dependency `rqrcode_core-1.0.0` has a tiny breaking change to the `to_s` public method. https://github.com/whomwah/rqrcode_core/blob/master/CHANGELOG.md#breaking-changes
68
+ - The dependency `rqrcode_core-1.0.0` has a tiny breaking change to the `to_s` public method. https://github.com/whomwah/rqrcode_core/blob/main/CHANGELOG.md#breaking-changes
64
69
 
65
70
  ## [1.2.0] - 2020-12-26
66
71
 
data/Gemfile.lock CHANGED
@@ -1,72 +1,82 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rqrcode (2.2.0)
4
+ rqrcode (3.0.0)
5
5
  chunky_png (~> 1.0)
6
- rqrcode_core (~> 1.0)
6
+ rqrcode_core (~> 2.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
11
  ast (2.4.2)
12
12
  chunky_png (1.4.0)
13
- diff-lcs (1.5.0)
14
- json (2.6.3)
15
- language_server-protocol (3.17.0.2)
16
- parallel (1.22.1)
17
- parser (3.1.3.0)
13
+ diff-lcs (1.5.1)
14
+ json (2.7.2)
15
+ language_server-protocol (3.17.0.3)
16
+ lint_roller (1.1.0)
17
+ parallel (1.26.3)
18
+ parser (3.3.5.0)
18
19
  ast (~> 2.4.1)
20
+ racc
21
+ racc (1.8.1)
19
22
  rainbow (3.1.1)
20
- rake (13.0.6)
21
- regexp_parser (2.6.1)
22
- rexml (3.2.5)
23
- rqrcode_core (1.2.0)
24
- rspec (3.12.0)
25
- rspec-core (~> 3.12.0)
26
- rspec-expectations (~> 3.12.0)
27
- rspec-mocks (~> 3.12.0)
28
- rspec-core (3.12.0)
29
- rspec-support (~> 3.12.0)
30
- rspec-expectations (3.12.1)
23
+ rake (13.2.1)
24
+ regexp_parser (2.9.2)
25
+ rqrcode_core (2.0.0)
26
+ rspec (3.13.0)
27
+ rspec-core (~> 3.13.0)
28
+ rspec-expectations (~> 3.13.0)
29
+ rspec-mocks (~> 3.13.0)
30
+ rspec-core (3.13.1)
31
+ rspec-support (~> 3.13.0)
32
+ rspec-expectations (3.13.2)
31
33
  diff-lcs (>= 1.2.0, < 2.0)
32
- rspec-support (~> 3.12.0)
33
- rspec-mocks (3.12.1)
34
+ rspec-support (~> 3.13.0)
35
+ rspec-mocks (3.13.1)
34
36
  diff-lcs (>= 1.2.0, < 2.0)
35
- rspec-support (~> 3.12.0)
36
- rspec-support (3.12.0)
37
- rubocop (1.40.0)
37
+ rspec-support (~> 3.13.0)
38
+ rspec-support (3.13.1)
39
+ rubocop (1.66.1)
38
40
  json (~> 2.3)
41
+ language_server-protocol (>= 3.17.0)
39
42
  parallel (~> 1.10)
40
- parser (>= 3.1.2.1)
43
+ parser (>= 3.3.0.2)
41
44
  rainbow (>= 2.2.2, < 4.0)
42
- regexp_parser (>= 1.8, < 3.0)
43
- rexml (>= 3.2.5, < 4.0)
44
- rubocop-ast (>= 1.23.0, < 2.0)
45
+ regexp_parser (>= 2.4, < 3.0)
46
+ rubocop-ast (>= 1.32.2, < 2.0)
45
47
  ruby-progressbar (~> 1.7)
46
- unicode-display_width (>= 1.4.0, < 3.0)
47
- rubocop-ast (1.24.0)
48
- parser (>= 3.1.1.0)
49
- rubocop-performance (1.15.1)
50
- rubocop (>= 1.7.0, < 2.0)
51
- rubocop-ast (>= 0.4.0)
52
- ruby-progressbar (1.11.0)
53
- standard (1.20.0)
48
+ unicode-display_width (>= 2.4.0, < 3.0)
49
+ rubocop-ast (1.32.3)
50
+ parser (>= 3.3.1.0)
51
+ rubocop-performance (1.22.1)
52
+ rubocop (>= 1.48.1, < 2.0)
53
+ rubocop-ast (>= 1.31.1, < 2.0)
54
+ ruby-progressbar (1.13.0)
55
+ standard (1.41.0)
54
56
  language_server-protocol (~> 3.17.0.2)
55
- rubocop (= 1.40.0)
56
- rubocop-performance (= 1.15.1)
57
- standardrb (1.0.1)
58
- standard
59
- unicode-display_width (2.3.0)
57
+ lint_roller (~> 1.0)
58
+ rubocop (~> 1.66.0)
59
+ standard-custom (~> 1.0.0)
60
+ standard-performance (~> 1.5)
61
+ standard-custom (1.0.2)
62
+ lint_roller (~> 1.0)
63
+ rubocop (~> 1.50)
64
+ standard-performance (1.5.0)
65
+ lint_roller (~> 1.1)
66
+ rubocop-performance (~> 1.22.0)
67
+ unicode-display_width (2.6.0)
60
68
 
61
69
  PLATFORMS
70
+ aarch64-linux
62
71
  ruby
72
+ x86_64-linux
63
73
 
64
74
  DEPENDENCIES
65
75
  bundler (~> 2.0)
66
76
  rake (~> 13.0)
67
77
  rqrcode!
68
78
  rspec (~> 3.5)
69
- standardrb (~> 1.0)
79
+ standard (~> 1.41)
70
80
 
71
81
  BUNDLED WITH
72
- 2.3.26
82
+ 2.4.10
data/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  [RQRCode](https://github.com/whomwah/rqrcode) is a library for creating and rendering QR codes into various formats. It has a simple interface with all the standard QR code options. It was adapted from the Javascript library by Kazuhiko Arase.
8
8
 
9
9
  * QR code is trademarked by Denso Wave inc
10
- * Minimum Ruby version is `>= 2.6`
10
+ * Minimum Ruby version is `>= 3.0.0`
11
11
  * For `rqrcode` releases `< 2.0.0` please use [this README](https://github.com/whomwah/rqrcode/blob/v1.2.0/README.md)
12
12
  * For `rqrcode` releases `< 1.0.0` please use [this README](https://github.com/whomwah/rqrcode/blob/v0.9.0/README.md)
13
13
 
@@ -76,13 +76,13 @@ Expects a string or array (for multi-segment encoding) to be parsed in, other ar
76
76
  Example
77
77
 
78
78
  ```ruby
79
- simple_qrcode = RQRCodeCore::QRCode.new("https://kyan.com", size: 1, level: :m, mode: :alphanumeric)
79
+ simple_qrcode = RQRCodeCore::QRCode.new("https://kyan.com", size: 2, level: :m, mode: :byte_8bit)
80
80
 
81
- segment_qrcode = QRCodeCore::QRCode.new({ data: "foo", mode: :byte_8bit })
81
+ segment_qrcode = RQRCodeCore::QRCode.new([{ data: "foo", mode: :byte_8bit }])
82
82
 
83
83
  multi_qrcode = RQRCodeCore::QRCode.new([
84
84
  { data: 'foo', mode: :byte_8bit },
85
- { data: 'bar1', mode: :alphanumeric }
85
+ { data: 'BAR1', mode: :alphanumeric }
86
86
  ])
87
87
  ```
88
88
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RQRCode
4
- VERSION = "2.2.0"
4
+ VERSION = "3.0.0"
5
5
  end
data/rqrcode.gemspec CHANGED
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
19
19
  spec.license = "MIT"
20
20
  spec.metadata = {
21
21
  "bug_tracker_uri" => "https://github.com/whomwah/rqrcode/issues",
22
- "changelog_uri" => "https://github.com/whomwah/rqrcode/blob/master/CHANGELOG.md"
22
+ "changelog_uri" => "https://github.com/whomwah/rqrcode/blob/main/CHANGELOG.md"
23
23
  }
24
24
 
25
25
  spec.files = Dir.chdir(File.expand_path("..", __FILE__)) do
@@ -29,11 +29,11 @@ Gem::Specification.new do |spec|
29
29
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
30
30
  spec.require_paths = ["lib"]
31
31
 
32
- spec.required_ruby_version = ">= 2.6"
33
- spec.add_dependency "rqrcode_core", "~> 1.0"
32
+ spec.required_ruby_version = "~> 3.0"
33
+ spec.add_dependency "rqrcode_core", "~> 2.0"
34
34
  spec.add_dependency "chunky_png", "~> 1.0"
35
35
  spec.add_development_dependency "bundler", "~> 2.0"
36
36
  spec.add_development_dependency "rake", "~> 13.0"
37
37
  spec.add_development_dependency "rspec", "~> 3.5"
38
- spec.add_development_dependency "standardrb", "~> 1.0"
38
+ spec.add_development_dependency "standard", "~> 1.41"
39
39
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rqrcode
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.0
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Duncan Robertson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-05-17 00:00:00.000000000 Z
11
+ date: 2025-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rqrcode_core
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.0'
19
+ version: '2.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '1.0'
26
+ version: '2.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: chunky_png
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -81,19 +81,19 @@ dependencies:
81
81
  - !ruby/object:Gem::Version
82
82
  version: '3.5'
83
83
  - !ruby/object:Gem::Dependency
84
- name: standardrb
84
+ name: standard
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: '1.0'
89
+ version: '1.41'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: '1.0'
96
+ version: '1.41'
97
97
  description: |
98
98
  rqrcode is a library for encoding QR Codes. The simple
99
99
  interface allows you to create QR Code data structures
@@ -104,9 +104,11 @@ executables: []
104
104
  extensions: []
105
105
  extra_rdoc_files: []
106
106
  files:
107
+ - ".github/FUNDING.yml"
107
108
  - ".github/workflows/ruby.yml"
108
109
  - ".gitignore"
109
110
  - ".rspec"
111
+ - ".standard.yml"
110
112
  - CHANGELOG.md
111
113
  - Gemfile
112
114
  - Gemfile.lock
@@ -133,23 +135,23 @@ licenses:
133
135
  - MIT
134
136
  metadata:
135
137
  bug_tracker_uri: https://github.com/whomwah/rqrcode/issues
136
- changelog_uri: https://github.com/whomwah/rqrcode/blob/master/CHANGELOG.md
138
+ changelog_uri: https://github.com/whomwah/rqrcode/blob/main/CHANGELOG.md
137
139
  post_install_message:
138
140
  rdoc_options: []
139
141
  require_paths:
140
142
  - lib
141
143
  required_ruby_version: !ruby/object:Gem::Requirement
142
144
  requirements:
143
- - - ">="
145
+ - - "~>"
144
146
  - !ruby/object:Gem::Version
145
- version: '2.6'
147
+ version: '3.0'
146
148
  required_rubygems_version: !ruby/object:Gem::Requirement
147
149
  requirements:
148
150
  - - ">="
149
151
  - !ruby/object:Gem::Version
150
152
  version: '0'
151
153
  requirements: []
152
- rubygems_version: 3.4.6
154
+ rubygems_version: 3.5.11
153
155
  signing_key:
154
156
  specification_version: 4
155
157
  summary: A library to encode QR Codes