rearview 1.0.0.rc4-jruby → 1.0.0.rc5-jruby
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/generators/templates/rearview.rb +4 -5
- data/lib/rearview/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f9302a57c99850241502d598c73e07bcb66c92c
|
4
|
+
data.tar.gz: 645a35c1bdb78144a6e549ad5175a21d4b15fb43
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 175a4f7c3055743671fe211d32a8accda1e5e3768973882922bd135cd770416dcc0666cc86944e23e392e66bd545d96ad9aee788a59af25c2eaba28cda32e027
|
7
|
+
data.tar.gz: 4daa08c7949c2d70d57716edcb0ec205a24779939c68fa506a6f87c644147d51235e4791b394aea9b41e6ae603651d26238cd5f6222d04d66b22684850a60d7f
|
@@ -5,10 +5,10 @@ Rearview.configure do |config|
|
|
5
5
|
config.logger = Rails.logger
|
6
6
|
config.sandbox_dir = Rails.root + "sandbox"
|
7
7
|
|
8
|
-
# Configure the path to a ruby 1.9.3 binary that will be used to
|
8
|
+
# Configure the path to a ruby 1.9.3 binary that will be used to execute your
|
9
9
|
# monitor script in the sandbox.
|
10
10
|
# ex:
|
11
|
-
# config.sandbox_exec=["/opt/ruby-1.9.3/bin
|
11
|
+
# config.sandbox_exec = ["/bin/env","-i","PATH=/opt/ruby-1.9.3/bin", "bundle", "exec", "ruby"]
|
12
12
|
config.sandbox_exec = ["rvm-exec","ruby-1.9.3@rearview-sandbox","ruby"]
|
13
13
|
|
14
14
|
# How long to wait for a monitor script to run in seconds. After this time
|
@@ -27,9 +27,8 @@ Rearview.configure do |config|
|
|
27
27
|
when "test"
|
28
28
|
config.preload_jobs = false
|
29
29
|
when "production"
|
30
|
-
#
|
31
|
-
config.
|
32
|
-
config.verify = true
|
30
|
+
# If you want to make sure your configuration is correct on server startup
|
31
|
+
# config.verify = true
|
33
32
|
end
|
34
33
|
|
35
34
|
if File.basename($0) == "rake"
|
data/lib/rearview/version.rb
CHANGED