rvm-capistrano 1.2.2 → 1.2.3
Sign up to get free protection for your applications and to get access to all the features.
- data/History.md +9 -0
- data/LICENSE +14 -0
- data/Manifest.yml +1 -0
- data/README.md +1 -1
- data/lib/rvm/capistrano.rb +1 -1
- data/lib/rvm/capistrano/version.rb +1 -1
- metadata +5 -3
data/History.md
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
### 1.2.3 / 2012-07-07
|
2
|
+
|
3
|
+
* Add LICENSE, merged #14
|
4
|
+
* Only load code if the Capistrano constant is defined, fix #23, merged #26
|
5
|
+
|
6
|
+
### 1.2.2 / 2012-05-24
|
7
|
+
|
8
|
+
* Default rvm_install_ruby_params to an empty string - fixes #15
|
9
|
+
|
1
10
|
### 1.2.1 / 2012-05-22
|
2
11
|
|
3
12
|
* Add `set :rvm_ruby_string, :local`, merged #4
|
data/LICENSE
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
Copyright (C) 2012 Wayne E. Seguin (wayneeseguin)
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
|
4
|
+
documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
|
5
|
+
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit
|
6
|
+
persons to whom the Software is furnished to do so, subject to the following conditions:
|
7
|
+
|
8
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of
|
9
|
+
the Software.
|
10
|
+
|
11
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
|
12
|
+
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
13
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
14
|
+
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/Manifest.yml
CHANGED
data/README.md
CHANGED
data/lib/rvm/capistrano.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rvm-capistrano
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2012-
|
13
|
+
date: 2012-07-07 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: capistrano
|
@@ -72,11 +72,13 @@ files:
|
|
72
72
|
- Manifest.yml
|
73
73
|
- README.md
|
74
74
|
- Rakefile
|
75
|
+
- LICENSE
|
75
76
|
- lib/rvm/capistrano.rb
|
76
77
|
- lib/rvm/capistrano/version.rb
|
77
78
|
- spec/spec_helper.rb
|
78
79
|
homepage: https://rvm.beginrescueend.com/integration/capistrano
|
79
|
-
licenses:
|
80
|
+
licenses:
|
81
|
+
- MIT
|
80
82
|
post_install_message:
|
81
83
|
rdoc_options: []
|
82
84
|
require_paths:
|