capistrano3-puma 6.0.0.alpha.3 → 6.0.0.beta.1

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
  SHA256:
3
- metadata.gz: dc9d3b7a50af328c1bcfad01eb6ea87682d832f9374d28377af3fbb541822c10
4
- data.tar.gz: 33b973e9d091377a6b33081500837441c4f46e7d02ce5ea4cbe26fa5de9b8217
3
+ metadata.gz: 8d2f6376b7e7c2838e8d06d7acb249e7b4cca75982bd440e2ad8952f80941132
4
+ data.tar.gz: 24ca957bc88c4f06d7a11dea7c70b72f77ca275bc46a77b6eb44f98bc51b5a3e
5
5
  SHA512:
6
- metadata.gz: 1e52735bdd57312b44d904463ff0f4df530bff86f8d1f3d6fb88c0c64893104e071b299ea70fd2fbcb5d337e1b4bfa0bab3003c56ba0251173eca361ded38da9
7
- data.tar.gz: b04d88ed6d87ce4d63f83efefd0a8489f7db5dcb470d292f776fc385daf1341802a6ae24ea17653581e7b621fc6a0ebdb0150e68951d1844e6f8d9e4b87e9d60
6
+ metadata.gz: e0d445a032ad196fd65b8aa863c1fb049aec6f9e8f47f22cd2d05993555c354e110bfb397d1a001b6ee0b3cb9b19e38c3d6fe76bba47d5682b17992910a5717c
7
+ data.tar.gz: 9bba6960b9246b4877b02baa6339baf7a940caf16bcf54be2c0148850f96b7af1e68a07a97d03ac07bbc978275e1ea6ca44812587da942e176b674d230d2a88c
data/README.md CHANGED
@@ -42,12 +42,8 @@ To make it work with rvm, rbenv and chruby, install the plugin after correspondi
42
42
 
43
43
  ### Config
44
44
 
45
- To list available tasks use `cap -T`
46
-
47
-
48
- Ensure that `tmp/pids` and ` tmp/sockets log` are shared (via `linked_dirs`):
49
-
50
- `This step is mandatory before deploying, otherwise puma server won't start`
45
+ Puma configuration is expected to be in `config/puma.rb` or `config/puma/#{fetch(:puma_env)}.rb` and checked in your repository.
46
+ Uploading the configuration via capistrano was removed as it was causing problems with custom configurations.
51
47
 
52
48
  ## Example
53
49
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano3-puma
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.0.alpha.3
4
+ version: 6.0.0.beta.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Abdelkader Boudih
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-08 00:00:00.000000000 Z
11
+ date: 2022-10-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano
@@ -47,7 +47,7 @@ dependencies:
47
47
  version: '5.1'
48
48
  - - "<"
49
49
  - !ruby/object:Gem::Version
50
- version: '6.0'
50
+ version: '7.0'
51
51
  type: :runtime
52
52
  prerelease: false
53
53
  version_requirements: !ruby/object:Gem::Requirement
@@ -57,7 +57,7 @@ dependencies:
57
57
  version: '5.1'
58
58
  - - "<"
59
59
  - !ruby/object:Gem::Version
60
- version: '6.0'
60
+ version: '7.0'
61
61
  description: Puma integration for Capistrano 3
62
62
  email:
63
63
  - Terminale@gmail.com
@@ -71,7 +71,6 @@ files:
71
71
  - lib/capistrano/puma.rb
72
72
  - lib/capistrano/puma/nginx.rb
73
73
  - lib/capistrano/puma/systemd.rb
74
- - lib/capistrano/puma/version.rb
75
74
  - lib/capistrano/tasks/nginx.rake
76
75
  - lib/capistrano/tasks/systemd.rake
77
76
  - lib/capistrano/templates/nginx_conf.erb
@@ -1,5 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Capistrano
4
- PUMAVERSION = '6.0.0.alpha.3'
5
- end