capistrano-withrsync 0.2.3 → 0.3.0

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
  SHA1:
3
- metadata.gz: 9024bc30f23503a0351a2d4d6ede53fc4e522a95
4
- data.tar.gz: 3d65c63d21ded7fd3761b5a4b4f9d496eb319d68
3
+ metadata.gz: e914dea8833e6a83af5e82fb5d7aba04ab46dadf
4
+ data.tar.gz: 87a3f98efed37250ea99fbc48016c0771b57703a
5
5
  SHA512:
6
- metadata.gz: 2b6021dcf6c61af1f934e4c6a59dcc4df584b65a54d4f240b4016e25ded50cd181740c4fa0ef786d950cf364c09abc151c4bec724c2557bec89d5776d1429463
7
- data.tar.gz: 4ff0d05aff67bd0a99369854948d1460796744b1b09fd1c2f5468caa6694a99e42b5897e221102546c565195077017fef4b44b172cfeb0bd3502a810c327c15f
6
+ metadata.gz: 7124b61fa02246e086a4b9ebdae8a79a016680f30856f2e9560c1abf5866b4a904e89ffc739f46a22dd4f54ed09163ab1305fc90360f39a272d75faaaab47c2b
7
+ data.tar.gz: 46b79ecfec6df21a42e37c2ac7c831d092708313e897caff2b5d42e21834105e21af70eda884ce294f92e75880cf887ca11862d5e157dc9ade5c801e50fb3e5f
data/README.md CHANGED
@@ -4,11 +4,9 @@ Capistrano with Rsync
4
4
  Capistrano with rsync to deployment hosts from local repository.
5
5
 
6
6
  [![Gem version](https://img.shields.io/gem/v/capistrano-withrsync.svg?style=flat-square)][gem]
7
- [![Wercker](https://img.shields.io/wercker/ci/54e13fa93e143292231f6e0a.svg?style=flat-square)][wercker]
8
7
 
9
8
  [capistrano]: https://github.com/capistrano/capistrano
10
9
  [gem]: https://rubygems.org/gems/capistrano-withrsync
11
- [wercker]: https://app.wercker.com/project/bykey/195d63561202a1415822a18e0fd35994
12
10
 
13
11
  Requirements
14
12
  ------------
@@ -85,7 +85,8 @@ namespace :rsync do
85
85
 
86
86
  desc 'Sync to deployment hosts from local'
87
87
  task sync: :'rsync:stage' do
88
- release_roles(:all).each do |server|
88
+ servers = Capistrano::Configuration.env.filter(release_roles(:all))
89
+ servers.each do |server|
89
90
  run_locally do
90
91
  user = "#{server.user}@" if !server.user.nil?
91
92
  rsync_options = "#{fetch(:rsync_options).join(' ')}"
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module Withrsync
3
- VERSION = '0.2.3'
3
+ VERSION = '0.3.0'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-withrsync
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - linyows
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-02 00:00:00.000000000 Z
11
+ date: 2017-02-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano
@@ -73,7 +73,6 @@ files:
73
73
  - lib/capistrano/withrsync/version.rb
74
74
  - spec/helper.rb
75
75
  - spec/task_spec.rb
76
- - wercker.yml
77
76
  homepage: https://github.com/linyows/capistrano-withrsync
78
77
  licenses:
79
78
  - MIT
@@ -94,7 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
94
93
  version: '0'
95
94
  requirements: []
96
95
  rubyforge_project:
97
- rubygems_version: 2.4.5
96
+ rubygems_version: 2.5.1
98
97
  signing_key:
99
98
  specification_version: 4
100
99
  summary: Capistrano with rsync
@@ -1,14 +0,0 @@
1
- box: wercker/rvm
2
- build:
3
- steps:
4
- - rvm-use:
5
- version: ruby-2.3.0
6
- - bundle-install
7
- - script:
8
- name: rspec
9
- code: bundle exec rspec
10
-
11
- after-steps:
12
- - linyows/slack_notification:
13
- token: $SLACK_TOKEN
14
- channel: C02FCHEQH