Sha256: e28baf2aeec17f39eab0d15f4ada6f12120e64d7a266bbf6963ba0f22cbedadb

Contents?: true

Size: 1.59 KB

Versions: 16

Compression:

Stored size: 1.59 KB

Contents

# Cfn Status

Helper library provides status of CloudFormation stack.

## Usage

Add this line to your gem's gemspec:

```ruby
  gem.add_development_dependency "cfn-status"
```

Require it to your library:

```ruby
require "cfn_status"
```

Use like so:

```ruby
status = CfnStatus.new(stack_name)
status.run # prints out stack events
```

The `status.run` will:

* print out the most recent stack events and return right away if the stack is in a completed state.
* print out the most recent stack events and poll for more events until the stack in a completed state.

To find out whether the most recent completed state of the stack was a success or a fail, you can use `status.success?`.

```ruby
status.success?
```

If you need to just wait for the stack to complete, you can also use `status.wait`.

```ruby
status.wait
status.success?
```

## Development

After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).

## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/cfn-status.

## License

The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
jets-2.3.19 vendor/cfn-status/README.md
jets-2.3.18 vendor/cfn-status/README.md
jets-2.3.17 vendor/cfn-status/README.md
jets-2.3.16 vendor/cfn-status/README.md
jets-2.3.15 vendor/cfn-status/README.md
jets-2.3.14 vendor/cfn-status/README.md
jets-2.3.13 vendor/cfn-status/README.md
jets-2.3.12 vendor/cfn-status/README.md
jets-2.3.11 vendor/cfn-status/README.md
jets-2.3.10 vendor/cfn-status/README.md
jets-2.3.9 vendor/cfn-status/README.md
jets-2.3.8 vendor/cfn-status/README.md
jets-2.3.7 vendor/cfn-status/README.md
jets-2.3.6 vendor/cfn-status/README.md
jets-2.3.5 vendor/cfn-status/README.md
jets-2.3.4 vendor/cfn-status/README.md