panter-rails-deploy 1.0.5 → 1.0.6

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: 35e28569d20f75061ef0280b2117ce0d04c68e57
4
- data.tar.gz: 4a3161e560655eb4d73d97c3bab3f4b548a95bc5
3
+ metadata.gz: 8bcedbf15ea4ae698b66a5d478ea3e8a2c3c2007
4
+ data.tar.gz: c0f558c4d3f6c915429b6b301dc3a96ae27f1bb6
5
5
  SHA512:
6
- metadata.gz: 8aa398f9cc1d2ff60e1f22fe7600afb9e6256990098d981745c06aa1c7ccb8edac7ec321814cb179673a7d60cfc0c122240b008e438d85c81b8f80a3b1d2f83f
7
- data.tar.gz: 2d8617b46ebb69b90ad33184fd0fcedab6659cf9fc35a4d39f6ab2c48dab6118005a2855c9e04a99045dc4be4b9cbac9f0e29636546f84f5fa207e3ddcc40ddb
6
+ metadata.gz: f0b71b7e563b088c2276d568beb6756116c4bf2cd85e2564518624fe662d375e48045d197c3f7d60f7c340bd2c0d9a76271e2ce69a64ebc82dab3adadc507284
7
+ data.tar.gz: 5d7f05ce844d112939cb23792f840881ae0c3c6b48d38475006bf2f4e92a92e07713fb9e31e8a4681f2089464d3be8f72e2ec741e492cbc812d5830211d28bd4
data/.gitignore CHANGED
@@ -1,4 +1,5 @@
1
1
  /.bundle
2
+ /Gemfile.lock
2
3
  /Capfile
3
4
  /config
4
5
  /pkg
data/README.md CHANGED
@@ -12,14 +12,7 @@ This gem sets up everything you need to deploy your application on the Panter ra
12
12
 
13
13
  - Add to your Gemfile (global, not in a group):
14
14
  ```ruby
15
- # Rails with asset compilation
16
15
  gem 'panter-rails-deploy'
17
-
18
- # Rails without asset compilation
19
- gem 'panter-rails-deploy', require: 'panter-rails-deploy/without-assets'
20
-
21
- # Other Rack applications
22
- gem 'panter-rails-deploy', require: 'panter-rails-deploy/without-rails'
23
16
  ```
24
17
 
25
18
  - Capify your project (Bundler is required here, [rbenv-binstubs](https://github.com/ianheggie/rbenv-binstubs) is recommended):
@@ -27,7 +20,25 @@ This gem sets up everything you need to deploy your application on the Panter ra
27
20
  bundle exec cap install
28
21
  ```
29
22
 
30
- - Add `require 'panter-rails-deploy'` to `Capfile`
23
+ - Add one of these to your `Capfile` - below the line 'Include tasks from other gems included in your Gemfile':
24
+
25
+ For rails projects with asset compilation
26
+
27
+ ```ruby
28
+ require 'panter-rails-deploy'
29
+ ```
30
+
31
+ For rails projects without asset compilation
32
+
33
+ ```ruby
34
+ require 'panter-rails-deploy/without-assets'
35
+ ```
36
+
37
+ For other Rack applications
38
+
39
+ ```ruby
40
+ require 'panter-rails-deploy/without-rails'
41
+ ```
31
42
 
32
43
  - Set `:application` and `:repo_url` in `config/deploy.rb`
33
44
 
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |gem|
2
2
  gem.name = 'panter-rails-deploy'
3
- gem.version = '1.0.5'
3
+ gem.version = '1.0.6'
4
4
  gem.date = '2015-07-26'
5
5
  gem.summary = 'Capistrano setup for Panter Rails Hosting'
6
6
  gem.authors = [ 'Markus Koller', 'Beat Seeliger' ]
@@ -21,6 +21,11 @@ Gem::Specification.new do |gem|
21
21
  gem.add_dependency 'unicorn-rails'
22
22
  gem.add_dependency 'dotenv-rails'
23
23
 
24
+ # work around problem with sshkit 1.8.0,
25
+ # see https://github.com/capistrano/sshkit/issues/303
26
+ # and https://github.com/capistrano/rbenv/pull/59
27
+ gem.add_dependency 'sshkit', '~> 1.7.1'
28
+
24
29
  # Asset pipeline dependencies
25
30
  gem.add_dependency 'therubyracer'
26
31
  end
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.5
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Markus Koller
@@ -109,6 +109,20 @@ dependencies:
109
109
  - - ">="
110
110
  - !ruby/object:Gem::Version
111
111
  version: '0'
112
+ - !ruby/object:Gem::Dependency
113
+ name: sshkit
114
+ requirement: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - "~>"
117
+ - !ruby/object:Gem::Version
118
+ version: 1.7.1
119
+ type: :runtime
120
+ prerelease: false
121
+ version_requirements: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - "~>"
124
+ - !ruby/object:Gem::Version
125
+ version: 1.7.1
112
126
  - !ruby/object:Gem::Dependency
113
127
  name: therubyracer
114
128
  requirement: !ruby/object:Gem::Requirement
@@ -132,7 +146,6 @@ files:
132
146
  - ".gitignore"
133
147
  - ".ruby-version"
134
148
  - Gemfile
135
- - Gemfile.lock
136
149
  - LICENSE
137
150
  - README.md
138
151
  - Rakefile
data/Gemfile.lock DELETED
@@ -1,69 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- panter-rails-deploy (1.0.5)
5
- capistrano
6
- capistrano-bundler
7
- capistrano-rails
8
- capistrano-rbenv
9
- capistrano-rbenv-install
10
- dotenv-rails
11
- therubyracer
12
- unicorn-rails
13
-
14
- GEM
15
- remote: https://rubygems.org/
16
- specs:
17
- capistrano (3.4.0)
18
- i18n
19
- rake (>= 10.0.0)
20
- sshkit (~> 1.3)
21
- capistrano-bundler (1.1.4)
22
- capistrano (~> 3.1)
23
- sshkit (~> 1.2)
24
- capistrano-rails (1.1.3)
25
- capistrano (~> 3.1)
26
- capistrano-bundler (~> 1.1)
27
- capistrano-rbenv (2.0.3)
28
- capistrano (~> 3.1)
29
- sshkit (~> 1.3)
30
- capistrano-rbenv-install (1.2.0)
31
- capistrano (>= 3.0)
32
- capistrano-rbenv (>= 2.0)
33
- colorize (0.7.7)
34
- dotenv (2.0.1)
35
- dotenv-rails (2.0.1)
36
- dotenv (= 2.0.1)
37
- i18n (0.7.0)
38
- kgio (2.9.3)
39
- libv8 (3.16.14.7)
40
- net-scp (1.2.1)
41
- net-ssh (>= 2.6.5)
42
- net-ssh (2.9.2)
43
- rack (1.6.1)
44
- raindrops (0.13.0)
45
- rake (10.4.2)
46
- ref (1.0.5)
47
- sshkit (1.7.1)
48
- colorize (>= 0.7.0)
49
- net-scp (>= 1.1.2)
50
- net-ssh (>= 2.8.0)
51
- therubyracer (0.12.2)
52
- libv8 (~> 3.16.14.0)
53
- ref
54
- unicorn (4.9.0)
55
- kgio (~> 2.6)
56
- rack
57
- raindrops (~> 0.7)
58
- unicorn-rails (2.2.0)
59
- rack
60
- unicorn
61
-
62
- PLATFORMS
63
- ruby
64
-
65
- DEPENDENCIES
66
- panter-rails-deploy!
67
-
68
- BUNDLED WITH
69
- 1.10.5