ec2_tools 0.2.0 → 0.2.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/README.rdoc +14 -1
- data/VERSION +1 -1
- data/ec2_tools.gemspec +1 -1
- metadata +2 -2
    
        data/README.rdoc
    CHANGED
    
    | @@ -1,6 +1,19 @@ | |
| 1 1 | 
             
            = ec2_tools
         | 
| 2 2 |  | 
| 3 | 
            -
             | 
| 3 | 
            +
            Ec2Tools is a Ruby library for Amazon EC2
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            == Getting started
         | 
| 6 | 
            +
            write config file in <tt>config/amazon_ec2.yml</tt> or <tt>.account.yml</tt>
         | 
| 7 | 
            +
             | 
| 8 | 
            +
             key: YOUR_ACCESS_KEY_ID
         | 
| 9 | 
            +
             secret: YOUR_SECRET_ACCESS_KEY
         | 
| 10 | 
            +
             server: YOUR_EC2_REGION
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            and create instance 
         | 
| 13 | 
            +
             Ec2Tools.new
         | 
| 14 | 
            +
             | 
| 15 | 
            +
            OR specify config file when create instance
         | 
| 16 | 
            +
             Ec2Tools.new('config.yml')
         | 
| 4 17 |  | 
| 5 18 | 
             
            == Contributing to ec2_tools
         | 
| 6 19 |  | 
    
        data/VERSION
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            0.2. | 
| 1 | 
            +
            0.2.1
         | 
    
        data/ec2_tools.gemspec
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -2,7 +2,7 @@ | |
| 2 2 | 
             
            name: ec2_tools
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version 
         | 
| 4 4 | 
             
              prerelease: 
         | 
| 5 | 
            -
              version: 0.2. | 
| 5 | 
            +
              version: 0.2.1
         | 
| 6 6 | 
             
            platform: ruby
         | 
| 7 7 | 
             
            authors: 
         | 
| 8 8 | 
             
            - Yamada Masaki
         | 
| @@ -108,7 +108,7 @@ required_ruby_version: !ruby/object:Gem::Requirement | |
| 108 108 | 
             
              requirements: 
         | 
| 109 109 | 
             
              - - ">="
         | 
| 110 110 | 
             
                - !ruby/object:Gem::Version 
         | 
| 111 | 
            -
                  hash:  | 
| 111 | 
            +
                  hash: -990988579
         | 
| 112 112 | 
             
                  segments: 
         | 
| 113 113 | 
             
                  - 0
         | 
| 114 114 | 
             
                  version: "0"
         |