openteam-capistrano 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/openteam/capistrano/deploy.rb +1 -0
- data/lib/openteam/capistrano/sidekiq.rb +1 -0
- data/openteam-capistrano.gemspec +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e396837003e63814d481e082e42e7983b00fa73
|
4
|
+
data.tar.gz: 1d2833aaf177d1bca820e7ea3d3badf313c5cb91
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d8654e116ade1f28da96fdd97ac930dfdc68a572fde44c45b333cea7849b2682c585279b7549a70e11e11780c8cf48c4358b0997de1f1cfae4bbd2018f3b93c9
|
7
|
+
data.tar.gz: 5aadb3fc5a8ab598c2b402e810ca6279ca423d2db760dd96cf34810631efe02e26e4ebb60a95a8cf72683fe978422044e32394ca66a6cc0d3ff49136c516cf75
|
@@ -5,6 +5,7 @@ if fetch(:stage)
|
|
5
5
|
require 'openteam/capistrano/app_config'
|
6
6
|
require 'openteam/capistrano/git'
|
7
7
|
require 'openteam/capistrano/hooks'
|
8
|
+
require 'openteam/capistrano/sidekiq' if used_sidekiq?
|
8
9
|
require 'openteam/capistrano/shared'
|
9
10
|
require 'openteam/capistrano/ssh'
|
10
11
|
require 'openteam/capistrano/tagging'
|
@@ -0,0 +1 @@
|
|
1
|
+
set :sidekiq_options, '-C config/sidekiq.yml'
|
data/openteam-capistrano.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |gem|
|
6
6
|
gem.name = 'openteam-capistrano'
|
7
|
-
gem.version = '1.0.
|
7
|
+
gem.version = '1.0.3'
|
8
8
|
gem.authors = ["OpenTeam developers"]
|
9
9
|
gem.email = ["developers@openteam.ru"]
|
10
10
|
gem.description = %q{OpenTeam common capistrano3 recipe}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: openteam-capistrano
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenTeam developers
|
@@ -148,6 +148,7 @@ files:
|
|
148
148
|
- lib/openteam/capistrano/helpers.rb
|
149
149
|
- lib/openteam/capistrano/hooks.rb
|
150
150
|
- lib/openteam/capistrano/shared.rb
|
151
|
+
- lib/openteam/capistrano/sidekiq.rb
|
151
152
|
- lib/openteam/capistrano/ssh.rb
|
152
153
|
- lib/openteam/capistrano/tagging.rb
|
153
154
|
- lib/openteam/capistrano/tasks.rb
|