panter-rails-deploy 1.0.3 → 1.0.4
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/Gemfile.lock +4 -1
- data/README.md +5 -4
- data/panter-rails-deploy.gemspec +3 -3
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c99b078708d79900f47b1475294f60ac11a9fbeb
|
|
4
|
+
data.tar.gz: a53ffdccd2a504a0a96a4fb7c65ea5a352cca524
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 341c650de389958f69f2583ef09f6aff0f535f551d3effc82e28383c6787a216b6d1d07ea8e7382074d9174fa123c3989f72d92cc77e617719c6b5bc807d39de
|
|
7
|
+
data.tar.gz: 4679fcf12245652f328aadb7f1c4fec6e44a6f32c8a759abce5e237427e0762fe121824214b6cfb626c4d4c17fe4a29fe1c7c1c0999d89a27ac697f646814465
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -6,17 +6,18 @@ This gem sets up everything you need to deploy your application on the Panter ra
|
|
|
6
6
|
- unicorn
|
|
7
7
|
- rbenv
|
|
8
8
|
- dotenv
|
|
9
|
+
- therubyracer
|
|
9
10
|
|
|
10
11
|
## How to use
|
|
11
12
|
|
|
12
|
-
- Add to your Gemfile:
|
|
13
|
+
- Add to your Gemfile (global, not in a group):
|
|
13
14
|
```ruby
|
|
14
15
|
gem 'panter-rails-deploy'
|
|
15
16
|
```
|
|
16
17
|
|
|
17
|
-
- Capify your project:
|
|
18
|
+
- Capify your project (Bundler is required here, [rbenv-binstubs](https://github.com/ianheggie/rbenv-binstubs) is recommended):
|
|
18
19
|
```sh
|
|
19
|
-
cap install
|
|
20
|
+
bundle exec cap install
|
|
20
21
|
```
|
|
21
22
|
|
|
22
23
|
- Add `require 'panter-rails-deploy'` to `Capfile`
|
|
@@ -32,7 +33,7 @@ This gem sets up everything you need to deploy your application on the Panter ra
|
|
|
32
33
|
|
|
33
34
|
- Profit:
|
|
34
35
|
```sh
|
|
35
|
-
cap production deploy
|
|
36
|
+
bundle exec cap production deploy
|
|
36
37
|
```
|
|
37
38
|
|
|
38
39
|
## dotenv setup
|
data/panter-rails-deploy.gemspec
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Gem::Specification.new do |gem|
|
|
2
2
|
gem.name = 'panter-rails-deploy'
|
|
3
|
-
gem.version = '1.0.
|
|
4
|
-
gem.date = '2015-
|
|
3
|
+
gem.version = '1.0.4'
|
|
4
|
+
gem.date = '2015-07-24'
|
|
5
5
|
gem.summary = 'Capistrano setup for Panter Rails Hosting'
|
|
6
6
|
gem.authors = [ 'Markus Koller', 'Beat Seeliger' ]
|
|
7
7
|
gem.email = 'mak@panter.ch'
|
|
8
8
|
gem.homepage = 'https://github.com/panter/panter-rails-deploy'
|
|
9
9
|
gem.license = 'Beerware'
|
|
10
|
-
gem.required_ruby_version = '>=
|
|
10
|
+
gem.required_ruby_version = '>= 1.9.0'
|
|
11
11
|
|
|
12
12
|
gem.files = `git ls-files`.split($/)
|
|
13
13
|
gem.require_paths = [ 'lib' ]
|
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.0.
|
|
4
|
+
version: 1.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Markus Koller
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2015-
|
|
12
|
+
date: 2015-07-24 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: capistrano
|
|
@@ -151,7 +151,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
151
151
|
requirements:
|
|
152
152
|
- - ">="
|
|
153
153
|
- !ruby/object:Gem::Version
|
|
154
|
-
version:
|
|
154
|
+
version: 1.9.0
|
|
155
155
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
156
156
|
requirements:
|
|
157
157
|
- - ">="
|