norikra 1.0.3-java → 1.0.4-java
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/norikra/server.rb +5 -0
- data/lib/norikra/version.rb +1 -1
- data/norikra.gemspec +2 -2
- metadata +4 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1ce8a8150bb6cbe05216febc333446432d42865e
|
|
4
|
+
data.tar.gz: 1af0f92f1dbde76cdf1f3647f324cb268c2e08a6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 13411deed106009ffc5e7006998213c6a2827c920de934a50254b35fca0adeae2bce86a888ea0b500339f84720973c1e25a6107769f2511d22a94e0ac47e80bc
|
|
7
|
+
data.tar.gz: c8735a94f2fe9e435418d23ce630ae7775e2db0e3a3934a7bdc564fb370aa84edcc5ad9e1850163e452fc3ed8a1a602baa46a7d6f45af544546dbec873d2623c
|
data/lib/norikra/server.rb
CHANGED
|
@@ -102,6 +102,11 @@ module Norikra
|
|
|
102
102
|
info "thread configurations", @thread_conf
|
|
103
103
|
info "logging configurations", @log_conf
|
|
104
104
|
|
|
105
|
+
unless @stats_path
|
|
106
|
+
warn "status file path (--stats) NOT specified"
|
|
107
|
+
warn "TARGETS AND QUERIES WILL NOT BE SAVED ON SHUTDOWN !"
|
|
108
|
+
end
|
|
109
|
+
|
|
105
110
|
@typedef_manager = Norikra::TypedefManager.new
|
|
106
111
|
@output_pool = Norikra::OutputPool.new
|
|
107
112
|
|
data/lib/norikra/version.rb
CHANGED
data/norikra.gemspec
CHANGED
|
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = Norikra::VERSION
|
|
9
9
|
spec.authors = ["TAGOMORI Satoshi"]
|
|
10
10
|
spec.email = ["tagomoris@gmail.com"]
|
|
11
|
-
spec.summary = %q{
|
|
12
|
-
spec.description = %q{
|
|
11
|
+
spec.summary = %q{Schema-less stream processing server with SQL}
|
|
12
|
+
spec.description = %q{Norikra is a open source server software provides "Schema-les Stream Processing" with SQL, written in JRuby, runs on JVM, licensed under GPLv2.}
|
|
13
13
|
spec.homepage = "http://norikra.github.io/"
|
|
14
14
|
spec.license = "GPLv2"
|
|
15
15
|
spec.platform = "java"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: norikra
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.4
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- TAGOMORI Satoshi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-07-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: mizuno
|
|
@@ -192,8 +192,7 @@ dependencies:
|
|
|
192
192
|
version: '0'
|
|
193
193
|
prerelease: false
|
|
194
194
|
type: :development
|
|
195
|
-
description:
|
|
196
|
-
rpc for inbound event data'
|
|
195
|
+
description: Norikra is a open source server software provides "Schema-les Stream Processing" with SQL, written in JRuby, runs on JVM, licensed under GPLv2.
|
|
197
196
|
email:
|
|
198
197
|
- tagomoris@gmail.com
|
|
199
198
|
executables:
|
|
@@ -309,7 +308,7 @@ rubyforge_project:
|
|
|
309
308
|
rubygems_version: 2.1.9
|
|
310
309
|
signing_key:
|
|
311
310
|
specification_version: 4
|
|
312
|
-
summary:
|
|
311
|
+
summary: Schema-less stream processing server with SQL
|
|
313
312
|
test_files:
|
|
314
313
|
- spec/engine_spec.rb
|
|
315
314
|
- spec/field_spec.rb
|