procman 1.7.3 → 1.8.0

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.
data/lib/proc_man.rb CHANGED
@@ -4,7 +4,7 @@ require 'proc_man/constraint'
4
4
 
5
5
  module ProcMan
6
6
 
7
- VERSION = '1.7.3'
7
+ VERSION = '1.8.0'
8
8
 
9
9
  class Error < StandardError; end
10
10
 
@@ -79,9 +79,9 @@ module ProcMan
79
79
  # A shortcut method for defining a set of RBG processes
80
80
  def rbg(options = {})
81
81
  options[:config_file] ||= "Rbgfile"
82
- start { run("bundle exec rbg start -c #{root}/#{options[:config_file]} -E #{environment}") }
83
- stop { run("bundle exec rbg stop -c #{root}/#{options[:config_file]} -E #{environment}") }
84
- restart { run("bundle exec rbg restart -c #{root}/#{options[:config_file]} -E #{environment}") }
82
+ start { run("rbg start -c #{root}/#{options[:config_file]} -E #{environment}") }
83
+ stop { run("rbg stop -c #{root}/#{options[:config_file]} -E #{environment}") }
84
+ restart { run("rbg restart -c #{root}/#{options[:config_file]} -E #{environment}") }
85
85
  end
86
86
 
87
87
  # A shortcut method for defining a unicorn
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: procman
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.3
4
+ version: 1.8.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-02-22 00:00:00.000000000 Z
12
+ date: 2014-03-08 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: A very very simple library for starting/stopping/restarting processes
15
15
  for a Ruby application