capistrano-bundle_rsync 0.4.7 → 0.4.8

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: 2f014be48949a6735ed744c4795e659db58a096a
4
- data.tar.gz: e8038d006efc199865f7d069a26694b2bf777c44
3
+ metadata.gz: 3c0c8651abf14f451f737192b9c7c01b629d1632
4
+ data.tar.gz: b2931092137c80806f698f832a524f42ea5eeddc
5
5
  SHA512:
6
- metadata.gz: 872b6b0c2ecff6fe231c3ad816c0b91982d1df2ecb4e1e71dd983b09704d0ee082905f3ecf8e1b826777cb66f0a4074b2ac090e854ec15a7bb81ace30d9c54ee
7
- data.tar.gz: dd0b47db60be4ae962c11c2bfca06fa2819669c28f64c179e6c677fa6cc3b3457be478247d474b92266296f8c55406d63c9e9201e4bf77e05b46574f9751dd33
6
+ metadata.gz: 072564e65047116693817e4b686f24f4d0af169477aef403c137004d828168ad7f364645cb280e3a9f520cdf61ee8e480cf4ef854a5007b37c870d78ec586866
7
+ data.tar.gz: 6d8224dd7c87286706691203ebf29979648e8c636b0f992be91b52fd5bc4f6b836eba6ec51163dfbf16fea6341cfa42ca07b0fd0228ed6b524926e908a515e49
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # 0.4.8 (2016/11/18)
2
+
3
+ Enhancements:
4
+
5
+ * Suppress ls-remote log by filtering remote refs with HEAD (thanks to aeroastro)
6
+
1
7
  # 0.4.7 (2016/07/22)
2
8
 
3
9
  Fixes:
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "capistrano-bundle_rsync"
7
- spec.version = "0.4.7"
7
+ spec.version = "0.4.8"
8
8
  spec.authors = ["sonots", "tohae"]
9
9
  spec.email = ["sonots@gmail.com", "tohaechan@gmail.com"]
10
10
  spec.description = %q{Deploy an application and bundled gems via rsync}
@@ -3,7 +3,7 @@ require 'capistrano/configuration/filter'
3
3
 
4
4
  class Capistrano::BundleRsync::Git < Capistrano::BundleRsync::SCM
5
5
  def check
6
- exit 1 unless execute("git ls-remote #{repo_url}")
6
+ exit 1 unless execute("git ls-remote #{repo_url} HEAD")
7
7
  execute("mkdir -p #{config.local_base_path}")
8
8
  end
9
9
 
@@ -4,7 +4,7 @@ require 'capistrano/configuration/filter'
4
4
  class Capistrano::BundleRsync::LocalGit < Capistrano::BundleRsync::SCM
5
5
  def check
6
6
  raise ArgumentError.new('`repo_url` must be local path to use `local_git` scm') unless local_path?(repo_url)
7
- exit 1 unless execute("git ls-remote #{repo_url}")
7
+ exit 1 unless execute("git ls-remote #{repo_url} HEAD")
8
8
  execute("mkdir -p #{config.local_base_path}")
9
9
  end
10
10
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-bundle_rsync
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.7
4
+ version: 0.4.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - sonots
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-07-22 00:00:00.000000000 Z
12
+ date: 2016-11-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: capistrano
@@ -136,7 +136,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
136
136
  version: '0'
137
137
  requirements: []
138
138
  rubyforge_project:
139
- rubygems_version: 2.5.1
139
+ rubygems_version: 2.5.2
140
140
  signing_key:
141
141
  specification_version: 4
142
142
  summary: Deploy an application and bundled gems via rsync.