kithe 2.0.0 → 2.0.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/lib/kithe.rb +22 -20
- data/lib/kithe/version.rb +1 -1
- data/spec/dummy/log/test.log +6534 -0
- data/spec/models/kithe_spec.rb +10 -0
- metadata +4 -2
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
require 'rails_helper'
|
|
2
|
+
|
|
3
|
+
describe "Kithe module" do
|
|
4
|
+
describe "indexable_settings" do
|
|
5
|
+
it "gets writer_settings.logger set to Rails.logger" do
|
|
6
|
+
expect(Rails.logger).not_to be_nil
|
|
7
|
+
expect(Kithe.indexable_settings.writer_settings["logger"]).to be(Rails.logger)
|
|
8
|
+
end
|
|
9
|
+
end
|
|
10
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kithe
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jonathan Rochkind
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-06-
|
|
11
|
+
date: 2020-06-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -470,6 +470,7 @@ files:
|
|
|
470
470
|
- spec/models/kithe/parameters_spec.rb
|
|
471
471
|
- spec/models/kithe/representatives_spec.rb
|
|
472
472
|
- spec/models/kithe/work_spec.rb
|
|
473
|
+
- spec/models/kithe_spec.rb
|
|
473
474
|
- spec/rails_helper.rb
|
|
474
475
|
- spec/shrine/kithe_accept_remote_url_spec.rb
|
|
475
476
|
- spec/shrine/kithe_checksum_signatures_spec.rb
|
|
@@ -585,6 +586,7 @@ test_files:
|
|
|
585
586
|
- spec/models/kithe/parameters_spec.rb
|
|
586
587
|
- spec/models/kithe/asset_spec.rb
|
|
587
588
|
- spec/models/kithe/model_spec.rb
|
|
589
|
+
- spec/models/kithe_spec.rb
|
|
588
590
|
- spec/shrine/kithe_multi_cache_spec.rb
|
|
589
591
|
- spec/shrine/kithe_storage_location_spec.rb
|
|
590
592
|
- spec/shrine/kithe_persisted_derivatives_spec.rb
|