capistrano-lazy 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.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +45 -0
- data/Rakefile +1 -0
- data/capistrano-lazy.gemspec +25 -0
- data/lib/capistrano/lazy.rb +5 -0
- data/lib/capistrano/rbenv/lazy.rb +1 -0
- data/lib/capistrano/rbenv/tasks/lazy.rake +43 -0
- metadata +95 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 025f5045fde58cb14efefc58c0e8bcec7550fcae
|
4
|
+
data.tar.gz: 692f1445cb4a6929b6c628dd7364016bfda0ce2a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 6b5540a2c1744904ed7fbb9b40c31f5c6e1458b339e071ccf934844449dc83dceaa344aae5edd3aabfdc86684ccb5bdc388dbc9617c540ec14f778628d56a023
|
7
|
+
data.tar.gz: 3e33d8c0544b7e300c3f30119c574d00c4512b9981b6b0dc1a86455b9c4efcdc73a5a67d3c0ca39557072f688bf67dc7d23ebf84787d3b2e7f1fa468a9f2f4b2
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Stas SUȘCOV
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
# Capistrano for Lazy
|
2
|
+
|
3
|
+
This is a set of Capistrano 3.x tasks for some trivial processes.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'capistrano-lazy'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install capistrano-lazy
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
### Rbenv and Ruby build tasks
|
22
|
+
|
23
|
+
I added a couple of tasks to manage rbenv and ruby-build remote setup, update and rubies installation.
|
24
|
+
|
25
|
+
```ruby
|
26
|
+
require 'capistrano/rbenv/lazy'
|
27
|
+
```
|
28
|
+
|
29
|
+
There are 3 new tasks and 3 new config directives:
|
30
|
+
|
31
|
+
* `rbenv:setup` - installs rbenv remotely
|
32
|
+
* `rbenv:update` - updates the rbenv installation
|
33
|
+
* `rbenv:install[RUBY_VERSION]` - installs a ruby, in case you want to upgrade the ruby version
|
34
|
+
|
35
|
+
* `ruby_build_path` - this will use ruby build to manage rubies installation, this option is where it should be installed, defaults to `$RBENV_PATH/plugins/ruby-build`
|
36
|
+
* `rbenv_git_url` - the git url to use for setup, defaults to https://github.com/sstephenson/rbenv
|
37
|
+
* `ruby_build_git_url` - the git url to use for installing ruby-build, defaults to https://github.com/sstephenson/ruby-build
|
38
|
+
|
39
|
+
## Contributing
|
40
|
+
|
41
|
+
1. Fork it ( http://github.com/stas/capistrano-lazy/fork )
|
42
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
43
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
44
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
45
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'capistrano/lazy'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'capistrano-lazy'
|
8
|
+
spec.version = Capistrano::Lazy::VERSION
|
9
|
+
spec.authors = ['Stas SUȘCOV']
|
10
|
+
spec.email = ['stas@net.utcluj.ro']
|
11
|
+
spec.summary = %q{Capistrano tasks for lazy.}
|
12
|
+
spec.description = %q{Some capistrano tasks for trivial things.}
|
13
|
+
spec.homepage = 'https://github.com/stas/capistrano-lazy'
|
14
|
+
spec.license = 'MIT'
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_dependency 'capistrano', '>= 3.0'
|
22
|
+
|
23
|
+
spec.add_development_dependency 'bundler'
|
24
|
+
spec.add_development_dependency 'rake'
|
25
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
load File.expand_path('../tasks/lazy.rake', __FILE__)
|
@@ -0,0 +1,43 @@
|
|
1
|
+
namespace :rbenv do
|
2
|
+
task :setup do
|
3
|
+
on roles(fetch(:rbenv_roles)) do
|
4
|
+
execute :git, 'clone', fetch(:rbenv_git_url), fetch(:rbenv_path)
|
5
|
+
execute :git, 'clone', fetch(:ruby_build_git_url), fetch(:ruby_build_path)
|
6
|
+
end
|
7
|
+
end
|
8
|
+
|
9
|
+
task :update do
|
10
|
+
on roles(fetch(:rbenv_roles)) do
|
11
|
+
[fetch(:rbenv_path), fetch(:ruby_build_path)].each do |update_path|
|
12
|
+
within update_path do
|
13
|
+
execute :git, 'pull'
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
task :install, [:new_ruby] do |task, args|
|
20
|
+
on roles(fetch(:rbenv_roles)) do
|
21
|
+
execute :rbenv, 'install', args[:new_ruby] || fetch(:rbenv_ruby)
|
22
|
+
execute :rbenv, 'local', args[:new_ruby] || fetch(:rbenv_ruby)
|
23
|
+
execute :rbenv, 'rehash'
|
24
|
+
execute :rbenv, 'exec', 'gem install bundler' if fetch(:bundle_roles)
|
25
|
+
execute :rbenv, 'rehash'
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
namespace :load do
|
31
|
+
task :defaults do
|
32
|
+
set :ruby_build_path, -> { '%s/plugins/ruby-build' % fetch(:rbenv_path) }
|
33
|
+
set :rbenv_git_url, 'git://github.com/sstephenson/rbenv.git'
|
34
|
+
set :ruby_build_git_url, 'git://github.com/sstephenson/ruby-build.git'
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
Capistrano::DSL.stages.each do |stage|
|
39
|
+
current_tasks = Rake.application.top_level_tasks.join(' ')
|
40
|
+
if current_tasks.match(/rbenv.(setup|install|update)/)
|
41
|
+
Rake::Task['rbenv:validate'].clear
|
42
|
+
end
|
43
|
+
end
|
metadata
ADDED
@@ -0,0 +1,95 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: capistrano-lazy
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Stas SUȘCOV
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-01-18 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: capistrano
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
description: Some capistrano tasks for trivial things.
|
56
|
+
email:
|
57
|
+
- stas@net.utcluj.ro
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- ".gitignore"
|
63
|
+
- Gemfile
|
64
|
+
- LICENSE.txt
|
65
|
+
- README.md
|
66
|
+
- Rakefile
|
67
|
+
- capistrano-lazy.gemspec
|
68
|
+
- lib/capistrano/lazy.rb
|
69
|
+
- lib/capistrano/rbenv/lazy.rb
|
70
|
+
- lib/capistrano/rbenv/tasks/lazy.rake
|
71
|
+
homepage: https://github.com/stas/capistrano-lazy
|
72
|
+
licenses:
|
73
|
+
- MIT
|
74
|
+
metadata: {}
|
75
|
+
post_install_message:
|
76
|
+
rdoc_options: []
|
77
|
+
require_paths:
|
78
|
+
- lib
|
79
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ">="
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: '0'
|
84
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '0'
|
89
|
+
requirements: []
|
90
|
+
rubyforge_project:
|
91
|
+
rubygems_version: 2.2.0
|
92
|
+
signing_key:
|
93
|
+
specification_version: 4
|
94
|
+
summary: Capistrano tasks for lazy.
|
95
|
+
test_files: []
|