panter-rails-deploy 1.2.1 → 1.3.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.
- checksums.yaml +4 -4
- data/README.md +7 -1
- data/panter-rails-deploy.gemspec +2 -2
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f517c03daaf74f3d0e84528bd8af3bf69e6fc56f
|
4
|
+
data.tar.gz: 38ccdb046229378e0854b9010412b5b5eede223e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f0ea3b6208cd34179b5512053232b48a0bbb746b2408e7a8a9e50c5258aa58ce53bc7a20a55c6069caed33d376222fac9ecce1f13b91d23c58a40cb2e496cda
|
7
|
+
data.tar.gz: d00cd1a847ee56902e51ceddd794af728dbbc5fba10145f29b963637b01b2c22da3bf1e5a546c003166c1552327f1c21babba4fee8e4595d5ae0cfa86c94698e
|
data/README.md
CHANGED
@@ -18,6 +18,12 @@ This gem sets up everything you need to deploy your application on the Panter Ra
|
|
18
18
|
gem 'panter-rails-deploy'
|
19
19
|
```
|
20
20
|
|
21
|
+
**Note:** Also remove these gems if already present:
|
22
|
+
- `unicorn`, `unicorn-rails`
|
23
|
+
- `dotenv`, `dotenv-rails`
|
24
|
+
- `capistrano`, `capistrano-ext`, `capistrano-rails`, `capistrano-bundler`, `capistrano-rbenv`
|
25
|
+
- `therubyracer`
|
26
|
+
|
21
27
|
- Capify your project (`bundle exec` is required here, unless you use [rbenv-binstubs](https://github.com/ianheggie/rbenv-binstubs)):
|
22
28
|
```sh
|
23
29
|
bundle exec cap install
|
@@ -80,7 +86,7 @@ Using `dotenv` is the [recommended approach](http://12factor.net/config) to stor
|
|
80
86
|
|
81
87
|
- Update `config/deploy.rb` to symlink the `.env` file during deploy:
|
82
88
|
```ruby
|
83
|
-
|
89
|
+
append :linked_files, '.env'
|
84
90
|
```
|
85
91
|
|
86
92
|
- The `fetch(..., []).push(...)` approach is needed for `:linked_files` and `:linked_dirs` to keep the values added by this Gem
|
data/panter-rails-deploy.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |gem|
|
2
2
|
gem.name = 'panter-rails-deploy'
|
3
|
-
gem.version = '1.
|
3
|
+
gem.version = '1.3.0'
|
4
4
|
gem.date = '2016-07-26'
|
5
5
|
gem.summary = 'Capistrano setup for Panter Rails Hosting'
|
6
6
|
gem.authors = [ 'Markus Koller', 'Beat Seeliger' ]
|
@@ -13,7 +13,7 @@ Gem::Specification.new do |gem|
|
|
13
13
|
gem.require_paths = [ 'lib' ]
|
14
14
|
|
15
15
|
# Deployment dependencies
|
16
|
-
gem.add_dependency 'capistrano'
|
16
|
+
gem.add_dependency 'capistrano', '~> 3.5.0'
|
17
17
|
gem.add_dependency 'capistrano-rails'
|
18
18
|
gem.add_dependency 'capistrano-bundler'
|
19
19
|
gem.add_dependency 'capistrano-rbenv'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: panter-rails-deploy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Markus Koller
|
@@ -15,16 +15,16 @@ dependencies:
|
|
15
15
|
name: capistrano
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
requirements:
|
18
|
-
- - "
|
18
|
+
- - "~>"
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version:
|
20
|
+
version: 3.5.0
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
|
-
- - "
|
25
|
+
- - "~>"
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version:
|
27
|
+
version: 3.5.0
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: capistrano-rails
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|