riddl 0.99.197 → 0.99.198
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/ruby/riddl/server.rb +1 -3
- data/riddl.gemspec +1 -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: b6b716944053cd0f1b4632586846e86ba49b2aaf
|
|
4
|
+
data.tar.gz: e845dd745ec0e9a3e5383b6c11a5c3d41223a627
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bd91591dbb82304cec50fce6ea9e95633b68860b05d9b2e15bd800ca34440c421092722e84fc644f5ca42e3779d6a4ced2e61c0f8c27483acee3c1ca2b0031c9
|
|
7
|
+
data.tar.gz: e7eb83e656158549e184f6aa1d423b49484266668d852db291899bd65076e5537bbbcfb299a574e21880b17d0cc3b34d824265556a6038e83bdf253646f686a7
|
data/lib/ruby/riddl/server.rb
CHANGED
|
@@ -62,7 +62,7 @@ module Riddl
|
|
|
62
62
|
operation = "start"
|
|
63
63
|
ARGV.options { |opt|
|
|
64
64
|
opt.summary_indent = ' ' * 4
|
|
65
|
-
opt.banner = "Usage:\n#{opt.summary_indent}ruby server.rb [options] start|stop|restart|info
|
|
65
|
+
opt.banner = "Usage:\n#{opt.summary_indent}ruby server.rb [options] start|stop|restart|info" + (@riddl_opts[:runtime_options].length > 0 ? '|' : '') + @riddl_opts[:runtime_options].map{|ro| ro[0]}.join('|') + "\n"
|
|
66
66
|
opt.on("Options:")
|
|
67
67
|
opt.on("--http-only", "-s", "Only http, no other protocols.") { http_only = true }
|
|
68
68
|
opt.on("--verbose", "-v", "Do not daemonize. Write ouput to console.") { verbose = true }
|
|
@@ -111,8 +111,6 @@ module Riddl
|
|
|
111
111
|
puts "Server (#{@riddl_opts[:url]}) already started"
|
|
112
112
|
exit
|
|
113
113
|
end
|
|
114
|
-
|
|
115
|
-
|
|
116
114
|
|
|
117
115
|
########################################################################################################################
|
|
118
116
|
# stop/restart server
|
data/riddl.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: riddl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.99.
|
|
4
|
+
version: 0.99.198
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Juergen eTM Mangler
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: tools
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-08-
|
|
11
|
+
date: 2015-08-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: xml-smart
|