== ec2-instance This is a small set of extensions for common uses of the amazon-ec2 gem. It is intended to be used in processes which are running on actual ec2 instances. It uses the Instance module and other functions in EC2::Base to extract useful information from the hashes returned and to provide useful actions. It also includes the Instance class which is more convenient to work with than an elaborate hash, though perhaps not universally more convenient. == Example With an instance of EC2::Base: @ec2.launch_time => Returns a Time object with a value representing the time amazon says this instance launched. @ec2.active_instances => [#<AWS::EC2::Instancex:0x7fe49d65eeb8 @launch_time="2010-08-23T19:50:35.000Z", @instance_id="i-354b215f", @status="running">, #<AWS::EC2::Instancex:0x7fe49d65ebe8 @launch_time="2010-09-12T07:42:14.000Z", @instance_id="i-3fb69355", @status="running">] == Source Available at http://github.com/bdigital/ec2-instance == License Offered under the MIT license: Copyright (c) 2010 Robert Berry Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Project
ec2-instance
Monkey patch some amazon-ec2 gem classes and modules to handle common operations.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Development
Dependencies
Runtime
>= 0
Project Readme