votd 3.0.1 → 3.0.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: 57bcf6e57b91887386c042964ec51f28f4ab4c14b9e90a148b2912b0f5068fe6
4
- data.tar.gz: 80b0bf8a03ff966a8db709ae04e1607cc2b8cbae184b3d0a5160eec14bcb058b
3
+ metadata.gz: d29237ca3f2e6078e0bfea778aabe4881b69fe4c71626faa4bf6faa845d68077
4
+ data.tar.gz: 62bb616cc7ac61f2a7dff356b564fe5922c8b0c595631bc9df0365bb583860e5
5
5
  SHA512:
6
- metadata.gz: ececd1be7cdddd745cd30c1ebf5820174b28256630909b5b6a76943df9458a7e7f05df35a0de12ab0a43aa0f68b1914d95e410e3f55b9a62de70c9650e50e2be
7
- data.tar.gz: ccbc79d8895676c15f7b7bfef738e87cc6a2ceecc43355c665db3bb0e7cd4df900e6c102b290b38c698926ce22adb46745a386a064d41d2ad676d4cdaff25163
6
+ metadata.gz: 18ba480318c6d9e04ae7aa4f83641a6f8c28cf2e4621779f4bf049c5e1fb6027a155240dad3073e454870c604d6acbdd98b5b065a98e21fc4e28b84ecc2c493c
7
+ data.tar.gz: 2fecf83462199f131a1d521a865e51b93717084c05ddee5a3d2b3b764df3262d7cb22f66a87e452c1a2948d63bb6a1ce787cf39a4da7aa769a281cd1efb8cdda
@@ -0,0 +1,20 @@
1
+ name: Ruby
2
+
3
+ on: [push]
4
+
5
+ jobs:
6
+ build:
7
+
8
+ runs-on: ubuntu-latest
9
+
10
+ steps:
11
+ - uses: actions/checkout@v1
12
+ - name: Set up Ruby 2.6
13
+ uses: actions/setup-ruby@v1
14
+ with:
15
+ ruby-version: 2.6.x
16
+ - name: Build and test with Rake
17
+ run: |
18
+ gem install bundler
19
+ bundle install --jobs 4 --retry 3
20
+ bundle exec rake
data/README.md CHANGED
@@ -55,9 +55,9 @@ translations:
55
55
 
56
56
  ```ruby
57
57
  require 'votd'
58
- votd = Votd::NetBible.new # uses default New International Version
58
+ votd = Votd::BibleGateway.new # uses default New International Version
59
59
  # or
60
- votd = Votd::NetBible.new(:kjv) # uses King James Version (see chart below for more)
60
+ votd = Votd::BibleGateway.new(:kjv) # uses King James Version (see chart below for more)
61
61
  ```
62
62
 
63
63
  The following English translations are available:
@@ -1,4 +1,4 @@
1
1
  module Votd
2
2
  # Gem version number
3
- VERSION = "3.0.1"
3
+ VERSION = "3.0.2"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: votd
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 3.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steve Clarke
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-11-28 00:00:00.000000000 Z
12
+ date: 2020-04-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: httparty
@@ -146,6 +146,7 @@ executables:
146
146
  extensions: []
147
147
  extra_rdoc_files: []
148
148
  files:
149
+ - ".github/workflows/ruby.yml"
149
150
  - ".gitignore"
150
151
  - ".rspec"
151
152
  - ".ruby-version"