rqrcode 2.1.1 → 2.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6d9f9771040408819ab4ae97bc5b0de8814863e5b9dba0402268799eb03350d9
4
- data.tar.gz: 2f811a4fed92cfa3bed1fdbe8609c57910c76184c97eafb00985422d83c02385
3
+ metadata.gz: a7f00d7af65a23ac1eeebda231f79607353d52c8b6b83072b53642fbcf5c4b88
4
+ data.tar.gz: a7cc3db7028ab710f6b325cbd76a91db4da23b889f65252f1faa99cfc319512f
5
5
  SHA512:
6
- metadata.gz: 6ece7165b08b181bd62a10069d5b60a849e0887c1c775b625cf691d3f7a439f0a5701d3fa362fb1263d7aae425e9a8a18c706ac621efb7f8f97955f5e7e11dbc
7
- data.tar.gz: '0479794cb35208cffebf7355cbb3517b394f14b8af04eeebbcf51b2afdafd35f088fe2f9a60daf55752594578231411468f6eef090bd20b4e0c4864ea1cb00e4'
6
+ metadata.gz: 328a1114929797f4a47e0101055afe1e73f7fc9b015ca8435069aecdecff29699f9c694e158bca0aff52003b8b0cb8072a1296fee48a93bea00c55a1d0c565ba
7
+ data.tar.gz: e6b0bbdc6e99265e6d9b00260bb55a4c92669cadff5720d93fca5d2f450002d3f885772377eeb8191468853b17fde9c834db6d27aafd20609b3dd2c95c4ec958
data/CHANGELOG.md CHANGED
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [2.1.2] - 2022-07-26
11
+
12
+ * Remove setup script as it just calls bundle install [#128]
13
+ * Change inline styles to the fill property to allow for strict CSP style-src directive [#127]
14
+
10
15
  ## [2.1.1] - 2022-02-11
11
16
 
12
17
  - Added in a handler for when color arguments are passed in as symbols e.g `color: :yellow`. This also allows for the use of the `:currentColor` keyword. [#122]
@@ -47,7 +52,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
47
52
  - bump dependencies
48
53
  - fix `required_ruby_version` for Ruby 3 support
49
54
 
50
- [unreleased]: https://github.com/whomwah/rqrcode/compare/v2.1.1...HEAD
55
+ [unreleased]: https://github.com/whomwah/rqrcode/compare/v2.1.2...HEAD
56
+ [2.1.2]: https://github.com/whomwah/rqrcode/compare/v2.1.1...v2.1.2
51
57
  [2.1.1]: https://github.com/whomwah/rqrcode/compare/v2.1.0...v2.1.1
52
58
  [2.1.0]: https://github.com/whomwah/rqrcode/compare/v2.0.0...v2.1.0
53
59
  [2.0.0]: https://github.com/whomwah/rqrcode/compare/v1.2.0...v2.0.0
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rqrcode (2.1.1)
4
+ rqrcode (2.1.2)
5
5
  chunky_png (~> 1.0)
6
6
  rqrcode_core (~> 1.0)
7
7
 
data/README.md CHANGED
@@ -251,7 +251,7 @@ svg = qrcode.as_ansi(
251
251
  You can run the test suite using:
252
252
 
253
253
  ```
254
- $ ./bin/setup
254
+ $ bundle install
255
255
  $ rake # runs specs and standard:fix
256
256
  $ rake spec # just runs the specs
257
257
  ```
@@ -267,7 +267,7 @@ $ ./bin/console
267
267
  The project uses [standardrb](https://github.com/testdouble/standard) and can be used with:
268
268
 
269
269
  ```
270
- $ ./bin/setup
270
+ $ bundle install
271
271
  $ rake standard # checks
272
272
  $ rake standard:fix # fixes
273
273
  ```
@@ -79,7 +79,7 @@ module RQRCode
79
79
  # Prefix hexadecimal colors unless using a named color (symbol)
80
80
  color = "##{color}" unless color.is_a?(Symbol)
81
81
 
82
- @result << %{<path d="#{path.join}" style="fill:#{color}" transform="translate(#{offset},#{offset}) scale(#{module_size})"/>}
82
+ @result << %{<path d="#{path.join}" fill="#{color}" transform="translate(#{offset},#{offset}) scale(#{module_size})"/>}
83
83
  end
84
84
  end
85
85
 
@@ -95,7 +95,7 @@ module RQRCode
95
95
  x = r * module_size + offset
96
96
 
97
97
  next unless @qrcode.checked?(c, r)
98
- tmp << %(<rect width="#{module_size}" height="#{module_size}" x="#{x}" y="#{y}" style="fill:#{color}"/>)
98
+ tmp << %(<rect width="#{module_size}" height="#{module_size}" x="#{x}" y="#{y}" fill="#{color}"/>)
99
99
  end
100
100
 
101
101
  @result << tmp.join
@@ -192,7 +192,7 @@ module RQRCode
192
192
  if fill
193
193
  # Prefix hexadecimal colors unless using a named color (symbol)
194
194
  fill = "##{fill}" unless fill.is_a?(Symbol)
195
- output_tag.result.unshift %(<rect width="#{dimension}" height="#{dimension}" x="0" y="0" style="fill:#{fill}"/>)
195
+ output_tag.result.unshift %(<rect width="#{dimension}" height="#{dimension}" x="0" y="0" fill="#{fill}"/>)
196
196
  end
197
197
 
198
198
  if standalone
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RQRCode
4
- VERSION = "2.1.1"
4
+ VERSION = "2.1.2"
5
5
  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.1.1
4
+ version: 2.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Duncan Robertson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-02-11 00:00:00.000000000 Z
11
+ date: 2022-07-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rqrcode_core
@@ -115,7 +115,6 @@ files:
115
115
  - Rakefile
116
116
  - _config.yml
117
117
  - bin/console
118
- - bin/setup
119
118
  - images/ansi-screen-shot.png
120
119
  - images/github-qrcode.png
121
120
  - images/github-qrcode.svg
@@ -150,7 +149,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
150
149
  - !ruby/object:Gem::Version
151
150
  version: '0'
152
151
  requirements: []
153
- rubygems_version: 3.3.3
152
+ rubygems_version: 3.3.7
154
153
  signing_key:
155
154
  specification_version: 4
156
155
  summary: A library to encode QR Codes
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here