rqrcode_core 0.1.0 → 0.1.1
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 +4 -4
- data/.github/workflows/ruby.yml +31 -0
- data/Gemfile.lock +2 -2
- data/README.md +1 -1
- data/lib/rqrcode_core/qrcode/qr_code.rb +3 -0
- data/lib/rqrcode_core/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a6532b18a40855c6c4424b2fb6a9d54edae0377499d85338e2f387547919329b
|
4
|
+
data.tar.gz: 87019adc3b63c4e97ca659224011497b91e6d09f60767a24c3ae4d67ed5d21cf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5dacb728f9f5817ee1568871ba9c554433442739be2f4a4e9857bfbb1cfecdd536fe977d869be9d397a7ec9b9dfb0676dbd97e9aa39d6f9fcc3384bf6a0a594e
|
7
|
+
data.tar.gz: cb51d2616d3d7c513155882a1a23bbde9f6c62c2b58bec3b4f20d08b9b7b5d33079dd85bf1203e9dfa650c67b0b35d019eedb2482b1e0f9f36d344004cf968b3
|
@@ -0,0 +1,31 @@
|
|
1
|
+
name: rqrcode_core
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- master
|
7
|
+
- release/*
|
8
|
+
pull_request:
|
9
|
+
branches:
|
10
|
+
- master
|
11
|
+
|
12
|
+
jobs:
|
13
|
+
build:
|
14
|
+
name: Test Ruby ${{ matrix.ruby_version }} on ${{ matrix.os }}
|
15
|
+
runs-on: ${{ matrix.os }}
|
16
|
+
strategy:
|
17
|
+
matrix:
|
18
|
+
ruby_version: [2.5.x, 2.6.x]
|
19
|
+
os: [ubuntu-latest]
|
20
|
+
|
21
|
+
steps:
|
22
|
+
- uses: actions/checkout@v1
|
23
|
+
- name: Use Ruby ${{ matrix.ruby_version }}
|
24
|
+
uses: actions/setup-ruby@v1
|
25
|
+
with:
|
26
|
+
ruby-version: ${{ matrix.ruby_version }}
|
27
|
+
- name: Gem install and test
|
28
|
+
run: |
|
29
|
+
gem install bundler
|
30
|
+
bundle install --jobs 4 --retry 3
|
31
|
+
bundle exec rake test
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+

|
2
2
|
|
3
3
|
# RQRCodeCore
|
4
4
|
|
@@ -233,6 +233,9 @@ module RQRCodeCore
|
|
233
233
|
end
|
234
234
|
@modules[row][col]
|
235
235
|
end
|
236
|
+
alias_method :dark?, :checked?
|
237
|
+
extend Gem::Deprecate
|
238
|
+
deprecate :dark?, :checked?, 2020, 1
|
236
239
|
|
237
240
|
# This is a public method that returns the QR Code you have
|
238
241
|
# generated as a string. It will not be able to be read
|
data/lib/rqrcode_core/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rqrcode_core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Duncan Robertson
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-07
|
11
|
+
date: 2019-11-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -61,6 +61,7 @@ executables: []
|
|
61
61
|
extensions: []
|
62
62
|
extra_rdoc_files: []
|
63
63
|
files:
|
64
|
+
- ".github/workflows/ruby.yml"
|
64
65
|
- ".gitignore"
|
65
66
|
- Gemfile
|
66
67
|
- Gemfile.lock
|