biblehub 0.1.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 +7 -0
- data/.rspec +3 -0
- data/.rubocop.yml +13 -0
- data/CHANGELOG.md +5 -0
- data/Gemfile +11 -0
- data/Gemfile.lock +55 -0
- data/LICENSE.txt +21 -0
- data/README.md +33 -0
- data/Rakefile +12 -0
- data/lib/biblehub/context/translation_titles.rb +55 -0
- data/lib/biblehub/version.rb +5 -0
- data/lib/biblehub.rb +4 -0
- data/sig/biblehub.rbs +4 -0
- metadata +57 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 322e29be04df520c2af45b92e8de3c2189b385b83b749e9e1650426a406e6e16
|
|
4
|
+
data.tar.gz: b72d453646c02cf45b3c6d5e3eaf0b30de9f179f7ff331e30a8603c0b691b502
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 3100113918a1fbac09adbfb01fdc1b5b3c54e41b3829fe17541461cc08db94ccdbe5eef4680bd0f1052fe5eabf0c87d52c657ee1cc99dc26ac39f16cf378fda6
|
|
7
|
+
data.tar.gz: 412d2403377c22206c71d920ec753f200ee7424a2037f31fa77471813bdb336e90756c611a98febc372fb01e1ad27c89cf5854f8527f261196af5c997c5852ad
|
data/.rspec
ADDED
data/.rubocop.yml
ADDED
data/CHANGELOG.md
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
biblehub (0.1.0)
|
|
5
|
+
|
|
6
|
+
GEM
|
|
7
|
+
remote: https://rubygems.org/
|
|
8
|
+
specs:
|
|
9
|
+
ast (2.4.2)
|
|
10
|
+
diff-lcs (1.5.0)
|
|
11
|
+
parallel (1.22.1)
|
|
12
|
+
parser (3.1.2.0)
|
|
13
|
+
ast (~> 2.4.1)
|
|
14
|
+
rainbow (3.1.1)
|
|
15
|
+
rake (13.0.6)
|
|
16
|
+
regexp_parser (2.3.1)
|
|
17
|
+
rexml (3.2.5)
|
|
18
|
+
rspec (3.11.0)
|
|
19
|
+
rspec-core (~> 3.11.0)
|
|
20
|
+
rspec-expectations (~> 3.11.0)
|
|
21
|
+
rspec-mocks (~> 3.11.0)
|
|
22
|
+
rspec-core (3.11.0)
|
|
23
|
+
rspec-support (~> 3.11.0)
|
|
24
|
+
rspec-expectations (3.11.0)
|
|
25
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
26
|
+
rspec-support (~> 3.11.0)
|
|
27
|
+
rspec-mocks (3.11.1)
|
|
28
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
29
|
+
rspec-support (~> 3.11.0)
|
|
30
|
+
rspec-support (3.11.0)
|
|
31
|
+
rubocop (1.28.2)
|
|
32
|
+
parallel (~> 1.10)
|
|
33
|
+
parser (>= 3.1.0.0)
|
|
34
|
+
rainbow (>= 2.2.2, < 4.0)
|
|
35
|
+
regexp_parser (>= 1.8, < 3.0)
|
|
36
|
+
rexml
|
|
37
|
+
rubocop-ast (>= 1.17.0, < 2.0)
|
|
38
|
+
ruby-progressbar (~> 1.7)
|
|
39
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
|
40
|
+
rubocop-ast (1.17.0)
|
|
41
|
+
parser (>= 3.1.1.0)
|
|
42
|
+
ruby-progressbar (1.11.0)
|
|
43
|
+
unicode-display_width (2.1.0)
|
|
44
|
+
|
|
45
|
+
PLATFORMS
|
|
46
|
+
x86_64-darwin-20
|
|
47
|
+
|
|
48
|
+
DEPENDENCIES
|
|
49
|
+
biblehub!
|
|
50
|
+
rake (~> 13.0)
|
|
51
|
+
rspec (~> 3.0)
|
|
52
|
+
rubocop (~> 1.21)
|
|
53
|
+
|
|
54
|
+
BUNDLED WITH
|
|
55
|
+
2.3.12
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022 Dave Woodall
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Biblehub
|
|
2
|
+
|
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/biblehub`. To experiment with that code, run `bin/console` for an interactive prompt.
|
|
4
|
+
|
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
Install the gem and add to the application's Gemfile by executing:
|
|
10
|
+
|
|
11
|
+
$ bundle add biblehub
|
|
12
|
+
|
|
13
|
+
If bundler is not being used to manage dependencies, install the gem by executing:
|
|
14
|
+
|
|
15
|
+
$ gem install biblehub
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
|
|
19
|
+
TODO: Write usage instructions here
|
|
20
|
+
|
|
21
|
+
## Development
|
|
22
|
+
|
|
23
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
24
|
+
|
|
25
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
26
|
+
|
|
27
|
+
## Contributing
|
|
28
|
+
|
|
29
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/biblehub.
|
|
30
|
+
|
|
31
|
+
## License
|
|
32
|
+
|
|
33
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
module Biblehub
|
|
2
|
+
module Context
|
|
3
|
+
class TranslationTitles
|
|
4
|
+
VERSIONS = [
|
|
5
|
+
"New International Version",
|
|
6
|
+
"New Living Translation",
|
|
7
|
+
"English Standard Version",
|
|
8
|
+
"Berean Study Bible",
|
|
9
|
+
"New American Standard Bible",
|
|
10
|
+
"NASB 1995",
|
|
11
|
+
"NASB 1977 ",
|
|
12
|
+
"Amplified Bible",
|
|
13
|
+
"Christian Standard Bible",
|
|
14
|
+
"Holman Christian Standard Bible",
|
|
15
|
+
"Contemporary English Version",
|
|
16
|
+
"Good News Translation",
|
|
17
|
+
"GOD'S WORD® Translation",
|
|
18
|
+
"International Standard Version",
|
|
19
|
+
"NET Bible",
|
|
20
|
+
"King James Bible",
|
|
21
|
+
"New King James Version",
|
|
22
|
+
"King James 2000 Bible",
|
|
23
|
+
"New Heart English Bible",
|
|
24
|
+
"World English Bible",
|
|
25
|
+
"American King James Version",
|
|
26
|
+
"American Standard Version",
|
|
27
|
+
"A Faithful Version",
|
|
28
|
+
"Darby Bible Translation",
|
|
29
|
+
"English Revised Version",
|
|
30
|
+
"Webster's Bible Translation",
|
|
31
|
+
"Geneva Bible of 1587",
|
|
32
|
+
"Bishops' Bible of 1568",
|
|
33
|
+
"Coverdale Bible of 1535",
|
|
34
|
+
"Literal Standard Version",
|
|
35
|
+
"Young's Literal Translation",
|
|
36
|
+
"Smith's Literal Translation",
|
|
37
|
+
"Douay-Rheims Bible",
|
|
38
|
+
"Catholic Public Domain Version",
|
|
39
|
+
"Peshitta Holy Bible Translated",
|
|
40
|
+
"Lamsa Bible",
|
|
41
|
+
"JPS Tanakh 1917",
|
|
42
|
+
"Brenton Septuagint Translation",
|
|
43
|
+
"Berean Study Bible",
|
|
44
|
+
"Young's Literal Translation",
|
|
45
|
+
"Holman Christian Standard Bible",
|
|
46
|
+
"New American Standard Bible",
|
|
47
|
+
"King James Bible"
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
def list
|
|
51
|
+
VERSIONS
|
|
52
|
+
end
|
|
53
|
+
end
|
|
54
|
+
end
|
|
55
|
+
end
|
data/lib/biblehub.rb
ADDED
data/sig/biblehub.rbs
ADDED
metadata
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: biblehub
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Dave Woodall
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2022-04-30 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: Access the biblehub website using ruby
|
|
14
|
+
email:
|
|
15
|
+
- hay@fakefarm.com
|
|
16
|
+
executables: []
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files: []
|
|
19
|
+
files:
|
|
20
|
+
- ".rspec"
|
|
21
|
+
- ".rubocop.yml"
|
|
22
|
+
- CHANGELOG.md
|
|
23
|
+
- Gemfile
|
|
24
|
+
- Gemfile.lock
|
|
25
|
+
- LICENSE.txt
|
|
26
|
+
- README.md
|
|
27
|
+
- Rakefile
|
|
28
|
+
- lib/biblehub.rb
|
|
29
|
+
- lib/biblehub/context/translation_titles.rb
|
|
30
|
+
- lib/biblehub/version.rb
|
|
31
|
+
- sig/biblehub.rbs
|
|
32
|
+
homepage: https://www.github.com/fakefarm/biblehub
|
|
33
|
+
licenses:
|
|
34
|
+
- MIT
|
|
35
|
+
metadata:
|
|
36
|
+
homepage_uri: https://www.github.com/fakefarm/biblehub
|
|
37
|
+
source_code_uri: https://www.github.com/fakefarm/biblehub
|
|
38
|
+
post_install_message:
|
|
39
|
+
rdoc_options: []
|
|
40
|
+
require_paths:
|
|
41
|
+
- lib
|
|
42
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - ">="
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: 2.6.0
|
|
47
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
48
|
+
requirements:
|
|
49
|
+
- - ">="
|
|
50
|
+
- !ruby/object:Gem::Version
|
|
51
|
+
version: '0'
|
|
52
|
+
requirements: []
|
|
53
|
+
rubygems_version: 3.3.3
|
|
54
|
+
signing_key:
|
|
55
|
+
specification_version: 4
|
|
56
|
+
summary: access Bible Hub
|
|
57
|
+
test_files: []
|