justsee-sprinkle 0.2.4
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/CREDITS +22 -0
- data/History.txt +4 -0
- data/MIT-LICENSE +20 -0
- data/Manifest.txt +100 -0
- data/README.txt +241 -0
- data/Rakefile +4 -0
- data/bin/sprinkle +86 -0
- data/config/hoe.rb +70 -0
- data/config/requirements.rb +17 -0
- data/examples/packages/build_essential.rb +9 -0
- data/examples/packages/databases/mysql.rb +13 -0
- data/examples/packages/databases/sqlite3.rb +16 -0
- data/examples/packages/phusion.rb +55 -0
- data/examples/packages/ruby/rails.rb +9 -0
- data/examples/packages/ruby/ruby.rb +17 -0
- data/examples/packages/ruby/rubygems.rb +17 -0
- data/examples/packages/scm/git.rb +11 -0
- data/examples/packages/scm/subversion.rb +4 -0
- data/examples/packages/servers/apache.rb +15 -0
- data/examples/rails/README +15 -0
- data/examples/rails/deploy.rb +2 -0
- data/examples/rails/packages/database.rb +9 -0
- data/examples/rails/packages/essential.rb +9 -0
- data/examples/rails/packages/rails.rb +28 -0
- data/examples/rails/packages/scm.rb +11 -0
- data/examples/rails/packages/search.rb +11 -0
- data/examples/rails/packages/server.rb +28 -0
- data/examples/rails/rails.rb +73 -0
- data/examples/sprinkle/sprinkle.rb +38 -0
- data/lib/sprinkle.rb +32 -0
- data/lib/sprinkle/actors/actors.rb +17 -0
- data/lib/sprinkle/actors/capistrano.rb +124 -0
- data/lib/sprinkle/actors/local.rb +30 -0
- data/lib/sprinkle/actors/ssh.rb +81 -0
- data/lib/sprinkle/actors/vlad.rb +65 -0
- data/lib/sprinkle/configurable.rb +31 -0
- data/lib/sprinkle/deployment.rb +73 -0
- data/lib/sprinkle/extensions/arbitrary_options.rb +10 -0
- data/lib/sprinkle/extensions/array.rb +5 -0
- data/lib/sprinkle/extensions/blank_slate.rb +5 -0
- data/lib/sprinkle/extensions/dsl_accessor.rb +15 -0
- data/lib/sprinkle/extensions/string.rb +10 -0
- data/lib/sprinkle/extensions/symbol.rb +7 -0
- data/lib/sprinkle/installers/apt.rb +52 -0
- data/lib/sprinkle/installers/bsd_port.rb +33 -0
- data/lib/sprinkle/installers/deb.rb +38 -0
- data/lib/sprinkle/installers/freebsd_pkg.rb +37 -0
- data/lib/sprinkle/installers/gem.rb +63 -0
- data/lib/sprinkle/installers/installer.rb +120 -0
- data/lib/sprinkle/installers/mac_port.rb +38 -0
- data/lib/sprinkle/installers/openbsd_pkg.rb +47 -0
- data/lib/sprinkle/installers/opensolaris_pkg.rb +43 -0
- data/lib/sprinkle/installers/push_text.rb +45 -0
- data/lib/sprinkle/installers/rake.rb +37 -0
- data/lib/sprinkle/installers/rpm.rb +37 -0
- data/lib/sprinkle/installers/source.rb +179 -0
- data/lib/sprinkle/installers/yum.rb +37 -0
- data/lib/sprinkle/package.rb +275 -0
- data/lib/sprinkle/policy.rb +125 -0
- data/lib/sprinkle/script.rb +23 -0
- data/lib/sprinkle/verifiers/directory.rb +16 -0
- data/lib/sprinkle/verifiers/executable.rb +36 -0
- data/lib/sprinkle/verifiers/file.rb +26 -0
- data/lib/sprinkle/verifiers/process.rb +21 -0
- data/lib/sprinkle/verifiers/ruby.rb +25 -0
- data/lib/sprinkle/verifiers/symlink.rb +30 -0
- data/lib/sprinkle/verify.rb +114 -0
- data/lib/sprinkle/version.rb +9 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +17 -0
- data/spec/sprinkle/actors/capistrano_spec.rb +170 -0
- data/spec/sprinkle/actors/local_spec.rb +29 -0
- data/spec/sprinkle/configurable_spec.rb +46 -0
- data/spec/sprinkle/deployment_spec.rb +80 -0
- data/spec/sprinkle/extensions/array_spec.rb +19 -0
- data/spec/sprinkle/extensions/string_spec.rb +21 -0
- data/spec/sprinkle/installers/apt_spec.rb +70 -0
- data/spec/sprinkle/installers/bsd_port_spec.rb +42 -0
- data/spec/sprinkle/installers/freebsd_pkg_spec.rb +49 -0
- data/spec/sprinkle/installers/gem_spec.rb +91 -0
- data/spec/sprinkle/installers/installer_spec.rb +151 -0
- data/spec/sprinkle/installers/mac_port_spec.rb +42 -0
- data/spec/sprinkle/installers/openbsd_pkg_spec.rb +49 -0
- data/spec/sprinkle/installers/opensolaris_pkg_spec.rb +49 -0
- data/spec/sprinkle/installers/push_text_spec.rb +55 -0
- data/spec/sprinkle/installers/rake_spec.rb +29 -0
- data/spec/sprinkle/installers/rpm_spec.rb +50 -0
- data/spec/sprinkle/installers/source_spec.rb +331 -0
- data/spec/sprinkle/installers/yum_spec.rb +49 -0
- data/spec/sprinkle/policy_spec.rb +126 -0
- data/spec/sprinkle/script_spec.rb +51 -0
- data/spec/sprinkle/sprinkle_spec.rb +25 -0
- data/spec/sprinkle/verify_spec.rb +167 -0
- data/sprinkle.gemspec +73 -0
- data/tasks/deployment.rake +34 -0
- data/tasks/environment.rake +7 -0
- data/tasks/rspec.rake +21 -0
- metadata +195 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
module ArbitraryOptions #:nodoc:
|
|
2
|
+
def self.included(base)
|
|
3
|
+
base.alias_method_chain :method_missing, :arbitrary_options
|
|
4
|
+
end
|
|
5
|
+
|
|
6
|
+
def method_missing_with_arbitrary_options(sym, *args, &block)
|
|
7
|
+
self.class.dsl_accessor sym
|
|
8
|
+
send(sym, *args, &block)
|
|
9
|
+
end
|
|
10
|
+
end
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
module Sprinkle
|
|
2
|
+
module Installers
|
|
3
|
+
# = Apt Package Installer
|
|
4
|
+
#
|
|
5
|
+
# The Apt package installer uses the +apt-get+ command to install
|
|
6
|
+
# packages. The apt installer has only one option which can be
|
|
7
|
+
# modified which is the +dependencies_only+ option. When this is
|
|
8
|
+
# set to true, the installer uses +build-dep+ instead of +install+
|
|
9
|
+
# to only build the dependencies.
|
|
10
|
+
#
|
|
11
|
+
# == Example Usage
|
|
12
|
+
#
|
|
13
|
+
# First, a simple installation of the magic_beans package:
|
|
14
|
+
#
|
|
15
|
+
# package :magic_beans do
|
|
16
|
+
# description "Beans beans they're good for your heart..."
|
|
17
|
+
# apt 'magic_beans_package'
|
|
18
|
+
# end
|
|
19
|
+
#
|
|
20
|
+
# Second, only build the magic_beans dependencies:
|
|
21
|
+
#
|
|
22
|
+
# package :magic_beans_depends do
|
|
23
|
+
# apt 'magic_beans_package' { dependencies_only true }
|
|
24
|
+
# end
|
|
25
|
+
#
|
|
26
|
+
# As you can see, setting options is as simple as creating a
|
|
27
|
+
# block and calling the option as a method with the value as
|
|
28
|
+
# its parameter.
|
|
29
|
+
class Apt < Installer
|
|
30
|
+
attr_accessor :packages #:nodoc:
|
|
31
|
+
|
|
32
|
+
def initialize(parent, *packages, &block) #:nodoc:
|
|
33
|
+
packages.flatten!
|
|
34
|
+
|
|
35
|
+
options = { :dependencies_only => false }
|
|
36
|
+
options.update(packages.pop) if packages.last.is_a?(Hash)
|
|
37
|
+
|
|
38
|
+
super parent, options, &block
|
|
39
|
+
|
|
40
|
+
@packages = packages
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
protected
|
|
44
|
+
|
|
45
|
+
def install_commands #:nodoc:
|
|
46
|
+
command = @options[:dependencies_only] ? 'build-dep' : 'install'
|
|
47
|
+
"DEBCONF_TERSE='yes' DEBIAN_PRIORITY='critical' DEBIAN_FRONTEND=noninteractive apt-get -qyu #{command} #{@packages.join(' ')}"
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
end
|
|
51
|
+
end
|
|
52
|
+
end
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
module Sprinkle
|
|
2
|
+
module Installers
|
|
3
|
+
# = OpenBSD and FreeBSD Port Installer
|
|
4
|
+
#
|
|
5
|
+
# The Port installer installs OpenBSD and FreeBSD ports.
|
|
6
|
+
# Before usage, the ports sytem must be installed and
|
|
7
|
+
# read on the target operating system.
|
|
8
|
+
#
|
|
9
|
+
# == Example Usage
|
|
10
|
+
#
|
|
11
|
+
# Installing the magic_beans port.
|
|
12
|
+
#
|
|
13
|
+
# package :magic_beans do
|
|
14
|
+
# bsd_port 'magic/magic_beans'
|
|
15
|
+
# end
|
|
16
|
+
#
|
|
17
|
+
class BsdPort < Installer
|
|
18
|
+
attr_accessor :port #:nodoc:
|
|
19
|
+
|
|
20
|
+
def initialize(parent, port, &block) #:nodoc:
|
|
21
|
+
super parent, &block
|
|
22
|
+
@port = port
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
protected
|
|
26
|
+
|
|
27
|
+
def install_commands #:nodoc:
|
|
28
|
+
"sh -c 'cd /usr/ports/#{@port} && make BATCH=yes install clean'"
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
end
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
module Sprinkle
|
|
2
|
+
module Installers
|
|
3
|
+
# = Deb Package Installer
|
|
4
|
+
#
|
|
5
|
+
# The Deb installer installs deb packages sourced from a remote URL
|
|
6
|
+
#
|
|
7
|
+
# == Example Usage
|
|
8
|
+
#
|
|
9
|
+
# Installing the magic_beans deb.
|
|
10
|
+
#
|
|
11
|
+
# package :magic_beans do
|
|
12
|
+
# deb 'http://debs.example.com/magic_beans.deb'
|
|
13
|
+
# end
|
|
14
|
+
#
|
|
15
|
+
class Deb < Installer
|
|
16
|
+
attr_accessor :packages #:nodoc:
|
|
17
|
+
|
|
18
|
+
def initialize(parent, packages, &block) #:nodoc:
|
|
19
|
+
super parent, &block
|
|
20
|
+
packages = [packages] unless packages.is_a? Array
|
|
21
|
+
@packages = packages
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
protected
|
|
25
|
+
|
|
26
|
+
def install_commands #:nodoc:
|
|
27
|
+
"wget -cq --directory-prefix=/tmp #{@packages.join(' ')}; dpkg -i #{@packages.collect{|p| "/tmp/#{package_name(p)}"}.join(" ")}"
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
private
|
|
31
|
+
|
|
32
|
+
def package_name(url)
|
|
33
|
+
url.split('/').last
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
end
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
module Sprinkle
|
|
2
|
+
module Installers
|
|
3
|
+
# = FreeBSD Package Installer
|
|
4
|
+
#
|
|
5
|
+
# The Pkg package installer installs FreeBSD packages.
|
|
6
|
+
#
|
|
7
|
+
# == Example Usage
|
|
8
|
+
#
|
|
9
|
+
# Installing the magic_beans package.
|
|
10
|
+
#
|
|
11
|
+
# package :magic_beans do
|
|
12
|
+
# freebsd_pkg 'magic_beans'
|
|
13
|
+
# end
|
|
14
|
+
#
|
|
15
|
+
# You may also specify multiple packages as an array:
|
|
16
|
+
#
|
|
17
|
+
# package :magic_beans do
|
|
18
|
+
# freebsd_pkg %w(magic_beans magic_sauce)
|
|
19
|
+
# end
|
|
20
|
+
class FreebsdPkg < Installer
|
|
21
|
+
attr_accessor :packages #:nodoc:
|
|
22
|
+
|
|
23
|
+
def initialize(parent, packages, &block) #:nodoc:
|
|
24
|
+
super parent, &block
|
|
25
|
+
packages = [packages] unless packages.is_a? Array
|
|
26
|
+
@packages = packages
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
protected
|
|
30
|
+
|
|
31
|
+
def install_commands #:nodoc:
|
|
32
|
+
"pkg_add -r #{@packages.join(' ')}"
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
end
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
module Sprinkle
|
|
2
|
+
module Installers
|
|
3
|
+
# = Ruby Gem Package Installer
|
|
4
|
+
#
|
|
5
|
+
# The gem package installer installs ruby gems.
|
|
6
|
+
#
|
|
7
|
+
# The installer has a single optional configuration: source.
|
|
8
|
+
# By changing source you can specify a given ruby gems
|
|
9
|
+
# repository from which to install.
|
|
10
|
+
#
|
|
11
|
+
# == Example Usage
|
|
12
|
+
#
|
|
13
|
+
# First, a simple installation of the magic_beans gem:
|
|
14
|
+
#
|
|
15
|
+
# package :magic_beans do
|
|
16
|
+
# description "Beans beans they're good for your heart..."
|
|
17
|
+
# gem 'magic_beans'
|
|
18
|
+
# end
|
|
19
|
+
#
|
|
20
|
+
# Second, install magic_beans gem from github:
|
|
21
|
+
#
|
|
22
|
+
# package :magic_beans do
|
|
23
|
+
# gem 'magic_beans_package' do
|
|
24
|
+
# source 'http://gems.github.com'
|
|
25
|
+
# end
|
|
26
|
+
# end
|
|
27
|
+
#
|
|
28
|
+
# As you can see, setting options is as simple as creating a
|
|
29
|
+
# block and calling the option as a method with the value as
|
|
30
|
+
# its parameter.
|
|
31
|
+
class Gem < Installer
|
|
32
|
+
attr_accessor :gem #:nodoc:
|
|
33
|
+
|
|
34
|
+
def initialize(parent, gem, options = {}, &block) #:nodoc:
|
|
35
|
+
super parent, options, &block
|
|
36
|
+
@gem = gem
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
def source(location = nil) #:nodoc:
|
|
40
|
+
# package defines an installer called source so here we specify a method directly
|
|
41
|
+
# rather than rely on the automatic options processing since packages' method missing
|
|
42
|
+
# won't be run
|
|
43
|
+
return @options[:source] unless location
|
|
44
|
+
@options[:source] = location
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
protected
|
|
48
|
+
|
|
49
|
+
# rubygems 0.9.5+ installs dependencies by default, and does platform selection
|
|
50
|
+
|
|
51
|
+
def install_commands #:nodoc:
|
|
52
|
+
cmd = "gem install #{gem}"
|
|
53
|
+
cmd << " --version '#{version}'" if version
|
|
54
|
+
cmd << " --source #{source}" if source
|
|
55
|
+
cmd << " --install-dir #{repository}" if option?(:repository)
|
|
56
|
+
cmd << " --no-rdoc --no-ri" unless option?(:build_docs)
|
|
57
|
+
cmd << " -- #{build_flags}" if option?(:build_flags)
|
|
58
|
+
cmd
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
end
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
module Sprinkle
|
|
2
|
+
module Installers
|
|
3
|
+
# The base class which all installers must subclass, this class makes
|
|
4
|
+
# sure all installers share some general features, which are outlined
|
|
5
|
+
# below.
|
|
6
|
+
#
|
|
7
|
+
# = Pre/Post Installation Hooks
|
|
8
|
+
#
|
|
9
|
+
# With all intallation methods you have the ability to specify multiple
|
|
10
|
+
# pre/post installation hooks. This gives you the ability to specify
|
|
11
|
+
# commands to run before and after an installation takes place. All
|
|
12
|
+
# commands by default are sudo'd so there is no need to include "sudo"
|
|
13
|
+
# in the command itself. There are three ways to specify a pre/post hook.
|
|
14
|
+
#
|
|
15
|
+
# First, a single command:
|
|
16
|
+
#
|
|
17
|
+
# pre :install, 'echo "Hello, World!"'
|
|
18
|
+
# post :install, 'rm -rf /'
|
|
19
|
+
#
|
|
20
|
+
# Second, an array of commands:
|
|
21
|
+
#
|
|
22
|
+
# commands = ['echo "First"', 'echo "Then Another"']
|
|
23
|
+
# pre :install, commands
|
|
24
|
+
# post :install, commands
|
|
25
|
+
#
|
|
26
|
+
# Third, a block which returns either a single or multiple commands:
|
|
27
|
+
#
|
|
28
|
+
# pre :install do
|
|
29
|
+
# amount = 7 * 3
|
|
30
|
+
# "echo 'Before we install, lets plant #{amount} magic beans...'"
|
|
31
|
+
# end
|
|
32
|
+
# post :install do
|
|
33
|
+
# ['echo "Now... let's hope they sprout!", 'echo "Indeed they have!"']
|
|
34
|
+
# end
|
|
35
|
+
#
|
|
36
|
+
# = Other Pre/Post Hooks
|
|
37
|
+
#
|
|
38
|
+
# Some installation methods actually grant you more fine grained
|
|
39
|
+
# control of when commands are run rather than a blanket pre :install
|
|
40
|
+
# or post :install. If this is the case, it will be documented on
|
|
41
|
+
# the installation method's corresponding documentation page.
|
|
42
|
+
class Installer
|
|
43
|
+
include Sprinkle::Configurable
|
|
44
|
+
attr_accessor :delivery, :package, :options, :pre, :post #:nodoc:
|
|
45
|
+
|
|
46
|
+
def initialize(package, options = {}, &block) #:nodoc:
|
|
47
|
+
@package = package
|
|
48
|
+
@options = options
|
|
49
|
+
@pre = {}; @post = {}
|
|
50
|
+
self.instance_eval(&block) if block
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
def pre(stage, *commands)
|
|
54
|
+
@pre[stage] ||= []
|
|
55
|
+
@pre[stage] += commands
|
|
56
|
+
@pre[stage] += [yield] if block_given?
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
def post(stage, *commands)
|
|
60
|
+
@post[stage] ||= []
|
|
61
|
+
@post[stage] += commands
|
|
62
|
+
@post[stage] += [yield] if block_given?
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
def process(roles) #:nodoc:
|
|
66
|
+
assert_delivery
|
|
67
|
+
|
|
68
|
+
if logger.debug?
|
|
69
|
+
sequence = install_sequence; sequence = sequence.join('; ') if sequence.is_a? Array
|
|
70
|
+
logger.debug "#{@package.name} install sequence: #{sequence} for roles: #{roles}\n"
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
unless Sprinkle::OPTIONS[:testing]
|
|
74
|
+
logger.info "--> Installing #{package.name} for roles: #{roles}"
|
|
75
|
+
@delivery.process(@package.name, install_sequence, roles)
|
|
76
|
+
end
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
protected
|
|
80
|
+
# More complicated installers that have different stages, and require pre/post commands
|
|
81
|
+
# within stages can override install_sequence and take complete control of the install
|
|
82
|
+
# command sequence construction (eg. source based installer).
|
|
83
|
+
def install_sequence
|
|
84
|
+
commands = pre_commands(:install) + [ install_commands ] + post_commands(:install)
|
|
85
|
+
commands.flatten
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
# A concrete installer (subclass of this virtual class) must override this method
|
|
89
|
+
# and return the commands it needs to run as either a string or an array.
|
|
90
|
+
#
|
|
91
|
+
# <b>Overriding this method is required.</b>
|
|
92
|
+
def install_commands
|
|
93
|
+
raise 'Concrete installers implement this to specify commands to run to install their respective packages'
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
def pre_commands(stage) #:nodoc:
|
|
97
|
+
dress @pre[stage] || [], :pre
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
def post_commands(stage) #:nodoc:
|
|
101
|
+
dress @post[stage] || [], :post
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
# Concrete installers (subclasses of this virtual class) can override this method to
|
|
105
|
+
# specify stage-specific (pre-installation, post-installation, etc.) modifications
|
|
106
|
+
# of commands.
|
|
107
|
+
#
|
|
108
|
+
# An example usage of overriding this would be to prefix all commands for a
|
|
109
|
+
# certain stage to change to a certain directory. An example is given below:
|
|
110
|
+
#
|
|
111
|
+
# def dress(commands, stage)
|
|
112
|
+
# commands.collect { |x| "cd #{magic_beans_path} && #{x}" }
|
|
113
|
+
# end
|
|
114
|
+
#
|
|
115
|
+
# By default, no modifications are made to the commands.
|
|
116
|
+
def dress(commands, stage); commands; end
|
|
117
|
+
|
|
118
|
+
end
|
|
119
|
+
end
|
|
120
|
+
end
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
module Sprinkle
|
|
2
|
+
module Installers
|
|
3
|
+
# = Mac OS X Port Installer (macports)
|
|
4
|
+
#
|
|
5
|
+
# The Port installer installs macports ports.
|
|
6
|
+
#
|
|
7
|
+
# == Example Usage
|
|
8
|
+
#
|
|
9
|
+
# Installing the magic_beans port.
|
|
10
|
+
#
|
|
11
|
+
# package :magic_beans do
|
|
12
|
+
# mac_port 'magic/magic_beans'
|
|
13
|
+
# end
|
|
14
|
+
#
|
|
15
|
+
# == Notes
|
|
16
|
+
# Before MacPorts packages can be installed, the PATH
|
|
17
|
+
# environment variable probably has to be changed so
|
|
18
|
+
# capistrano can find the /opt/local/bin/port executable
|
|
19
|
+
#
|
|
20
|
+
# You must set PATH in ~/.ssh/environment on the remote
|
|
21
|
+
# system and enable 'PermitUserEnvironment yes' in /etc/sshd_config
|
|
22
|
+
class MacPort < Installer
|
|
23
|
+
attr_accessor :port #:nodoc:
|
|
24
|
+
|
|
25
|
+
def initialize(parent, port, &block) #:nodoc:
|
|
26
|
+
super parent, &block
|
|
27
|
+
@port = port
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
protected
|
|
31
|
+
|
|
32
|
+
def install_commands #:nodoc:
|
|
33
|
+
"port install #{@port}"
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
end
|