sail 1.2.1 → 1.2.2
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/README.md +1 -0
- data/lib/sail/configuration.rb +2 -1
- data/lib/sail/engine.rb +15 -0
- data/lib/sail/version.rb +1 -1
- data/spec/dummy/log/test.log +5393 -0
- data/spec/dummy/tmp/cache/7FB/040/setting_get_setting +1 -0
- data/spec/dummy/tmp/cache/863/380/setting_get_whatever +1 -1
- data/spec/lib/configuration_spec.rb +1 -0
- metadata +4 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
o: ActiveSupport::Cache::Entry :@valueI"some value:ET:
|
|
@@ -1 +1 @@
|
|
|
1
|
-
o: ActiveSupport::Cache::Entry :@value0:
|
|
1
|
+
o: ActiveSupport::Cache::Entry :@value0:
|
|
@@ -7,6 +7,7 @@ describe Sail::Configuration, type: :lib do
|
|
|
7
7
|
it 'assigns the proper default values to configs' do
|
|
8
8
|
expect(subject.instance_variable_get(:@cache_life_span)).to eq(10.minutes)
|
|
9
9
|
expect(subject.instance_variable_get(:@array_separator)).to eq(';')
|
|
10
|
+
expect(subject.instance_variable_get(:@dashboard_auth_lambda)).to be_nil
|
|
10
11
|
end
|
|
11
12
|
end
|
|
12
13
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sail
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vinicius Stock
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-10-
|
|
11
|
+
date: 2018-10-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -261,6 +261,7 @@ files:
|
|
|
261
261
|
- spec/dummy/public/apple-touch-icon-precomposed.png
|
|
262
262
|
- spec/dummy/public/apple-touch-icon.png
|
|
263
263
|
- spec/dummy/public/favicon.ico
|
|
264
|
+
- spec/dummy/tmp/cache/7FB/040/setting_get_setting
|
|
264
265
|
- spec/dummy/tmp/cache/863/380/setting_get_whatever
|
|
265
266
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/-5/-5ZRf9Cj4Hlz__rslcXz2uv_ZbDxfcXOdgvm81qCGuM.cache
|
|
266
267
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/-7/-7q2qczyhUcrSLA-6AqS4UTHitXXN5C8UbsgXEyMwPU.cache
|
|
@@ -3127,6 +3128,7 @@ test_files:
|
|
|
3127
3128
|
- spec/dummy/db/development.sqlite3
|
|
3128
3129
|
- spec/dummy/log/test.log
|
|
3129
3130
|
- spec/dummy/log/development.log
|
|
3131
|
+
- spec/dummy/tmp/cache/7FB/040/setting_get_setting
|
|
3130
3132
|
- spec/dummy/tmp/cache/863/380/setting_get_whatever
|
|
3131
3133
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/3k/3kscqTAKI4Xjcpq3myH4mVtT5kzGJhiIqAvLpUIN2pU.cache
|
|
3132
3134
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/5R/5rLDIyaJq3JLSKdjxLJcSfatyUTCFzqqi61XG6NYpTo.cache
|