capistrano-bundle_rsync 0.4.7 → 0.4.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/capistrano-bundle_rsync.gemspec +1 -1
- data/lib/capistrano/bundle_rsync/git.rb +1 -1
- data/lib/capistrano/bundle_rsync/local_git.rb +1 -1
- 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: 3c0c8651abf14f451f737192b9c7c01b629d1632
|
4
|
+
data.tar.gz: b2931092137c80806f698f832a524f42ea5eeddc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 072564e65047116693817e4b686f24f4d0af169477aef403c137004d828168ad7f364645cb280e3a9f520cdf61ee8e480cf4ef854a5007b37c870d78ec586866
|
7
|
+
data.tar.gz: 6d8224dd7c87286706691203ebf29979648e8c636b0f992be91b52fd5bc4f6b836eba6ec51163dfbf16fea6341cfa42ca07b0fd0228ed6b524926e908a515e49
|
data/CHANGELOG.md
CHANGED
@@ -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
|
+
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.
|
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-
|
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.
|
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.
|