bible270 0.18.2 → 0.18.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 93a410e7fe7730dd0b5aad9f1d0c2532999545ebfae26af4694d0199876c86c9
4
- data.tar.gz: e1efd12217adfeaf0bc834173dd3dc0d582c6fe0075169ce1849b56158749f97
3
+ metadata.gz: 1717282682f9d19a378cd4416b50e5e3f3b63d110e855196042a6e090ed4bd92
4
+ data.tar.gz: '0812f617706046de930ba84e4cfb6747fc73195b79818a05db11ae0e29484f6b'
5
5
  SHA512:
6
- metadata.gz: 4665e5cdbe8e8ede757497e150e61b84255d6de40374f86cb043096336969ddd78053ff79ffecf61d19f7e5a5249c2999a79bf9e2bef8c30c1b4519883e6b63a
7
- data.tar.gz: 89c03692d0c1dc038ce33c7c421b1d825da81843fdca7ace1edefabfb7b727f5b7ff061b92f3c5dda8e1c7c14c171904dee3142e3b61927eac4a0fad86b57609
6
+ metadata.gz: 4d1fa7576be664152a2a64e5af1749e39d77fb6b7cd26ca5198a5017727c160e4a413a6337b4c222e7bf727a037fbcb56ea21972034712cf4da087e93e0a8636
7
+ data.tar.gz: 89223b4dd7dbed64af6b4e4d90cbd3bb0e6b74c85b9b0b56baf64c9d8aa833710325965d43067a89dac67b754ad87bf192cc49a7996e2066daf0e3b82b164b36
data/CHANGELOG.md CHANGED
@@ -6,7 +6,20 @@ All notable changes to bible270. Format follows [Keep a Changelog](https://keepa
6
6
 
7
7
  See the changes since the last release:
8
8
 
9
- **[Full Changelog](https://github.com/avonderluft/bible270/compare/v0.18.1...main)**
9
+ **[Full Changelog](https://github.com/avonderluft/bible270/compare/v0.18.2...main)**
10
+
11
+ ## [0.18.2] - 2026-08-15
12
+
13
+ ### Added
14
+
15
+ - Young's Literal Translation (`YLT`) as a Bible Gateway and Blue Letter Bible reading option
16
+
17
+ ### Changed
18
+
19
+ - summarize reflection likes with one heart and a count, with all liker names displayed in a one-name-per-row tooltip
20
+ - keep the reflection heart red while at least one like remains
21
+
22
+ **[Full Changelog](https://github.com/avonderluft/bible270/compare/v0.18.1...v0.18.2)**
10
23
 
11
24
  ## [0.18.1] - 2026-08-12
12
25
 
@@ -413,6 +426,7 @@ This is the initial public release.
413
426
 
414
427
  * Email sign-in requires working Action Mailer delivery in the host application. Set `config.mailer_from`; delivery is inline by default, or set `email_sign_in_deliver_later` when a queue backend is available.
415
428
 
429
+ [0.18.2]: https://github.com/avonderluft/bible270/releases/tag/v0.18.2
416
430
  [0.18.1]: https://github.com/avonderluft/bible270/releases/tag/v0.18.1
417
431
  [0.18.0]: https://github.com/avonderluft/bible270/releases/tag/v0.18.0
418
432
  [0.17.2]: https://github.com/avonderluft/bible270/releases/tag/v0.17.2
data/Rakefile CHANGED
@@ -3,6 +3,16 @@
3
3
  require 'bundler/gem_tasks' # provides build / install / release
4
4
  require 'rake/testtask'
5
5
 
6
+ desc 'Normalize permissions for files included in the gem'
7
+ task :normalize_gem_permissions do
8
+ spec = Gem::Specification.load('bible270.gemspec')
9
+ spec.files.each do |path|
10
+ File.chmod(0o644, path) if File.file?(path)
11
+ end
12
+ end
13
+
14
+ Rake::Task[:build].enhance([:normalize_gem_permissions])
15
+
6
16
  Rake::TestTask.new(:test) do |t|
7
17
  t.libs << 'test' << 'lib'
8
18
  t.pattern = 'test/**/*_test.rb'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Bible270
4
- VERSION = '0.18.2'
4
+ VERSION = '0.18.3'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bible270
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.2
4
+ version: 0.18.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew vonderLuft