stacksondeck 1.3.0 → 1.3.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/Readme.md +18 -2
- data/VERSION +1 -1
- data/lib/stacksondeck/metadata.rb +2 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 52fe9101b44f8d3260e55ec254fcda6530b38cb0
|
|
4
|
+
data.tar.gz: f381ee28c640e8183e74c9912e77074bb6034603
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6f02ffa38424286b4c5b39801fc94f33d7c2241040804db59b2c06d3c102f9b7adb139304496609cefe0803b708f0607c86f7569ef9890158edd439826d6e402
|
|
7
|
+
data.tar.gz: 8d76a7726a6c9d824b028932e13ea1a2e2e25e9147e1b25852d4869ee0e7116a1280aaac99253daa62c27360689f97ed8af221f1b502454700b4a3fa4244de70
|
data/Readme.md
CHANGED
|
@@ -46,7 +46,6 @@ You're most likely inteterested in the `server` command:
|
|
|
46
46
|
# Default: name:*
|
|
47
47
|
-l, [--log=LOG] # Log to file instead of STDOUT
|
|
48
48
|
-v, [--debug], [--no-debug] # Enable DEBUG-level logging
|
|
49
|
-
-z, [--trace], [--no-trace] # Enable TRACE-level logging
|
|
50
49
|
|
|
51
50
|
Start application web server
|
|
52
51
|
|
|
@@ -81,7 +80,7 @@ command line.
|
|
|
81
80
|
|
|
82
81
|
Return the application version:
|
|
83
82
|
|
|
84
|
-
1.
|
|
83
|
+
1.3.0
|
|
85
84
|
|
|
86
85
|
(Yeah I lied when I said only one endpoint. Sue me.)
|
|
87
86
|
|
|
@@ -89,6 +88,23 @@ Return the application version:
|
|
|
89
88
|
|
|
90
89
|
## Changelog
|
|
91
90
|
|
|
91
|
+
#### v1.3.0
|
|
92
|
+
|
|
93
|
+
- New `--query` option
|
|
94
|
+
- Use latest Slog, no more `--trace` option
|
|
95
|
+
|
|
96
|
+
#### v1.2.3
|
|
97
|
+
|
|
98
|
+
- Reconnect on error
|
|
99
|
+
|
|
100
|
+
#### v1.2.2
|
|
101
|
+
|
|
102
|
+
- Capture exceptions during refresh
|
|
103
|
+
|
|
104
|
+
#### v1.2.1
|
|
105
|
+
|
|
106
|
+
- Prevent `nil` tags when none provided
|
|
107
|
+
|
|
92
108
|
#### v1.2.0
|
|
93
109
|
|
|
94
110
|
- Replace `tagfile` with more general `hints`
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.3.
|
|
1
|
+
1.3.1
|
|
@@ -25,7 +25,8 @@ module StacksOnDeck
|
|
|
25
25
|
VERSION = File.read(File.join(ROOT, 'VERSION')).strip
|
|
26
26
|
|
|
27
27
|
# Bundled extensions
|
|
28
|
-
|
|
28
|
+
TRAVELING_RUBY_BUCKET = 'http://d6r77u77i8pq3.cloudfront.net'
|
|
29
|
+
TRAVELING_RUBY_VERSION = '20150715-2.2.2'
|
|
29
30
|
THIN_VERSION = '1.6.3'
|
|
30
31
|
EM_VERSION = '1.0.4'
|
|
31
32
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stacksondeck
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sean Clemmer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-02-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|