capistrano-ext-rvm 0.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/CHANGELOG.rdoc ADDED
@@ -0,0 +1,8 @@
1
+ == (unreleased)
2
+
3
+ * add description in README
4
+ * add MIT license
5
+
6
+ == 0.0.1 (November 14, 2011)
7
+
8
+ * add 'cap rvm:gemset:create'
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2011 DoubleDrones
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Manifest ADDED
@@ -0,0 +1,7 @@
1
+ CHANGELOG.rdoc
2
+ MIT-LICENSE
3
+ README
4
+ Rakefile
5
+ lib/capistrano/ext/rvm.rb
6
+ lib/capistrano/ext/version.rb
7
+ Manifest
data/README ADDED
@@ -0,0 +1 @@
1
+ Capistrano recipes to support RVM installations.
data/Rakefile ADDED
@@ -0,0 +1,25 @@
1
+ begin
2
+ require 'echoe'
3
+ rescue LoadError
4
+ abort "You'll need to have `echoe' installed to use capistrano-ext-rvm's Rakefile"
5
+ end
6
+
7
+ require "./lib/capistrano/ext/version"
8
+
9
+ version = Capistrano::Ext::Rvm::Version::STRING.dup
10
+ if ENV['SNAPSHOT'].to_i == 1
11
+ version << "." << Time.now.utc.strftime("%Y%m%d%H%M%S")
12
+ end
13
+
14
+ Echoe.new('capistrano-ext-rvm', version) do |p|
15
+ p.changelog = "CHANGELOG.rdoc"
16
+
17
+ p.author = "Marcin Nowicki"
18
+ p.email = "pr0d1r2@gmail.com"
19
+ p.summary = "Capistrano recipes to support RVM installations"
20
+ p.url = "https://github.com/doubledrones/capistrano-ext-rvm"
21
+
22
+ p.need_zip = true
23
+
24
+ p.dependencies = ["capistrano >=1.0.0"]
25
+ end
@@ -0,0 +1,32 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{capistrano-ext-rvm}
5
+ s.version = "0.0.1"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
+ s.authors = [%q{Marcin Nowicki}]
9
+ s.date = %q{2011-11-14}
10
+ s.description = %q{Capistrano recipes to support RVM installations}
11
+ s.email = %q{pr0d1r2@gmail.com}
12
+ s.extra_rdoc_files = [%q{CHANGELOG.rdoc}, %q{README}, %q{lib/capistrano/ext/rvm.rb}, %q{lib/capistrano/ext/version.rb}]
13
+ s.files = [%q{CHANGELOG.rdoc}, %q{MIT-LICENSE}, %q{README}, %q{Rakefile}, %q{lib/capistrano/ext/rvm.rb}, %q{lib/capistrano/ext/version.rb}, %q{Manifest}, %q{capistrano-ext-rvm.gemspec}]
14
+ s.homepage = %q{https://github.com/doubledrones/capistrano-ext-rvm}
15
+ s.rdoc_options = [%q{--line-numbers}, %q{--inline-source}, %q{--title}, %q{Capistrano-ext-rvm}, %q{--main}, %q{README}]
16
+ s.require_paths = [%q{lib}]
17
+ s.rubyforge_project = %q{capistrano-ext-rvm}
18
+ s.rubygems_version = %q{1.8.6}
19
+ s.summary = %q{Capistrano recipes to support RVM installations}
20
+
21
+ if s.respond_to? :specification_version then
22
+ s.specification_version = 3
23
+
24
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
25
+ s.add_runtime_dependency(%q<capistrano>, [">= 1.0.0"])
26
+ else
27
+ s.add_dependency(%q<capistrano>, [">= 1.0.0"])
28
+ end
29
+ else
30
+ s.add_dependency(%q<capistrano>, [">= 1.0.0"])
31
+ end
32
+ end
@@ -0,0 +1,13 @@
1
+ Capistrano::Configuration.instance.load do
2
+
3
+ namespace :rvm do
4
+ namespace :gemset do
5
+
6
+ task :create, :roles => :app, :except => { :no_release => true } do
7
+ run "rvm gemset create '#{rvm_gemset}'"
8
+ end
9
+
10
+ end
11
+ end
12
+
13
+ end
@@ -0,0 +1,13 @@
1
+ module Capistrano
2
+ module Ext
3
+ module Rvm
4
+ module Version #:nodoc:
5
+ MAJOR = 0
6
+ MINOR = 0
7
+ TINY = 1
8
+
9
+ STRING = [MAJOR, MINOR, TINY].join(".")
10
+ end
11
+ end
12
+ end
13
+ end
metadata ADDED
@@ -0,0 +1,73 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: capistrano-ext-rvm
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Marcin Nowicki
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-11-14 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: capistrano
16
+ requirement: &70364748732640 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: 1.0.0
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *70364748732640
25
+ description: Capistrano recipes to support RVM installations
26
+ email: pr0d1r2@gmail.com
27
+ executables: []
28
+ extensions: []
29
+ extra_rdoc_files:
30
+ - CHANGELOG.rdoc
31
+ - README
32
+ - lib/capistrano/ext/rvm.rb
33
+ - lib/capistrano/ext/version.rb
34
+ files:
35
+ - CHANGELOG.rdoc
36
+ - MIT-LICENSE
37
+ - README
38
+ - Rakefile
39
+ - lib/capistrano/ext/rvm.rb
40
+ - lib/capistrano/ext/version.rb
41
+ - Manifest
42
+ - capistrano-ext-rvm.gemspec
43
+ homepage: https://github.com/doubledrones/capistrano-ext-rvm
44
+ licenses: []
45
+ post_install_message:
46
+ rdoc_options:
47
+ - --line-numbers
48
+ - --inline-source
49
+ - --title
50
+ - Capistrano-ext-rvm
51
+ - --main
52
+ - README
53
+ require_paths:
54
+ - lib
55
+ required_ruby_version: !ruby/object:Gem::Requirement
56
+ none: false
57
+ requirements:
58
+ - - ! '>='
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ required_rubygems_version: !ruby/object:Gem::Requirement
62
+ none: false
63
+ requirements:
64
+ - - ! '>='
65
+ - !ruby/object:Gem::Version
66
+ version: '1.2'
67
+ requirements: []
68
+ rubyforge_project: capistrano-ext-rvm
69
+ rubygems_version: 1.8.6
70
+ signing_key:
71
+ specification_version: 3
72
+ summary: Capistrano recipes to support RVM installations
73
+ test_files: []