rearview 1.0.0.rc4-jruby → 1.0.0.rc5-jruby

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d349fc2e6c85e51c65e7424e27ac8f623f4c5e0e
4
- data.tar.gz: b69ec00109d4abd53e7aa59da7b0b2c6b3aa3b1b
3
+ metadata.gz: 8f9302a57c99850241502d598c73e07bcb66c92c
4
+ data.tar.gz: 645a35c1bdb78144a6e549ad5175a21d4b15fb43
5
5
  SHA512:
6
- metadata.gz: 2f247f074c4ad809e6df7ae1ecb9a5bf6fc7ebb1f149b575a96df95fb00b32f84b95aa3b342912c3c2c04ff276fd3adfc435a714c36ff6f93e7f0f71bc7d1747
7
- data.tar.gz: 4a74cf79235c5cad4297aa65ea50c3d50f72211a0893cf537aad0c6aa62a730116b197bdadf978a07b3897a524bca2c3ed48c60cc5883b035989ef1c4ae3292c
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 excute your
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/ruby"]
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
- # Monitor script excutable will likely be different in production.
31
- config.sandbox_exec = ["/bin/env","-i","PATH=/opt/ruby-1.9.3/bin", "bundle", "exec", "ruby"]
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"
@@ -1,3 +1,3 @@
1
1
  module Rearview
2
- VERSION = "1.0.0.rc4"
2
+ VERSION = "1.0.0.rc5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rearview
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.rc4
4
+ version: 1.0.0.rc5
5
5
  platform: jruby
6
6
  authors:
7
7
  - Trent Albright