README.rdoc in rest_connection-0.0.23 vs README.rdoc in rest_connection-0.1.0
- old
+ new
@@ -2,11 +2,11 @@
== Install
==== Installing with rubygems
"gem install rest_connection"
==== Installing from source
- "git clone http://github.com/jeremyd/rest_connection.git"
+ "git clone http://github.com/twrodriguez/rest_connection.git"
"gem install jeweler rspec"
"rake check_dependencies" <- Install any gems listed.
"rake install"
== Configuration
@@ -38,11 +38,11 @@
my_servers = deployment.servers
my_servers.each { |s| s.stop }
my_servers.each { |s| s.wait_for_state("stopped") }
=== Activate an Ec2ServerArray / Display instances IPs
-
- my_array = Ec2ServerArray.find(opts[:href])
+
+ my_array = Ec2ServerArray.find(opts[:href])
my_array.active = true
my_array.save
puts my_array.instances.map { |i| i['ip-address'] }