capistrano-ruby 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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 04e6afc955e54d44050a8055e2d0a7f14775e1ab
4
+ data.tar.gz: 1d1f8f2354e8e1f3119d526e09b4b771b3b296e5
5
+ SHA512:
6
+ metadata.gz: e22ff49fca10a95238026c2c7b1ee591663e62a3468f0ee39d0c0af88709fbcbae03941fe5158bcb41f0819d9e94a5503a325e32ce301bc65dbfe78e041f0129
7
+ data.tar.gz: 92c56c0d7d4efaa5bd329ce8c36250fe76ab9f52841f81630d6c63437124413a063ddcc426e0ca9766f2557cb6649cd847cbf618156b56123447bf8dd748a000
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in capistrano-ruby.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Vlad Verestiuc
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.
@@ -0,0 +1,31 @@
1
+ # Capistrano::Ruby
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'capistrano-ruby'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install capistrano-ruby
20
+
21
+ ## Usage
22
+
23
+ TODO: Write usage instructions here
24
+
25
+ ## Contributing
26
+
27
+ 1. Fork it ( https://github.com/[my-github-username]/capistrano-ruby/fork )
28
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
29
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
30
+ 4. Push to the branch (`git push origin my-new-feature`)
31
+ 5. Create a new Pull Request
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -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/ruby/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "capistrano-ruby"
8
+ spec.version = Capistrano::Ruby::VERSION
9
+ spec.authors = ["Vlad Verestiuc"]
10
+ spec.email = ["verestiuc.vlad@gmail.com"]
11
+ spec.summary = %q{Provides ruby packages}
12
+ spec.description = %q{Provides ruby packages}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
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_development_dependency "bundler", "~> 1.7"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+
24
+ spec.add_dependency "capistrano-ubuntu", "~> 0.0.1"
25
+ end
@@ -0,0 +1,11 @@
1
+ require "capistrano/ruby/version"
2
+ require "capistrano/ubuntu"
3
+
4
+ module Capistrano
5
+ module Ruby
6
+ # Your code goes here...
7
+ end
8
+ end
9
+
10
+
11
+ import File.expand_path("../tasks/ruby.rake", __FILE__)
@@ -0,0 +1,5 @@
1
+ module Capistrano
2
+ module Ruby
3
+ VERSION = "0.0.1"
4
+ end
5
+ end
@@ -0,0 +1,94 @@
1
+
2
+
3
+ set(:ruby_role, :app)
4
+
5
+
6
+ namespace :ruby do
7
+
8
+ task :defaults do
9
+ set(:ruby_packages, %w[
10
+ autoconf
11
+ bind9-host
12
+ bison
13
+ build-essential
14
+ curl
15
+ daemontools
16
+ dnsutils
17
+ ed
18
+ git
19
+ imagemagick
20
+ iputils-tracepath
21
+ libcurl4-openssl-dev
22
+ libevent-dev
23
+ libglib2.0-dev
24
+ libjpeg-dev
25
+ libjpeg62
26
+ libpng12-0
27
+ libpng12-dev
28
+ libmagickcore-dev
29
+ libmagickwand-dev
30
+ libmcrypt-dev
31
+ libmysqlclient-dev
32
+ libpq-dev
33
+ libsqlite3-dev
34
+ libssl-dev
35
+ libssl0.9.8
36
+ libxml2-dev
37
+ libxslt-dev
38
+ mercurial
39
+ netcat-openbsd
40
+ ruby2.1-dev
41
+ ruby2.1
42
+ socat
43
+ sqlite3
44
+ telnet
45
+ zlib1g-dev
46
+ jpegoptim
47
+ libv8-dev
48
+ unattended-upgrades
49
+ ])
50
+ end
51
+
52
+ task :sources do
53
+
54
+ role = fetch(:ruby_role)
55
+
56
+ key = "#{role}" == "all" ? :"ubuntu_packages" : :"ubuntu_packages_for_#{role}"
57
+
58
+ packages = fetch(key,[])
59
+ packages += fetch(:ruby_packages)
60
+ set(key, packages)
61
+
62
+
63
+ key = "#{role}" == "all" ? :"ubuntu_software_sources" : :"ubuntu_software_sources_for_#{role}"
64
+
65
+ sources = fetch(key,[])
66
+ sources += %w[ ppa:brightbox/ruby-ng ]
67
+ set(key, sources)
68
+
69
+ end
70
+
71
+
72
+ task :install_gems do
73
+ on roles(fetch(:ruby_role)) do
74
+ if test "[ ! -f /etc/gemrc ]"
75
+ upload_as :root, StringIO.new("install: --no-rdoc --no-ri\nupdate: --no-rdoc --no-ri"), "/etc/gemrc"
76
+ sudo :chmod, '0644', "/etc/gemrc"
77
+ end
78
+
79
+ if test "[ -z $(which bundler) ]"
80
+ sudo :gem, 'install', 'bundler'
81
+ end
82
+
83
+ end
84
+ end
85
+
86
+
87
+
88
+
89
+ end
90
+
91
+
92
+ after "load:defaults", "ruby:defaults"
93
+ before "ubuntu:update_sources", "ruby:sources"
94
+ after "ubuntu:install_packages", "ruby:install_gems"
metadata ADDED
@@ -0,0 +1,96 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: capistrano-ruby
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Vlad Verestiuc
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-12-13 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.7'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: capistrano-ubuntu
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 0.0.1
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 0.0.1
55
+ description: Provides ruby packages
56
+ email:
57
+ - verestiuc.vlad@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - Gemfile
64
+ - LICENSE.txt
65
+ - README.md
66
+ - Rakefile
67
+ - capistrano-ruby.gemspec
68
+ - lib/capistrano/ruby.rb
69
+ - lib/capistrano/ruby/version.rb
70
+ - lib/capistrano/tasks/ruby.rake
71
+ homepage: ''
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.2
92
+ signing_key:
93
+ specification_version: 4
94
+ summary: Provides ruby packages
95
+ test_files: []
96
+ has_rdoc: