rqrcode_core 0.1.0 → 0.1.1

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: 86bf286f36fb7acec89e8a8ac63c9b3db53924419765d73299af06b2d5af6e6b
4
- data.tar.gz: 63f29d43c5442598324647c876f7d93e60a1039812396aa2697e8066b06f1621
3
+ metadata.gz: a6532b18a40855c6c4424b2fb6a9d54edae0377499d85338e2f387547919329b
4
+ data.tar.gz: 87019adc3b63c4e97ca659224011497b91e6d09f60767a24c3ae4d67ed5d21cf
5
5
  SHA512:
6
- metadata.gz: 0f529986cdb960c2f01446b2b25ef89225399bc5005bb91294112d9a361ceed33a1d72d3a5f5f6acb15ea9334286dfb91ae9349cc56d2aad66b055745d91c56c
7
- data.tar.gz: 150efe0ebfaffcdd317983bbcef042653c96421c2b42f78b919f2fd87b361ffd6b256660e95b76afbb096c63ca5985726688c07648ad26efc28ffedd487af851
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rqrcode_core (0.1.0)
4
+ rqrcode_core (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -19,4 +19,4 @@ DEPENDENCIES
19
19
  rqrcode_core!
20
20
 
21
21
  BUNDLED WITH
22
- 2.0.1
22
+ 2.0.2
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- [![Codeship Status for whomwah/rqrcode_core](https://app.codeship.com/projects/d2dc8c80-6e88-0137-bf46-6a53d28fd6d4/status?branch=master)](https://app.codeship.com/projects/347347)
1
+ ![](https://github.com/whomwah/rqrcode_core/workflows/rqrcode_core/badge.svg)
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RQRCodeCore
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
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.0
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-04 00:00:00.000000000 Z
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