pliny 0.16.1 → 0.16.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/lib/pliny/version.rb +1 -1
- data/lib/template/Gemfile +1 -1
- data/lib/template/app.json.erb +4 -0
- data/lib/template/lib/routes.rb +2 -1
- metadata +2 -3
- data/lib/template/config/initializers/rack_timeout.rb +0 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0eac932d9dd63eb309d53c1f1644f72c5e7f585b
|
|
4
|
+
data.tar.gz: 75977292981e3d87ac3dd2a1790e0ee5adac7641
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 996beea305d2e92b42a45544013b6f2a29d8a8bce29e1e9766860d4b0193bc7659fa6ce96bddb9b575bd93ac8ca29a4857a679d6f39f6aa999c8782da85b248f
|
|
7
|
+
data.tar.gz: e8cb10f633e948695d9856b02b5dfd0d680be70cfc4ed25d53ad1c99e16881a6e234daa2b6835604d38b664fb5e1da382aad73ee8123c076af07025d3a6f6051
|
data/lib/pliny/version.rb
CHANGED
data/lib/template/Gemfile
CHANGED
data/lib/template/app.json.erb
CHANGED
data/lib/template/lib/routes.rb
CHANGED
|
@@ -5,7 +5,8 @@ Routes = Rack::Builder.new do
|
|
|
5
5
|
use Pliny::Middleware::Instruments
|
|
6
6
|
use Pliny::Middleware::RescueErrors, raise: Config.raise_errors?
|
|
7
7
|
use Pliny::Middleware::RequestStore, store: Pliny::RequestStore
|
|
8
|
-
use Rack::Timeout
|
|
8
|
+
use Rack::Timeout,
|
|
9
|
+
service_timeout: Config.timeout if Config.timeout > 0
|
|
9
10
|
use Pliny::Middleware::Versioning,
|
|
10
11
|
default: Config.versioning_default,
|
|
11
12
|
app_name: Config.versioning_app_name if Config.versioning?
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pliny
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.16.
|
|
4
|
+
version: 0.16.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brandur Leach
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2016-
|
|
12
|
+
date: 2016-05-01 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: activesupport
|
|
@@ -404,7 +404,6 @@ files:
|
|
|
404
404
|
- lib/template/config/config.rb
|
|
405
405
|
- lib/template/config/initializers/database.rb
|
|
406
406
|
- lib/template/config/initializers/log.rb
|
|
407
|
-
- lib/template/config/initializers/rack_timeout.rb
|
|
408
407
|
- lib/template/config/initializers/rollbar.rb
|
|
409
408
|
- lib/template/config/puma.rb
|
|
410
409
|
- lib/template/db/schema.sql
|