vlad-push 1.0.0 → 1.0.1
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.
- data/README.txt +21 -2
- data/Rakefile +0 -3
- data/lib/vlad/push.rb +1 -1
- metadata +8 -22
data/README.txt
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
== DESCRIPTION:
|
6
6
|
|
7
|
-
Adds support to Vlad for pushing files to a remote server without SCM.
|
7
|
+
Adds support to Vlad for pushing files to a remote server without SCM. (Really, pre 1.x didn't work as expected.)
|
8
8
|
|
9
9
|
|
10
10
|
== FEATURES/PROBLEMS:
|
@@ -16,15 +16,27 @@ Adds support to Vlad for pushing files to a remote server without SCM.
|
|
16
16
|
$ rake <env> vlad:push
|
17
17
|
$ rake <env> vlad:update
|
18
18
|
|
19
|
+
^-- if using environment tasks in deploy.rb
|
20
|
+
|
19
21
|
or
|
20
22
|
|
21
23
|
$ rake <env> vlad:deploy
|
22
24
|
|
25
|
+
^-- if using environment tasks in deploy.rb
|
26
|
+
|
27
|
+
=== Rakefile sample
|
28
|
+
|
29
|
+
require 'vlad'
|
30
|
+
Vlad.load(:scm => :push)
|
31
|
+
|
32
|
+
=== deploy.rb sample
|
33
|
+
|
34
|
+
set :deploy_to, "/web/root"
|
35
|
+
set :repository, "/push/root"
|
23
36
|
|
24
37
|
== REQUIREMENTS:
|
25
38
|
|
26
39
|
* Vlad[http://rubyhitsquad.com/Vlad_the_Deployer.html]
|
27
|
-
* Vlad-git[https://github.com/jbarnette/vlad-git.git]
|
28
40
|
|
29
41
|
== INSTALL:
|
30
42
|
|
@@ -39,6 +51,13 @@ domain:: See Vlad :domain variable
|
|
39
51
|
scp_cmd:: Defaults to <tt>scp</tt>
|
40
52
|
ssh_flags:: See Vlad :ssh_flags variable
|
41
53
|
|
54
|
+
== ACKKNOWLEDGEMENTS
|
55
|
+
|
56
|
+
* [http://rubyhitsquad.com/] for creating Vlad.
|
57
|
+
* jbarnette for vlad-git[https://github.com/jbarnette/vlad-git] which was used as a template for 1.0.0.
|
58
|
+
* retr0h[https://github.com/retr0h] who turned me on to Vlad.
|
59
|
+
|
60
|
+
|
42
61
|
== LICENSE:
|
43
62
|
|
44
63
|
(The MIT License)
|
data/Rakefile
CHANGED
data/lib/vlad/push.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vlad-push
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 21
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 1.0.
|
9
|
+
- 1
|
10
|
+
version: 1.0.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Joshua P. Mervine
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-07-
|
18
|
+
date: 2011-07-21 00:00:00 -07:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -33,24 +33,10 @@ dependencies:
|
|
33
33
|
version: "2.0"
|
34
34
|
type: :runtime
|
35
35
|
version_requirements: *id001
|
36
|
-
- !ruby/object:Gem::Dependency
|
37
|
-
name: vlad-git
|
38
|
-
prerelease: false
|
39
|
-
requirement: &id002 !ruby/object:Gem::Requirement
|
40
|
-
none: false
|
41
|
-
requirements:
|
42
|
-
- - ">="
|
43
|
-
- !ruby/object:Gem::Version
|
44
|
-
hash: 3
|
45
|
-
segments:
|
46
|
-
- 0
|
47
|
-
version: "0"
|
48
|
-
type: :runtime
|
49
|
-
version_requirements: *id002
|
50
36
|
- !ruby/object:Gem::Dependency
|
51
37
|
name: hoe
|
52
38
|
prerelease: false
|
53
|
-
requirement: &
|
39
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
54
40
|
none: false
|
55
41
|
requirements:
|
56
42
|
- - ~>
|
@@ -61,8 +47,8 @@ dependencies:
|
|
61
47
|
- 10
|
62
48
|
version: "2.10"
|
63
49
|
type: :development
|
64
|
-
version_requirements: *
|
65
|
-
description: Adds support to Vlad for pushing files to a remote server without SCM.
|
50
|
+
version_requirements: *id002
|
51
|
+
description: Adds support to Vlad for pushing files to a remote server without SCM. (Really, pre 1.x didn't work as expected.)
|
66
52
|
email:
|
67
53
|
- joshua@mervine.net
|
68
54
|
executables: []
|
@@ -114,6 +100,6 @@ rubyforge_project: vlad-push
|
|
114
100
|
rubygems_version: 1.6.2
|
115
101
|
signing_key:
|
116
102
|
specification_version: 3
|
117
|
-
summary: Adds support to Vlad for pushing files to a remote server without SCM
|
103
|
+
summary: Adds support to Vlad for pushing files to a remote server without SCM
|
118
104
|
test_files:
|
119
105
|
- test/test_vlad_push.rb
|