capistrano-scm-local 0.1.23 → 0.1.24
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/capistrano-scm-local.gemspec +5 -7
- data/lib/capistrano/local.rb +2 -2
- metadata +24 -6
- checksums.yaml +0 -15
- data/Gemfile.lock +0 -80
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.24
|
@@ -2,16 +2,14 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: capistrano-scm-local 0.1.23 ruby lib
|
6
5
|
|
7
6
|
Gem::Specification.new do |s|
|
8
7
|
s.name = "capistrano-scm-local"
|
9
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.24"
|
10
9
|
|
11
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
|
-
s.require_paths = ["lib"]
|
13
11
|
s.authors = ["Boris Gorbylev"]
|
14
|
-
s.date = "2015-04-
|
12
|
+
s.date = "2015-04-20"
|
15
13
|
s.description = "Capistrano extension for deploying form local directory"
|
16
14
|
s.email = "ekho@ekho.name"
|
17
15
|
s.extra_rdoc_files = [
|
@@ -22,7 +20,6 @@ Gem::Specification.new do |s|
|
|
22
20
|
s.files = [
|
23
21
|
".document",
|
24
22
|
"Gemfile",
|
25
|
-
"Gemfile.lock",
|
26
23
|
"LICENSE",
|
27
24
|
"README.md",
|
28
25
|
"README.rdoc",
|
@@ -37,11 +34,12 @@ Gem::Specification.new do |s|
|
|
37
34
|
]
|
38
35
|
s.homepage = "http://github.com/ekho/capistrano-scm-local"
|
39
36
|
s.licenses = ["MIT"]
|
40
|
-
s.
|
37
|
+
s.require_paths = ["lib"]
|
38
|
+
s.rubygems_version = "1.8.23"
|
41
39
|
s.summary = "Capistrano SCM Local - Deploy from local copy"
|
42
40
|
|
43
41
|
if s.respond_to? :specification_version then
|
44
|
-
s.specification_version =
|
42
|
+
s.specification_version = 3
|
45
43
|
|
46
44
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
47
45
|
s.add_development_dependency(%q<shoulda>, [">= 0"])
|
data/lib/capistrano/local.rb
CHANGED
@@ -58,7 +58,7 @@ class Capistrano::Local < Capistrano::SCM
|
|
58
58
|
unless File.exists?(archive)
|
59
59
|
if File.directory?(repo_url) || !File.fnmatch("*#{archive_extension}", repo_url)
|
60
60
|
within repo_url do
|
61
|
-
execute :tar, "c#{compression_flag}f", archive, '
|
61
|
+
execute :tar, "c#{compression_flag}f", archive, '.'
|
62
62
|
end
|
63
63
|
|
64
64
|
unless fetch(:scm_local_skip_tar_check, false)
|
@@ -86,4 +86,4 @@ class Capistrano::Local < Capistrano::SCM
|
|
86
86
|
end
|
87
87
|
end
|
88
88
|
end
|
89
|
-
end
|
89
|
+
end
|
metadata
CHANGED
@@ -1,18 +1,20 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-scm-local
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.24
|
5
|
+
prerelease:
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
8
|
- Boris Gorbylev
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date: 2015-04-
|
12
|
+
date: 2015-04-20 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: shoulda
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
16
18
|
requirements:
|
17
19
|
- - ! '>='
|
18
20
|
- !ruby/object:Gem::Version
|
@@ -20,6 +22,7 @@ dependencies:
|
|
20
22
|
type: :development
|
21
23
|
prerelease: false
|
22
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
23
26
|
requirements:
|
24
27
|
- - ! '>='
|
25
28
|
- !ruby/object:Gem::Version
|
@@ -27,6 +30,7 @@ dependencies:
|
|
27
30
|
- !ruby/object:Gem::Dependency
|
28
31
|
name: rdoc
|
29
32
|
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
30
34
|
requirements:
|
31
35
|
- - ~>
|
32
36
|
- !ruby/object:Gem::Version
|
@@ -34,6 +38,7 @@ dependencies:
|
|
34
38
|
type: :development
|
35
39
|
prerelease: false
|
36
40
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
37
42
|
requirements:
|
38
43
|
- - ~>
|
39
44
|
- !ruby/object:Gem::Version
|
@@ -41,6 +46,7 @@ dependencies:
|
|
41
46
|
- !ruby/object:Gem::Dependency
|
42
47
|
name: bundler
|
43
48
|
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
44
50
|
requirements:
|
45
51
|
- - ~>
|
46
52
|
- !ruby/object:Gem::Version
|
@@ -48,6 +54,7 @@ dependencies:
|
|
48
54
|
type: :development
|
49
55
|
prerelease: false
|
50
56
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
51
58
|
requirements:
|
52
59
|
- - ~>
|
53
60
|
- !ruby/object:Gem::Version
|
@@ -55,6 +62,7 @@ dependencies:
|
|
55
62
|
- !ruby/object:Gem::Dependency
|
56
63
|
name: jeweler
|
57
64
|
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
58
66
|
requirements:
|
59
67
|
- - ~>
|
60
68
|
- !ruby/object:Gem::Version
|
@@ -62,6 +70,7 @@ dependencies:
|
|
62
70
|
type: :development
|
63
71
|
prerelease: false
|
64
72
|
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
65
74
|
requirements:
|
66
75
|
- - ~>
|
67
76
|
- !ruby/object:Gem::Version
|
@@ -69,6 +78,7 @@ dependencies:
|
|
69
78
|
- !ruby/object:Gem::Dependency
|
70
79
|
name: simplecov
|
71
80
|
requirement: !ruby/object:Gem::Requirement
|
81
|
+
none: false
|
72
82
|
requirements:
|
73
83
|
- - ! '>='
|
74
84
|
- !ruby/object:Gem::Version
|
@@ -76,6 +86,7 @@ dependencies:
|
|
76
86
|
type: :development
|
77
87
|
prerelease: false
|
78
88
|
version_requirements: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
79
90
|
requirements:
|
80
91
|
- - ! '>='
|
81
92
|
- !ruby/object:Gem::Version
|
@@ -83,6 +94,7 @@ dependencies:
|
|
83
94
|
- !ruby/object:Gem::Dependency
|
84
95
|
name: capistrano
|
85
96
|
requirement: !ruby/object:Gem::Requirement
|
97
|
+
none: false
|
86
98
|
requirements:
|
87
99
|
- - ~>
|
88
100
|
- !ruby/object:Gem::Version
|
@@ -90,6 +102,7 @@ dependencies:
|
|
90
102
|
type: :runtime
|
91
103
|
prerelease: false
|
92
104
|
version_requirements: !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
93
106
|
requirements:
|
94
107
|
- - ~>
|
95
108
|
- !ruby/object:Gem::Version
|
@@ -97,6 +110,7 @@ dependencies:
|
|
97
110
|
- !ruby/object:Gem::Dependency
|
98
111
|
name: minitar
|
99
112
|
requirement: !ruby/object:Gem::Requirement
|
113
|
+
none: false
|
100
114
|
requirements:
|
101
115
|
- - ~>
|
102
116
|
- !ruby/object:Gem::Version
|
@@ -104,6 +118,7 @@ dependencies:
|
|
104
118
|
type: :runtime
|
105
119
|
prerelease: false
|
106
120
|
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
none: false
|
107
122
|
requirements:
|
108
123
|
- - ~>
|
109
124
|
- !ruby/object:Gem::Version
|
@@ -119,7 +134,6 @@ extra_rdoc_files:
|
|
119
134
|
files:
|
120
135
|
- .document
|
121
136
|
- Gemfile
|
122
|
-
- Gemfile.lock
|
123
137
|
- LICENSE
|
124
138
|
- README.md
|
125
139
|
- README.rdoc
|
@@ -134,25 +148,29 @@ files:
|
|
134
148
|
homepage: http://github.com/ekho/capistrano-scm-local
|
135
149
|
licenses:
|
136
150
|
- MIT
|
137
|
-
metadata: {}
|
138
151
|
post_install_message:
|
139
152
|
rdoc_options: []
|
140
153
|
require_paths:
|
141
154
|
- lib
|
142
155
|
required_ruby_version: !ruby/object:Gem::Requirement
|
156
|
+
none: false
|
143
157
|
requirements:
|
144
158
|
- - ! '>='
|
145
159
|
- !ruby/object:Gem::Version
|
146
160
|
version: '0'
|
161
|
+
segments:
|
162
|
+
- 0
|
163
|
+
hash: 1997281765750162548
|
147
164
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
165
|
+
none: false
|
148
166
|
requirements:
|
149
167
|
- - ! '>='
|
150
168
|
- !ruby/object:Gem::Version
|
151
169
|
version: '0'
|
152
170
|
requirements: []
|
153
171
|
rubyforge_project:
|
154
|
-
rubygems_version:
|
172
|
+
rubygems_version: 1.8.23
|
155
173
|
signing_key:
|
156
|
-
specification_version:
|
174
|
+
specification_version: 3
|
157
175
|
summary: Capistrano SCM Local - Deploy from local copy
|
158
176
|
test_files: []
|
checksums.yaml
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
---
|
2
|
-
!binary "U0hBMQ==":
|
3
|
-
metadata.gz: !binary |-
|
4
|
-
ZjdjNjEzZmE2NTY5MzFjOTA4ZGExYjU0NjQwMWQ4NzRiMjMzYmZlOQ==
|
5
|
-
data.tar.gz: !binary |-
|
6
|
-
YWIxMThmOGQ5MTZhOWM5YTcxMWFhNzMzYmFhNzQzMWY1ZGY0MDcwMQ==
|
7
|
-
SHA512:
|
8
|
-
metadata.gz: !binary |-
|
9
|
-
ODcwNmQzNDJkYjA4OGVjMzVlMGIzNDgyNDdlYmZlZWNhYzIzYmQwNDQwY2M4
|
10
|
-
MzRmYWRhNDdkNTEwZjU1NGU2NDFkN2I3MjJhODZkOTczNjg1YmMwOTBkMmYw
|
11
|
-
YjVmNmE1ZTU3OTE0MzhhOTg4ZmMzZDlmMWYyMzFlNzQzZmI3MDQ=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
NWNmYmIwNjlmOWUxNTRmMzdiMzEwZTc3ZWYyMjA4MjY3MGI3Y2Y0NGE5ZDk2
|
14
|
-
NjYyYTExYTkwMThhZjg3NWJlZGJiMDEwOGVhNDkyODIzM2NhOWI1NzE5MzE1
|
15
|
-
Y2YyYzRkYTNiZGM4NTgwODc5ODg2ODFjYzI0ODYwOWUzMzdkODU=
|
data/Gemfile.lock
DELETED
@@ -1,80 +0,0 @@
|
|
1
|
-
GEM
|
2
|
-
remote: http://rubygems.org/
|
3
|
-
specs:
|
4
|
-
activesupport (4.2.0)
|
5
|
-
i18n (~> 0.7)
|
6
|
-
json (~> 1.7, >= 1.7.7)
|
7
|
-
minitest (~> 5.1)
|
8
|
-
thread_safe (~> 0.3, >= 0.3.4)
|
9
|
-
tzinfo (~> 1.1)
|
10
|
-
addressable (2.3.7)
|
11
|
-
builder (3.2.2)
|
12
|
-
descendants_tracker (0.0.4)
|
13
|
-
thread_safe (~> 0.3, >= 0.3.1)
|
14
|
-
docile (1.1.5)
|
15
|
-
faraday (0.9.1)
|
16
|
-
multipart-post (>= 1.2, < 3)
|
17
|
-
git (1.2.9.1)
|
18
|
-
github_api (0.12.3)
|
19
|
-
addressable (~> 2.3)
|
20
|
-
descendants_tracker (~> 0.0.4)
|
21
|
-
faraday (~> 0.8, < 0.10)
|
22
|
-
hashie (>= 3.3)
|
23
|
-
multi_json (>= 1.7.5, < 2.0)
|
24
|
-
nokogiri (~> 1.6.3)
|
25
|
-
oauth2
|
26
|
-
hashie (3.4.0)
|
27
|
-
highline (1.7.0)
|
28
|
-
i18n (0.7.0)
|
29
|
-
jeweler (2.0.1)
|
30
|
-
builder
|
31
|
-
bundler (>= 1.0)
|
32
|
-
git (>= 1.2.5)
|
33
|
-
github_api
|
34
|
-
highline (>= 1.6.15)
|
35
|
-
nokogiri (>= 1.5.10)
|
36
|
-
rake
|
37
|
-
rdoc
|
38
|
-
json (1.8.2)
|
39
|
-
jwt (1.2.1)
|
40
|
-
mini_portile (0.6.2)
|
41
|
-
minitest (5.5.1)
|
42
|
-
multi_json (1.10.1)
|
43
|
-
multi_xml (0.5.5)
|
44
|
-
multipart-post (2.0.0)
|
45
|
-
nokogiri (1.6.6.2)
|
46
|
-
mini_portile (~> 0.6.0)
|
47
|
-
oauth2 (1.0.0)
|
48
|
-
faraday (>= 0.8, < 0.10)
|
49
|
-
jwt (~> 1.0)
|
50
|
-
multi_json (~> 1.3)
|
51
|
-
multi_xml (~> 0.5)
|
52
|
-
rack (~> 1.2)
|
53
|
-
rack (1.6.0)
|
54
|
-
rake (10.4.2)
|
55
|
-
rdoc (3.12.2)
|
56
|
-
json (~> 1.4)
|
57
|
-
shoulda (3.5.0)
|
58
|
-
shoulda-context (~> 1.0, >= 1.0.1)
|
59
|
-
shoulda-matchers (>= 1.4.1, < 3.0)
|
60
|
-
shoulda-context (1.2.1)
|
61
|
-
shoulda-matchers (2.8.0)
|
62
|
-
activesupport (>= 3.0.0)
|
63
|
-
simplecov (0.9.2)
|
64
|
-
docile (~> 1.1.0)
|
65
|
-
multi_json (~> 1.0)
|
66
|
-
simplecov-html (~> 0.9.0)
|
67
|
-
simplecov-html (0.9.0)
|
68
|
-
thread_safe (0.3.4)
|
69
|
-
tzinfo (1.2.2)
|
70
|
-
thread_safe (~> 0.1)
|
71
|
-
|
72
|
-
PLATFORMS
|
73
|
-
ruby
|
74
|
-
|
75
|
-
DEPENDENCIES
|
76
|
-
bundler (~> 1.0)
|
77
|
-
jeweler (~> 2.0.1)
|
78
|
-
rdoc (~> 3.12)
|
79
|
-
shoulda
|
80
|
-
simplecov
|