teleport 1.0.16 → 1.0.17

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -6,7 +6,7 @@ Teleport strives to be **idempotent** - you can run it repeatedly without changi
6
6
 
7
7
  Teleport is great for managing a small number of hosted machines, either dedicated or in the cloud. Due to it's opinionated nature and limited scope you may find that it works better for you than other, more complicated tools.
8
8
 
9
- At the moment Teleport supports **Ubuntu 10.04/10.10/11.04/11.10/12.04/12.10 with Ruby 1.8.7, 1.9.2, 1.9.3, or [REE](http://www.rubyenterpriseedition.com/)**.
9
+ At the moment Teleport supports **Ubuntu 10.04-13.04 with Ruby 1.8.7, 1.9.2, 1.9.3, 2.0.0 or [REE](http://www.rubyenterpriseedition.com/)**.
10
10
 
11
11
  ## Getting Started
12
12
 
@@ -8,6 +8,27 @@
8
8
  # bail on errors
9
9
  set -eu
10
10
 
11
+ #
12
+ # Some package history:
13
+ #
14
+ # Ruby 1.8.7
15
+ #
16
+ # 10.04 (lucid):
17
+ # libopenssl-ruby libreadline-ruby irb rdoc ri ruby ruby-dev
18
+ # 11.04 (maverick):
19
+ # libopenssl-ruby/libreadline-ruby/irb now provided by libruby
20
+ # rdoc now provided by ruby
21
+ # we can still use the same package list, though. harmless.
22
+ # 13.04 (raring):
23
+ # the default ruby package is now 1.9.1 (1.9.3)
24
+ # we now use ruby1.8, which includes everything
25
+ #
26
+ #
27
+ # Ruby 1.9.3
28
+ #
29
+ # 12.04 (precise):
30
+ # ruby1.9.3 package is now available
31
+
11
32
 
12
33
 
13
34
  #
@@ -49,7 +70,11 @@ function install_ruby() {
49
70
  }
50
71
 
51
72
  function install_ruby_187() {
52
- apt-get -y install irb libopenssl-ruby libreadline-ruby rdoc ri ruby ruby-dev
73
+ if [ "${DISTRIB_RELEASE//[.]/}" -lt "1304" ] ; then
74
+ apt-get -y install irb libopenssl-ruby libreadline-ruby rdoc ri ruby ruby-dev
75
+ else
76
+ apt-get -y install ruby1.8
77
+ fi
53
78
  install_rubygems
54
79
  }
55
80
 
@@ -215,7 +240,7 @@ fi
215
240
  # which version?
216
241
  . /etc/lsb-release
217
242
  case $DISTRIB_RELEASE in
218
- 10.* | 11.* | 12.04 | 12.10 ) ;; # nop
243
+ 10.* | 11.* | 12.* | 13.04 ) ;; # nop
219
244
  *)
220
245
  banner "warning - Ubuntu $DISTRIB_RELEASE hasn't been tested with Teleport yet"
221
246
  esac
@@ -1,4 +1,4 @@
1
1
  module Teleport
2
2
  # Gem version
3
- VERSION = "1.0.16"
3
+ VERSION = "1.0.17"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: teleport
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.16
4
+ version: 1.0.17
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-05-22 00:00:00.000000000 Z
12
+ date: 2013-05-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: amazon-ec2
@@ -136,7 +136,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
136
136
  version: '0'
137
137
  segments:
138
138
  - 0
139
- hash: -1414408985001798649
139
+ hash: -1897754388203102908
140
140
  required_rubygems_version: !ruby/object:Gem::Requirement
141
141
  none: false
142
142
  requirements:
@@ -145,7 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
145
145
  version: '0'
146
146
  segments:
147
147
  - 0
148
- hash: -1414408985001798649
148
+ hash: -1897754388203102908
149
149
  requirements: []
150
150
  rubyforge_project: teleport
151
151
  rubygems_version: 1.8.24