cluster 0.7.0 → 0.7.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/cluster.gemspec +1 -1
- data/instance_setup.sh +6 -1
- data/lib/cluster/version.rb +1 -3
- metadata +3 -3
data/cluster.gemspec
CHANGED
|
@@ -2,7 +2,7 @@ PKG_NAME = ENV['PKG_NAME'] || 'cluster'
|
|
|
2
2
|
require File.join(File.dirname(__FILE__), 'lib', PKG_NAME, 'version')
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |gem|
|
|
5
|
-
gem.version = Cluster.version
|
|
5
|
+
gem.version = Cluster.version
|
|
6
6
|
gem.name = Cluster::NAME
|
|
7
7
|
gem.executables = [Cluster::NAME]
|
|
8
8
|
gem.summary = %Q{Cluster control - manage many machines in many roles}
|
data/instance_setup.sh
CHANGED
|
@@ -91,7 +91,9 @@ wget http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p362.tar.gz
|
|
|
91
91
|
tar xzf ruby*
|
|
92
92
|
cd ruby*
|
|
93
93
|
./configure && make && make install
|
|
94
|
-
ln -sf /usr/bin/ruby /usr/bin/ruby1.9
|
|
94
|
+
ln -sf /usr/local/bin/ruby /usr/local/bin/ruby1.9
|
|
95
|
+
|
|
96
|
+
gem update --system
|
|
95
97
|
|
|
96
98
|
## BUNDLER
|
|
97
99
|
mkdir /etc/bundler
|
|
@@ -108,6 +110,9 @@ cat >Gemfile <<EOF
|
|
|
108
110
|
source 'http://rubygems.org'
|
|
109
111
|
|
|
110
112
|
gem 'passenger'
|
|
113
|
+
gem 'cluster'
|
|
114
|
+
gem 'interactive_editor'
|
|
115
|
+
gem 'bundler'
|
|
111
116
|
EOF
|
|
112
117
|
bundle install --system --gemfile=/etc/bundler/Gemfile --binstubs=/usr/local/bin
|
|
113
118
|
|
data/lib/cluster/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cluster
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-01-
|
|
12
|
+
date: 2013-01-12 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: uuidtools
|
|
@@ -111,7 +111,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
111
111
|
version: '0'
|
|
112
112
|
requirements: []
|
|
113
113
|
rubyforge_project:
|
|
114
|
-
rubygems_version: 1.8.
|
|
114
|
+
rubygems_version: 1.8.24
|
|
115
115
|
signing_key:
|
|
116
116
|
specification_version: 3
|
|
117
117
|
summary: Cluster control - manage many machines in many roles
|