nezu 0.6.67 → 0.6.68
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +2 -0
- data/Gemfile.lock +20 -19
- data/VERSION +1 -1
- data/lib/nezu/cli.rb +2 -2
- metadata +2 -2
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
nezu (0.
|
4
|
+
nezu (0.6.67)
|
5
5
|
activerecord (~> 3.2.11)
|
6
6
|
activesupport (~> 3.2.11)
|
7
7
|
amqp
|
@@ -24,35 +24,34 @@ GEM
|
|
24
24
|
activesupport (3.2.13)
|
25
25
|
i18n (= 0.6.1)
|
26
26
|
multi_json (~> 1.0)
|
27
|
-
amq-client (1.0.
|
27
|
+
amq-client (1.0.2)
|
28
28
|
amq-protocol (>= 1.2.0)
|
29
29
|
eventmachine
|
30
|
-
amq-protocol (1.
|
31
|
-
amqp (1.0.
|
32
|
-
amq-client (~> 1.0.
|
30
|
+
amq-protocol (1.6.0)
|
31
|
+
amqp (1.0.2)
|
32
|
+
amq-client (~> 1.0.2)
|
33
33
|
amq-protocol (>= 1.3.0)
|
34
34
|
eventmachine
|
35
35
|
arel (3.0.2)
|
36
36
|
builder (3.0.4)
|
37
|
-
bunny (0.9.0.
|
38
|
-
amq-protocol (>= 1.
|
37
|
+
bunny (0.9.0.pre13)
|
38
|
+
amq-protocol (>= 1.6.0)
|
39
39
|
columnize (0.3.6)
|
40
40
|
configatron (2.10.0)
|
41
41
|
yamler (>= 0.1.0)
|
42
|
-
debugger (1.
|
42
|
+
debugger (1.6.0)
|
43
43
|
columnize (>= 0.3.1)
|
44
|
-
debugger-linecache (~> 1.
|
45
|
-
debugger-ruby_core_source (~> 1.2.
|
46
|
-
debugger-linecache (1.
|
47
|
-
|
48
|
-
|
49
|
-
diff-lcs (1.2.1)
|
44
|
+
debugger-linecache (~> 1.2.0)
|
45
|
+
debugger-ruby_core_source (~> 1.2.1)
|
46
|
+
debugger-linecache (1.2.0)
|
47
|
+
debugger-ruby_core_source (1.2.2)
|
48
|
+
diff-lcs (1.2.4)
|
50
49
|
eventmachine (1.0.3)
|
51
50
|
i18n (0.6.1)
|
52
|
-
json (1.
|
53
|
-
multi_json (1.7.
|
51
|
+
json (1.8.0)
|
52
|
+
multi_json (1.7.6)
|
54
53
|
mysql2 (0.3.11)
|
55
|
-
rake (10.0.
|
54
|
+
rake (10.0.4)
|
56
55
|
rdoc (3.12.2)
|
57
56
|
json (~> 1.4)
|
58
57
|
rspec (2.13.0)
|
@@ -62,11 +61,13 @@ GEM
|
|
62
61
|
rspec-core (2.13.1)
|
63
62
|
rspec-expectations (2.13.0)
|
64
63
|
diff-lcs (>= 1.1.3, < 2.0)
|
65
|
-
rspec-mocks (2.13.
|
64
|
+
rspec-mocks (2.13.1)
|
66
65
|
sdoc (0.3.20)
|
67
66
|
json (>= 1.1.3)
|
68
67
|
rdoc (~> 3.10)
|
69
|
-
term-ansicolor (1.
|
68
|
+
term-ansicolor (1.2.2)
|
69
|
+
tins (~> 0.8)
|
70
|
+
tins (0.8.0)
|
70
71
|
tzinfo (0.3.37)
|
71
72
|
yamler (0.1.0)
|
72
73
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.6.
|
1
|
+
0.6.68
|
data/lib/nezu/cli.rb
CHANGED
@@ -16,9 +16,9 @@ module Nezu
|
|
16
16
|
require 'nezu/runner'
|
17
17
|
Nezu::Runtime.load_config
|
18
18
|
if params[:daemon]
|
19
|
+
$stdout=File.open(Nezu.root.join('log', 'nezu.stdout'), File::CREAT|File::WRONLY)
|
20
|
+
$stderr=File.open(Nezu.root.join('log', 'nezu.stderr'), File::CREAT|File::WRONLY)
|
19
21
|
fork do
|
20
|
-
$stdout=File.open(Nezu.root.join('log', 'nezu.stdout'), File::CREAT|File::WRONLY)
|
21
|
-
$stderr=File.open(Nezu.root.join('log', 'nezu.stderr'), File::CREAT|File::WRONLY)
|
22
22
|
Nezu::Runner.start
|
23
23
|
end
|
24
24
|
else
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nezu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.68
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2013-06-
|
13
|
+
date: 2013-06-12 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: amqp
|