generated from mattbrictson/gem
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: signer using default creds (#1)
* signer using default creds * pin depdendencies * assert_equal, expected on the left * sort by gem * allow a and b as arg names * rubocop * fix trailing comma * map to transform_values * allow for more assertions * no need to parse url * remove activesupport * remove activesupport * add base64 because it is removed from core in 3.4 * remove unused * aws-sdk-kafka as run time dependency * add exe, move msk token provider to its own file * organize like a pro * can create token from cli * example -> signer * flatten * lint * towards aws-profile * token from role arn * fix abc * cli tests * lint * docs * code coverage * show rdkafka example * custom credential provider * rubocop * pass by position, rather then name * rubocop * screaming snake case * rubocop * codeclimate ignore * codeclimate ignore * dry * codeclimate locally * codeclimate * simiplecov report * codecoverage * save code coverage for later * remove unneeded * flatten namespace * flatten namespace * version test * test all of the generators * names are hard * found the s * frozen * found the s * names are hard * refactor * flow * fix typo * let gemspec include the deps * optionally return caller identity and let caller figure out what to do with it * update docs * update docs * return a struct * return a struct * flatten namespace
- Loading branch information
1 parent
bfa1b42
commit bef3893
Showing
33 changed files
with
786 additions
and
357 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
exclude_patterns: | ||
- "**/thor_ext.rb" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,3 +28,21 @@ jobs: | |
ruby-version: ${{ matrix.ruby }} | ||
bundler-cache: true | ||
- run: bundle exec rake test | ||
# TODO: Add coverage reporting | ||
# coverage: | ||
# needs: [ test ] | ||
# name: coverage | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@master | ||
# - uses: actions/setup-node@master | ||
# with: | ||
# node-version: '12' | ||
# - run: npm install -g yarn | ||
# - run: yarn install | ||
# - run: yarn build | ||
# - uses: paambaati/[email protected] | ||
# env: | ||
# CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | ||
# with: | ||
# coverageCommand: yarn coverage |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,5 @@ | |
/spec/reports/ | ||
/tmp/ | ||
/Gemfile.lock | ||
.ruby-version | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Release notes for this project are kept here: https://github.com/mattbrictson/gem/releases | ||
Release notes for this project are kept here: https://github.com/bruce-szalwinski-he/aws-msk-iam-sasl-signer-ruby/releases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
source "https://rubygems.org" | ||
gemspec | ||
|
||
gem "base64", "~> 0.2" | ||
gem "minitest", "~> 5.11" | ||
gem "minitest-rg", "~> 5.3" | ||
gem "minitest-stub_any_instance", "~> 1.0" | ||
gem "rake", "~> 13.0" | ||
gem "rubocop", "1.60.2" | ||
gem "rubocop-minitest", "0.34.5" | ||
gem "rubocop-packaging", "0.5.2" | ||
gem "rubocop-performance", "1.20.2" | ||
gem "rubocop-rake", "0.6.0" | ||
gem "simplecov", require: false, group: :test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.