https://github.com/movableink/awslib
MovableInk::AWS gem
https://github.com/movableink/awslib
Last synced: 3 months ago
JSON representation
MovableInk::AWS gem
- Host: GitHub
- URL: https://github.com/movableink/awslib
- Owner: movableink
- Created: 2017-07-17T13:36:20.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2025-03-15T04:58:48.000Z (3 months ago)
- Last Synced: 2025-03-15T05:21:20.000Z (3 months ago)
- Language: Ruby
- Size: 327 KB
- Stars: 0
- Watchers: 32
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MovableInk::AWS gem
## Building
`gem build MovableInkAWS.gemspec`
## "Publishing"
Travis will automatically publish your gem to rubygems.org when you tag a release and push to origin.
Before you do so, ensure that the version in `lib/movable_ink/version.rb` matches the tag you're creating,
e.g. Version `1.0.0` in `lib/movable_ink/version.rb` should be tagged as `v1.0.0`## Installing
### From rubygems.org
`gem install MovableInkAWS -v `
### Locally
`gem install MovableInkAWS-.gem`
## Using
```ruby
require 'movable_ink/aws'miaws = MovableInk::AWS.new
miaws.datacenter
miaws.instance_ip_addresses_by_role(role: 'varnish').map { |m| "http://#{m}:8080" }
...
```