luban-nginx 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ed1bf064362ed234bac91943e59480d05f7530f0
4
- data.tar.gz: e37e786a73e3153cd5de66da7d222ffb763c7faf
3
+ metadata.gz: 4dab1f390b5006e32b5c2da4bca3545e88c9e9ae
4
+ data.tar.gz: a8a1134e8a2ce9e796c4d8f3bbf33c93c031da4d
5
5
  SHA512:
6
- metadata.gz: 3ac9d9014d66d14f153a084b81403c96649f1949a6d3d455e5418d28c20c375248b59876fc4bcf55a9fb08e9ace74dd3f81dd12e2b0b6c92dd746b8047f65870
7
- data.tar.gz: 515d5ce78ece8122ed664cff6f5af8287c472b831e912034a18775aa0e12311510edfb5a7a21353d239f2577a19d6a7f1ac9d6c7fbf5024df54f51960414e25a
6
+ metadata.gz: 27e26c83b3129bfb375200e5dcea6a19d10aec8989727bb83cf8e1cc9aa41468ced1a13f9ff039e59b50ecbf9746b1a6f474f0c4903e3d01cb1967d4871b8724
7
+ data.tar.gz: 366bdc306fc467225ec728f95db742bb68ae65117da3b7b30e19124fa2b0196f26697cd542f8cd907dae8f49e7ab98ba1598aa39bd88cd1b6b89e786275e4398
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Change log
2
2
 
3
+ ## Version 0.1.3 (Jun 17, 2016)
4
+
5
+ Bug fixes:
6
+ * Fixed process matching pattern to grep the correct service process
7
+
3
8
  ## Version 0.1.2 (Jun 17, 2016)
4
9
 
5
10
  Bug fixes:
@@ -16,7 +16,10 @@ module Luban
16
16
  @nginx_command ||= "#{nginx_executable} -c #{control_file_path}"
17
17
  end
18
18
 
19
- alias_method :process_pattern, :nginx_command
19
+ def process_pattern
20
+ @process_pattern ||= "^nginx: master process #{nginx_command}"
21
+ end
22
+
20
23
  alias_method :start_command, :nginx_command
21
24
 
22
25
  def stop_command
@@ -2,7 +2,7 @@ module Luban
2
2
  module Deployment
3
3
  module Packages
4
4
  class Nginx
5
- VERSION = '0.1.2'
5
+ VERSION = '0.1.3'
6
6
  end
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: luban-nginx
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rubyist Chi