Sha256: bec87ad7c146e51c398c4bdc91d380276699514562797946a2ef9dc326e89134

Contents?: true

Size: 1.69 KB

Versions: 55

Compression:

Stored size: 1.69 KB

Contents

# Cfn Status

[![BoltOps Badge](https://img.boltops.com/boltops/badges/boltops-badge.png)](https://www.boltops.com)

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

55 entries across 55 versions & 2 rubygems

Version Path
cfn-status-0.6.1 README.md
cfn-status-0.6.0 README.md
cfn-status-0.5.0 README.md
cfn-status-0.4.6 README.md
cfn-status-0.4.5 README.md
cfn-status-0.4.4 README.md
lono-7.5.2 vendor/cfn-status/README.md
cfn-status-0.4.3 README.md
lono-7.5.1 vendor/cfn-status/README.md
lono-7.5.0 vendor/cfn-status/README.md
lono-7.4.11 vendor/cfn-status/README.md
lono-7.4.10 vendor/cfn-status/README.md
lono-7.4.9 vendor/cfn-status/README.md
lono-7.4.8 vendor/cfn-status/README.md
lono-7.4.7 vendor/cfn-status/README.md
lono-7.4.6 vendor/cfn-status/README.md
lono-7.4.5 vendor/cfn-status/README.md
lono-7.4.4 vendor/cfn-status/README.md
lono-7.4.3 vendor/cfn-status/README.md
lono-7.4.2 vendor/cfn-status/README.md