mina-puma 0.0.4 → 0.0.5

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: cbaa9a26502d11036a2175bb69eb4fcd9ddd7af4
4
- data.tar.gz: 2d0deb57a55ac4647805cf2d4847166e4b6eae2c
3
+ metadata.gz: 13a02952c20112fe90fea09fbfe7bb19643d4229
4
+ data.tar.gz: 61481a3b23aa910fa02a51a12b60106586a622a6
5
5
  SHA512:
6
- metadata.gz: 207845f6a4ba40fac72dfef5ceedeaf0dc6a1e45e3f1ac42fd782f51fa01725d8d9ea45825efa9219d5cd3d4f7114c47325f1710aaadfa5372d4f3d9520fe9d4
7
- data.tar.gz: e4a2182154ee67a880a682f4bbd8bcb4367a57bba95749cd3ff6bc7cc513f6d5149ff2b04221324074274547228cee897a460c7998151307eedf3cfb1987832a
6
+ metadata.gz: a3f525821c96e3dd497bcb5eaeaa1955e898c7c95c60f368aeb2d30d0c66d52345843a2aef3c8ac2755435e4bf06da319fbaab1ee50cbf42485cfeee818ef699
7
+ data.tar.gz: f25d35111cd2c192d161a1616c19d40f9d3f3a6f8b90571ca05e6b04173302ccf70111bcdfc71003f1d5442bc2dfe5e7bb4aaa0dc7a344ecfb64664978c076b3
data/README.md CHANGED
@@ -40,6 +40,12 @@ Add this line to your application's Gemfile:
40
40
  end
41
41
  end
42
42
 
43
+ Available commands:
44
+
45
+ mina puma:start
46
+ mina puma:stop
47
+ mina puma:restart
48
+
43
49
  Default settings:
44
50
 
45
51
  set :puma_pid, "#{deploy_to}/#{shared_path}/tmp/pids/puma.pid"
@@ -28,7 +28,7 @@ set_default :puma_socket, -> { "#{deploy_to}/#{shared_path}/tmp/sockets/puma.soc
28
28
  namespace :puma do
29
29
  desc 'Start puma'
30
30
  task start: :environment do
31
- queue %[cd #{app} && bundle exec puma -q -d -e #{rails_env} -b unix://#{puma_socket} --pidfile #{puma_pid}]
31
+ queue %[cd #{deploy_to}/#{current_path} && bundle exec puma -q -d -e #{rails_env} -b unix://#{puma_socket} --pidfile #{puma_pid}]
32
32
  end
33
33
 
34
34
  desc 'Stop puma'
@@ -1,5 +1,5 @@
1
1
  module Mina
2
2
  module Puma
3
- VERSION = "0.0.4"
3
+ VERSION = "0.0.5"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mina-puma
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tobias Sandelius
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-11-29 00:00:00.000000000 Z
11
+ date: 2013-12-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mina