vlad-unicorn 2.1.0 → 2.1.1

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.
Files changed (4) hide show
  1. data/History.txt +6 -0
  2. data/Rakefile +2 -0
  3. data/lib/vlad/unicorn_common.rb +2 -2
  4. metadata +26 -12
data/History.txt CHANGED
@@ -1,3 +1,9 @@
1
+ === 2.1.1 / 2011-12-28
2
+
3
+ * 1 bug fix
4
+
5
+ * Allow complex commands in unicorn_command (Matthew Smith)
6
+
1
7
  === 2.1.0 / 2011-09-30
2
8
 
3
9
  * 1 minor enhancement
data/Rakefile CHANGED
@@ -11,6 +11,8 @@ Hoe.spec 'vlad-unicorn' do
11
11
  extra_deps << ['vlad', '~> 2.0']
12
12
  clean_globs << '.yardoc'
13
13
  self.hg_release_tag_prefix = 'v'
14
+ rdoc_locations <<
15
+ "rubyforge.org:/var/www/gforge-projects/hitsquad/#{remote_rdoc_dir}"
14
16
  end
15
17
 
16
18
  # vim: syntax=ruby
@@ -2,7 +2,7 @@ require 'vlad'
2
2
 
3
3
  module Vlad
4
4
  module Unicorn
5
- VERSION = '2.1.0' #:nodoc:
5
+ VERSION = '2.1.1' #:nodoc:
6
6
 
7
7
  # Runs +cmd+ using sudo if the +:unicorn_use_sudo+ variable is set.
8
8
  def self.maybe_sudo(cmd)
@@ -19,7 +19,7 @@ module Vlad
19
19
 
20
20
  def self.start(opts = '')
21
21
  cmd = signal('HUP')
22
- cmd << %( || #{unicorn_command} -D --config-file #{unicorn_config} #{opts})
22
+ cmd << %( || (#{unicorn_command} -D --config-file #{unicorn_config} #{opts}))
23
23
  maybe_sudo %(sh -c '#{cmd}')
24
24
  end
25
25
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vlad-unicorn
3
3
  version: !ruby/object:Gem::Version
4
- hash: 11
4
+ hash: 9
5
5
  prerelease:
6
6
  segments:
7
7
  - 2
8
8
  - 1
9
- - 0
10
- version: 2.1.0
9
+ - 1
10
+ version: 2.1.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Kevin R. Bullock
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-09-30 00:00:00 Z
18
+ date: 2012-02-01 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: vlad
@@ -33,21 +33,35 @@ dependencies:
33
33
  type: :runtime
34
34
  version_requirements: *id001
35
35
  - !ruby/object:Gem::Dependency
36
- name: hoe
36
+ name: rdoc
37
37
  prerelease: false
38
38
  requirement: &id002 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
- - - ">="
41
+ - - ~>
42
42
  - !ruby/object:Gem::Version
43
- hash: 35
43
+ hash: 19
44
44
  segments:
45
- - 2
46
- - 9
47
- - 4
48
- version: 2.9.4
45
+ - 3
46
+ - 10
47
+ version: "3.10"
49
48
  type: :development
50
49
  version_requirements: *id002
50
+ - !ruby/object:Gem::Dependency
51
+ name: hoe
52
+ prerelease: false
53
+ requirement: &id003 !ruby/object:Gem::Requirement
54
+ none: false
55
+ requirements:
56
+ - - ~>
57
+ - !ruby/object:Gem::Version
58
+ hash: 25
59
+ segments:
60
+ - 2
61
+ - 13
62
+ version: "2.13"
63
+ type: :development
64
+ version_requirements: *id003
51
65
  description: |-
52
66
  Unicorn app server support for Vlad. Adds support for vlad:start_app and
53
67
  vlad:stop_app using Unicorn[http://unicorn.bogomips.org/].
@@ -104,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
104
118
  requirements: []
105
119
 
106
120
  rubyforge_project: hitsquad
107
- rubygems_version: 1.8.9
121
+ rubygems_version: 1.8.15
108
122
  signing_key:
109
123
  specification_version: 3
110
124
  summary: Unicorn app server support for Vlad