beaker-aws 0.9.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.github/dependabot.yml +8 -0
- data/.github/workflows/release.yml +32 -0
- data/.github/workflows/test.yml +36 -0
- data/CHANGELOG.md +26 -2
- data/Gemfile +10 -4
- data/HISTORY.md +72 -0
- data/README.md +28 -2
- data/Rakefile +10 -27
- data/beaker-aws.gemspec +2 -5
- data/lib/beaker-aws/version.rb +1 -1
- data/lib/beaker/hypervisor/aws_sdk.rb +8 -2
- data/spec/spec_helper.rb +24 -1
- metadata +13 -52
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 18c49f3a2ee5431a627a1a80bb7c798947c0be6fbb02b2267ea4e988fbe3a530
|
4
|
+
data.tar.gz: 0d1d00d6657a5d63e00e8a0a3190eb4fb539591e4ec24203000da5192da1c1f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5ee72b499ae5ae396221fda529da4f378dde67d6f3383564d8483ec8b46cae567fac276ed333b7b813feb90c35a970827d9e5dc87a1e60edf890b43d9b83cd9f
|
7
|
+
data.tar.gz: 3afed442c687d611f377085a8d94e7b9d10cd63440de561a9fa6c960bdc031259dee362389c49e61f42212f735c40a9d02f6c0d930a0a1d5f612bb69e7699b2d
|
@@ -0,0 +1,32 @@
|
|
1
|
+
name: Release
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
tags:
|
6
|
+
- '*'
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
release:
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
if: github.repository_owner == 'voxpupuli'
|
12
|
+
steps:
|
13
|
+
- uses: actions/checkout@v2
|
14
|
+
- name: Install Ruby 3.0
|
15
|
+
uses: ruby/setup-ruby@v1
|
16
|
+
with:
|
17
|
+
ruby-version: '3.0'
|
18
|
+
env:
|
19
|
+
BUNDLE_WITHOUT: release
|
20
|
+
- name: Build gem
|
21
|
+
run: gem build *.gemspec
|
22
|
+
- name: Publish gem to rubygems.org
|
23
|
+
run: gem push *.gem
|
24
|
+
env:
|
25
|
+
GEM_HOST_API_KEY: '${{ secrets.RUBYGEMS_AUTH_TOKEN }}'
|
26
|
+
- name: Setup GitHub packages access
|
27
|
+
run: |
|
28
|
+
mkdir -p ~/.gem
|
29
|
+
echo ":github: Bearer ${{ secrets.GITHUB_TOKEN }}" >> ~/.gem/credentials
|
30
|
+
chmod 0600 ~/.gem/credentials
|
31
|
+
- name: Publish gem to GitHub packages
|
32
|
+
run: gem push --key github --host https://rubygems.pkg.github.com/voxpupuli *.gem
|
@@ -0,0 +1,36 @@
|
|
1
|
+
name: Test
|
2
|
+
|
3
|
+
on:
|
4
|
+
- pull_request
|
5
|
+
- push
|
6
|
+
|
7
|
+
env:
|
8
|
+
BUNDLE_WITHOUT: release
|
9
|
+
|
10
|
+
jobs:
|
11
|
+
rspec:
|
12
|
+
runs-on: ubuntu-latest
|
13
|
+
strategy:
|
14
|
+
fail-fast: true
|
15
|
+
matrix:
|
16
|
+
include:
|
17
|
+
- ruby: "2.4"
|
18
|
+
- ruby: "2.5"
|
19
|
+
- ruby: "2.6"
|
20
|
+
- ruby: "2.7"
|
21
|
+
- ruby: "3.0"
|
22
|
+
coverage: "yes"
|
23
|
+
env:
|
24
|
+
COVERAGE: ${{ matrix.coverage }}
|
25
|
+
name: RSpec - Ruby ${{ matrix.ruby }}
|
26
|
+
steps:
|
27
|
+
- uses: actions/checkout@v2
|
28
|
+
- name: Install Ruby ${{ matrix.ruby }}
|
29
|
+
uses: ruby/setup-ruby@v1
|
30
|
+
with:
|
31
|
+
ruby-version: ${{ matrix.ruby }}
|
32
|
+
bundler-cache: true
|
33
|
+
- name: spec tests
|
34
|
+
run: bundle exec rake test:spec
|
35
|
+
- name: Verify gem builds
|
36
|
+
run: gem build *.gemspec
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,27 @@
|
|
1
|
-
#
|
1
|
+
# Changelog
|
2
2
|
|
3
|
-
[
|
3
|
+
## [1.0.0](https://github.com/voxpupuli/beaker-aws/tree/1.0.0) (2021-07-22)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-aws/compare/0.9.0...1.0.0)
|
6
|
+
|
7
|
+
**Fixed bugs:**
|
8
|
+
|
9
|
+
- Fix 'InvalidInstanceIDNotFound' exception not being handled [\#27](https://github.com/voxpupuli/beaker-aws/pull/27) ([andersonvaf](https://github.com/andersonvaf))
|
10
|
+
|
11
|
+
**Merged pull requests:**
|
12
|
+
|
13
|
+
- Update GitHub actions + README.md [\#30](https://github.com/voxpupuli/beaker-aws/pull/30) ([bastelfreak](https://github.com/bastelfreak))
|
14
|
+
- Update fakefs requirement from ~\> 0.6, \<= 0.13.3 to ~\> 1.3, \<= 1.3.3 [\#29](https://github.com/voxpupuli/beaker-aws/pull/29) ([dependabot[bot]](https://github.com/apps/dependabot))
|
15
|
+
- Update rake requirement from ~\> 10.1 to ~\> 13.0 [\#28](https://github.com/voxpupuli/beaker-aws/pull/28) ([dependabot[bot]](https://github.com/apps/dependabot))
|
16
|
+
- Add GH Actions and Dependabot configs [\#25](https://github.com/voxpupuli/beaker-aws/pull/25) ([genebean](https://github.com/genebean))
|
17
|
+
|
18
|
+
## [0.9.0](https://github.com/voxpupuli/beaker-aws/tree/0.9.0) (2019-02-20)
|
19
|
+
|
20
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-aws/compare/0.8.1...0.9.0)
|
21
|
+
|
22
|
+
**Merged pull requests:**
|
23
|
+
|
24
|
+
- \(PDK-1275\) fixes for the AWS hypervisor to account for netdev instances [\#24](https://github.com/voxpupuli/beaker-aws/pull/24) ([Thomas-Franklin](https://github.com/Thomas-Franklin))
|
4
25
|
|
5
26
|
## [0.8.1](https://github.com/puppetlabs/beaker-aws/tree/0.8.0) (2018-12-21)
|
6
27
|
[Full Changelog](https://github.com/puppetlabs/beaker-aws/compare/0.8.0...0.8.1)
|
@@ -74,3 +95,6 @@
|
|
74
95
|
|
75
96
|
|
76
97
|
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
98
|
+
|
99
|
+
|
100
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|
data/Gemfile
CHANGED
@@ -1,9 +1,7 @@
|
|
1
|
-
source ENV['GEM_SOURCE'] ||
|
1
|
+
source ENV['GEM_SOURCE'] || 'https://rubygems.org'
|
2
2
|
|
3
3
|
gemspec
|
4
4
|
|
5
|
-
|
6
|
-
|
7
5
|
def location_for(place, fake_version = nil)
|
8
6
|
if place =~ /^git:([^#]*)#(.*)/
|
9
7
|
[fake_version, { :git => $1, :branch => $2, :require => false }].compact
|
@@ -18,9 +16,17 @@ end
|
|
18
16
|
# We don't put beaker in as a test dependency because we
|
19
17
|
# don't want to create a transitive dependency
|
20
18
|
group :acceptance_testing do
|
21
|
-
gem "beaker", *location_for(ENV['BEAKER_VERSION'] || '
|
19
|
+
gem "beaker", *location_for(ENV['BEAKER_VERSION'] || '>= 4.30')
|
22
20
|
end
|
23
21
|
|
22
|
+
group :release do
|
23
|
+
gem 'github_changelog_generator', require: false
|
24
|
+
end
|
25
|
+
|
26
|
+
group :coverage, optional: ENV['COVERAGE']!='yes' do
|
27
|
+
gem 'simplecov-console', :require => false
|
28
|
+
gem 'codecov', :require => false
|
29
|
+
end
|
24
30
|
|
25
31
|
if File.exists? "#{__FILE__}.local"
|
26
32
|
eval(File.read("#{__FILE__}.local"), binding)
|
data/HISTORY.md
ADDED
@@ -0,0 +1,72 @@
|
|
1
|
+
## [0.8.1](https://github.com/puppetlabs/beaker-aws/tree/0.8.0) (2018-12-21)
|
2
|
+
[Full Changelog](https://github.com/puppetlabs/beaker-aws/compare/0.8.0...0.8.1)
|
3
|
+
|
4
|
+
**Merged pull requests:**
|
5
|
+
|
6
|
+
- \(maint\) Fix BKR-1546 for the case where subnet is nil
|
7
|
+
|
8
|
+
## [0.8.0](https://github.com/puppetlabs/beaker-aws/tree/0.8.0) (2018-12-12)
|
9
|
+
[Full Changelog](https://github.com/puppetlabs/beaker-aws/compare/0.7.0...0.8.0)
|
10
|
+
|
11
|
+
**Merged pull requests:**
|
12
|
+
|
13
|
+
- \(BKR-1546\) Added associate\_public\_ip\_address as host variable that is inserted into the AWS config if set
|
14
|
+
|
15
|
+
## [0.7.0](https://github.com/puppetlabs/beaker-aws/tree/0.7.0) (2018-08-27)
|
16
|
+
[Full Changelog](https://github.com/puppetlabs/beaker-aws/compare/0.6.0...0.7.0)
|
17
|
+
|
18
|
+
**Merged pull requests:**
|
19
|
+
|
20
|
+
- \(BKR-1522\) Add options to drop some of the provisioning
|
21
|
+
- \(BKR-1509\) Hypervisor usage instructions for Beaker 4.0
|
22
|
+
|
23
|
+
## [0.6.0](https://github.com/puppetlabs/beaker-aws/tree/0.6.0) (2018-07-16)
|
24
|
+
[Full Changelog](https://github.com/puppetlabs/beaker-aws/compare/0.5.0...0.6.0)
|
25
|
+
|
26
|
+
**Merged pull requests:**
|
27
|
+
|
28
|
+
- \(BKR-1481\) Rewrite beaker-aws to use shared .fog parsing [\#15](https://github.com/puppetlabs/beaker-aws/pull/15) ([Dakta](https://github.com/Dakta))
|
29
|
+
- Custom CIDRs for security group, none default VPC fixes [\#14](https://github.com/puppetlabs/beaker-aws/pull/14) ([ardeshireshghi](https://github.com/ardeshireshghi))
|
30
|
+
- \(MAINT\) Document Acceptance Test Setup [\#13](https://github.com/puppetlabs/beaker-aws/pull/13) ([Dakta](https://github.com/Dakta))
|
31
|
+
|
32
|
+
## [0.5.0](https://github.com/puppetlabs/beaker-aws/tree/0.5.0) (2018-06-13)
|
33
|
+
[Full Changelog](https://github.com/puppetlabs/beaker-aws/compare/0.4.0...0.5.0)
|
34
|
+
|
35
|
+
**Merged pull requests:**
|
36
|
+
|
37
|
+
- \(MAINT\) add changelog for 0.5.0 release [\#11](https://github.com/puppetlabs/beaker-aws/pull/11) ([kevpl](https://github.com/kevpl))
|
38
|
+
- \(BKR-1464\) Rewrite to use AWS SDK v3 [\#10](https://github.com/puppetlabs/beaker-aws/pull/10) ([rodjek](https://github.com/rodjek))
|
39
|
+
- \(MAINT\) Bump for new release [\#9](https://github.com/puppetlabs/beaker-aws/pull/9) ([cdenneen](https://github.com/cdenneen))
|
40
|
+
- \(BKR-1199\) Updated documentation for use\_fog\_credentials [\#8](https://github.com/puppetlabs/beaker-aws/pull/8) ([cdenneen](https://github.com/cdenneen))
|
41
|
+
|
42
|
+
## [0.4.0](https://github.com/puppetlabs/beaker-aws/tree/0.4.0) (2017-12-28)
|
43
|
+
[Full Changelog](https://github.com/puppetlabs/beaker-aws/compare/0.3.0...0.4.0)
|
44
|
+
|
45
|
+
**Merged pull requests:**
|
46
|
+
|
47
|
+
- \(bkr-1245\) beaker needs to set session id in aws configuration to enable mfa d bastion account use [\#7](https://github.com/puppetlabs/beaker-aws/pull/7) ([er0ck](https://github.com/er0ck))
|
48
|
+
- \(BKR-1244\) Set vmhostname to host.name since host\[:name\] is awlays nil [\#6](https://github.com/puppetlabs/beaker-aws/pull/6) ([samwoods1](https://github.com/samwoods1))
|
49
|
+
- \(BKR-1199\) adding condition to disable reading fog credentials [\#5](https://github.com/puppetlabs/beaker-aws/pull/5) ([cdenneen](https://github.com/cdenneen))
|
50
|
+
|
51
|
+
## [0.3.0](https://github.com/puppetlabs/beaker-aws/tree/0.3.0) (2017-08-02)
|
52
|
+
[Full Changelog](https://github.com/puppetlabs/beaker-aws/compare/0.2.0...0.3.0)
|
53
|
+
|
54
|
+
**Merged pull requests:**
|
55
|
+
|
56
|
+
- \(maint\) Open the orchestrator port on the master node [\#3](https://github.com/puppetlabs/beaker-aws/pull/3) ([jpartlow](https://github.com/jpartlow))
|
57
|
+
|
58
|
+
## [0.2.0](https://github.com/puppetlabs/beaker-aws/tree/0.2.0) (2017-08-01)
|
59
|
+
[Full Changelog](https://github.com/puppetlabs/beaker-aws/compare/0.1.0...0.2.0)
|
60
|
+
|
61
|
+
**Merged pull requests:**
|
62
|
+
|
63
|
+
- \(PE-21788\) Open port 8170 on ec2 masters [\#2](https://github.com/puppetlabs/beaker-aws/pull/2) ([jpartlow](https://github.com/jpartlow))
|
64
|
+
|
65
|
+
## [0.1.0](https://github.com/puppetlabs/beaker-aws/tree/0.1.0) (2017-07-21)
|
66
|
+
**Merged pull requests:**
|
67
|
+
|
68
|
+
- \(MAINT\) Use AWS's Ubuntu 16.04 AMI [\#1](https://github.com/puppetlabs/beaker-aws/pull/1) ([rishijavia](https://github.com/rishijavia))
|
69
|
+
|
70
|
+
|
71
|
+
|
72
|
+
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
data/README.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# beaker-aws
|
2
2
|
|
3
|
+
[![License](https://img.shields.io/github/license/voxpupuli/beaker-aws.svg)](https://github.com/voxpupuli/beaker-aws/blob/master/LICENSE)
|
4
|
+
[![Test](https://github.com/voxpupuli/beaker-aws/actions/workflows/test.yml/badge.svg)](https://github.com/voxpupuli/beaker-aws/actions/workflows/test.yml)
|
5
|
+
[![codecov](https://codecov.io/gh/voxpupuli/beaker-aws/branch/master/graph/badge.svg?token=Mypkl78hvK)](https://codecov.io/gh/voxpupuli/beaker-aws)
|
6
|
+
[![Release](https://github.com/voxpupuli/beaker-aws/actions/workflows/release.yml/badge.svg)](https://github.com/voxpupuli/beaker-aws/actions/workflows/release.yml)
|
7
|
+
[![RubyGem Version](https://img.shields.io/gem/v/beaker-aws.svg)](https://rubygems.org/gems/beaker-aws)
|
8
|
+
[![RubyGem Downloads](https://img.shields.io/gem/dt/beaker-aws.svg)](https://rubygems.org/gems/beaker-aws)
|
9
|
+
[![Donated by Puppet Inc](https://img.shields.io/badge/donated%20by-Puppet%20Inc-fb7047.svg)](#transfer-notice)
|
10
|
+
|
3
11
|
Beaker library to use aws hypervisor
|
4
12
|
|
5
13
|
# How to use this wizardry
|
@@ -39,6 +47,24 @@ We run beaker's base acceptance tests with this library to see if the hypervisor
|
|
39
47
|
bundle exec rake test:acceptance
|
40
48
|
```
|
41
49
|
|
42
|
-
|
50
|
+
## Transfer Notice
|
51
|
+
|
52
|
+
This plugin was originally authored by [Puppet Inc](http://puppet.com).
|
53
|
+
The maintainer preferred that Puppet Community take ownership of the module for future improvement and maintenance.
|
54
|
+
Existing pull requests and issues were transferred over, please fork and continue to contribute here.
|
55
|
+
|
56
|
+
Previously: https://github.com/puppetlabs/beaker
|
57
|
+
|
58
|
+
## License
|
59
|
+
|
60
|
+
This gem is licensed under the Apache-2 license.
|
61
|
+
|
62
|
+
## Release information
|
43
63
|
|
44
|
-
|
64
|
+
To make a new release, please do:
|
65
|
+
* update the version in `lib/beaker-aws/version.rb`
|
66
|
+
* Install gems with `bundle install --with release --path .vendor`
|
67
|
+
* generate the changelog with `bundle exec rake changelog`
|
68
|
+
* Check if the new version matches the closed issues/PRs in the changelog
|
69
|
+
* Create a PR with it
|
70
|
+
* After it got merged, push a tag. GitHub actions will do the actual release to rubygems and GitHub Packages
|
data/Rakefile
CHANGED
@@ -1,34 +1,17 @@
|
|
1
1
|
require 'rspec/core/rake_task'
|
2
|
-
require 'github_changelog_generator/task'
|
3
|
-
|
4
|
-
namespace :changelog do
|
5
|
-
# Gets the github token needed for github_changelog_generator
|
6
|
-
# - from env var CHANGELOG_GITHUB_TOKEN
|
7
|
-
# - if unset, will be limited in number of queries allowed to github
|
8
|
-
# - setup a token at https://github.com/settings/tokens
|
9
|
-
def github_token
|
10
|
-
ENV["CHANGELOG_GITHUB_TOKEN"]
|
11
|
-
end
|
12
2
|
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
config.project = "beaker-aws"
|
17
|
-
# Sets next version in the changelog
|
18
|
-
# - if unset, newest changes will be listed as 'unreleased'
|
19
|
-
# - setting this value directly sets section title on newest changes
|
20
|
-
if !ENV['NEW_VERSION'].nil?
|
21
|
-
config.future_release = ENV["NEW_VERSION"]
|
22
|
-
end
|
23
|
-
end
|
3
|
+
begin
|
4
|
+
require 'rubygems'
|
5
|
+
require 'github_changelog_generator/task'
|
24
6
|
|
25
|
-
GitHubChangelogGenerator::RakeTask.new :
|
26
|
-
config.
|
27
|
-
config.user =
|
28
|
-
config.project =
|
29
|
-
|
30
|
-
config.
|
7
|
+
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
|
8
|
+
config.exclude_labels = %w{duplicate question invalid wontfix wont-fix skip-changelog}
|
9
|
+
config.user = 'voxpupuli'
|
10
|
+
config.project = 'beaker-aws'
|
11
|
+
gem_version = Gem::Specification.load("#{config.project}.gemspec").version
|
12
|
+
config.future_release = gem_version
|
31
13
|
end
|
14
|
+
rescue LoadError
|
32
15
|
end
|
33
16
|
|
34
17
|
namespace :test do
|
data/beaker-aws.gemspec
CHANGED
@@ -20,16 +20,13 @@ Gem::Specification.new do |s|
|
|
20
20
|
# Testing dependencies
|
21
21
|
s.add_development_dependency 'rspec', '~> 3.0'
|
22
22
|
s.add_development_dependency 'rspec-its'
|
23
|
-
s.add_development_dependency 'fakefs', '~>
|
24
|
-
s.add_development_dependency 'rake', '~>
|
25
|
-
s.add_development_dependency 'simplecov'
|
26
|
-
s.add_development_dependency 'pry', '~> 0.10'
|
23
|
+
s.add_development_dependency 'fakefs', '~> 1.3', '<= 1.3.3'
|
24
|
+
s.add_development_dependency 'rake', '~> 13.0'
|
27
25
|
|
28
26
|
# Documentation dependencies
|
29
27
|
s.add_development_dependency 'yard'
|
30
28
|
s.add_development_dependency 'markdown'
|
31
29
|
s.add_development_dependency 'thin'
|
32
|
-
s.add_development_dependency 'github_changelog_generator'
|
33
30
|
|
34
31
|
# Run time dependencies
|
35
32
|
s.add_runtime_dependency 'stringify-hash', '~> 0.0.0'
|
data/lib/beaker-aws/version.rb
CHANGED
@@ -162,7 +162,12 @@ module Beaker
|
|
162
162
|
# @param [String] id The id of the instance to return
|
163
163
|
# @return [Aws::EC2::Types::Instance] An Aws::EC2 instance object
|
164
164
|
def instance_by_id(id)
|
165
|
-
|
165
|
+
begin
|
166
|
+
client.describe_instances(:instance_ids => [id]).reservations.first.instances.first
|
167
|
+
rescue Aws::EC2::Errors::InvalidInstanceIDNotFound
|
168
|
+
@logger.notify("aws-sdk: Error while trying to describe instance (id: #{id}). Likely the instance is not created yet.")
|
169
|
+
nil
|
170
|
+
end
|
166
171
|
end
|
167
172
|
|
168
173
|
# Return all instances currently on ec2.
|
@@ -507,7 +512,7 @@ module Beaker
|
|
507
512
|
refreshed_instance = instance_by_id(instance.instance_id)
|
508
513
|
|
509
514
|
if refreshed_instance.nil?
|
510
|
-
@logger.debug("Instance #{name} not yet available
|
515
|
+
@logger.debug("Instance #{name} not yet available")
|
511
516
|
else
|
512
517
|
if block_given?
|
513
518
|
test_result = yield refreshed_instance
|
@@ -1165,3 +1170,4 @@ module Beaker
|
|
1165
1170
|
end
|
1166
1171
|
end
|
1167
1172
|
end
|
1173
|
+
|
data/spec/spec_helper.rb
CHANGED
@@ -1,4 +1,27 @@
|
|
1
|
-
|
1
|
+
begin
|
2
|
+
require 'simplecov'
|
3
|
+
require 'simplecov-console'
|
4
|
+
require 'codecov'
|
5
|
+
rescue LoadError
|
6
|
+
else
|
7
|
+
SimpleCov.start do
|
8
|
+
track_files 'lib/**/*.rb'
|
9
|
+
|
10
|
+
add_filter '/spec'
|
11
|
+
|
12
|
+
enable_coverage :branch
|
13
|
+
|
14
|
+
# do not track vendored files
|
15
|
+
add_filter '/vendor'
|
16
|
+
add_filter '/.vendor'
|
17
|
+
end
|
18
|
+
|
19
|
+
SimpleCov.formatters = [
|
20
|
+
SimpleCov::Formatter::Console,
|
21
|
+
SimpleCov::Formatter::Codecov,
|
22
|
+
]
|
23
|
+
end
|
24
|
+
|
2
25
|
require 'rspec/its'
|
3
26
|
require 'beaker'
|
4
27
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: beaker-aws
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rishi Javia, Kevin Imber, Tony Vu
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-07-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -44,62 +44,34 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
47
|
+
version: '1.3'
|
48
48
|
- - "<="
|
49
49
|
- !ruby/object:Gem::Version
|
50
|
-
version:
|
50
|
+
version: 1.3.3
|
51
51
|
type: :development
|
52
52
|
prerelease: false
|
53
53
|
version_requirements: !ruby/object:Gem::Requirement
|
54
54
|
requirements:
|
55
55
|
- - "~>"
|
56
56
|
- !ruby/object:Gem::Version
|
57
|
-
version: '
|
57
|
+
version: '1.3'
|
58
58
|
- - "<="
|
59
59
|
- !ruby/object:Gem::Version
|
60
|
-
version:
|
60
|
+
version: 1.3.3
|
61
61
|
- !ruby/object:Gem::Dependency
|
62
62
|
name: rake
|
63
63
|
requirement: !ruby/object:Gem::Requirement
|
64
64
|
requirements:
|
65
65
|
- - "~>"
|
66
66
|
- !ruby/object:Gem::Version
|
67
|
-
version: '
|
67
|
+
version: '13.0'
|
68
68
|
type: :development
|
69
69
|
prerelease: false
|
70
70
|
version_requirements: !ruby/object:Gem::Requirement
|
71
71
|
requirements:
|
72
72
|
- - "~>"
|
73
73
|
- !ruby/object:Gem::Version
|
74
|
-
version: '
|
75
|
-
- !ruby/object:Gem::Dependency
|
76
|
-
name: simplecov
|
77
|
-
requirement: !ruby/object:Gem::Requirement
|
78
|
-
requirements:
|
79
|
-
- - ">="
|
80
|
-
- !ruby/object:Gem::Version
|
81
|
-
version: '0'
|
82
|
-
type: :development
|
83
|
-
prerelease: false
|
84
|
-
version_requirements: !ruby/object:Gem::Requirement
|
85
|
-
requirements:
|
86
|
-
- - ">="
|
87
|
-
- !ruby/object:Gem::Version
|
88
|
-
version: '0'
|
89
|
-
- !ruby/object:Gem::Dependency
|
90
|
-
name: pry
|
91
|
-
requirement: !ruby/object:Gem::Requirement
|
92
|
-
requirements:
|
93
|
-
- - "~>"
|
94
|
-
- !ruby/object:Gem::Version
|
95
|
-
version: '0.10'
|
96
|
-
type: :development
|
97
|
-
prerelease: false
|
98
|
-
version_requirements: !ruby/object:Gem::Requirement
|
99
|
-
requirements:
|
100
|
-
- - "~>"
|
101
|
-
- !ruby/object:Gem::Version
|
102
|
-
version: '0.10'
|
74
|
+
version: '13.0'
|
103
75
|
- !ruby/object:Gem::Dependency
|
104
76
|
name: yard
|
105
77
|
requirement: !ruby/object:Gem::Requirement
|
@@ -142,20 +114,6 @@ dependencies:
|
|
142
114
|
- - ">="
|
143
115
|
- !ruby/object:Gem::Version
|
144
116
|
version: '0'
|
145
|
-
- !ruby/object:Gem::Dependency
|
146
|
-
name: github_changelog_generator
|
147
|
-
requirement: !ruby/object:Gem::Requirement
|
148
|
-
requirements:
|
149
|
-
- - ">="
|
150
|
-
- !ruby/object:Gem::Version
|
151
|
-
version: '0'
|
152
|
-
type: :development
|
153
|
-
prerelease: false
|
154
|
-
version_requirements: !ruby/object:Gem::Requirement
|
155
|
-
requirements:
|
156
|
-
- - ">="
|
157
|
-
- !ruby/object:Gem::Version
|
158
|
-
version: '0'
|
159
117
|
- !ruby/object:Gem::Dependency
|
160
118
|
name: stringify-hash
|
161
119
|
requirement: !ruby/object:Gem::Requirement
|
@@ -206,10 +164,14 @@ executables:
|
|
206
164
|
extensions: []
|
207
165
|
extra_rdoc_files: []
|
208
166
|
files:
|
167
|
+
- ".github/dependabot.yml"
|
168
|
+
- ".github/workflows/release.yml"
|
169
|
+
- ".github/workflows/test.yml"
|
209
170
|
- ".gitignore"
|
210
171
|
- ".simplecov"
|
211
172
|
- CHANGELOG.md
|
212
173
|
- Gemfile
|
174
|
+
- HISTORY.md
|
213
175
|
- LICENSE
|
214
176
|
- README.md
|
215
177
|
- Rakefile
|
@@ -247,8 +209,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
247
209
|
- !ruby/object:Gem::Version
|
248
210
|
version: '0'
|
249
211
|
requirements: []
|
250
|
-
|
251
|
-
rubygems_version: 2.5.1
|
212
|
+
rubygems_version: 3.2.22
|
252
213
|
signing_key:
|
253
214
|
specification_version: 4
|
254
215
|
summary: Beaker DSL Extension Helpers!
|