-
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.
- Loading branch information
1 parent
89bf2fc
commit 7e7cb63
Showing
1 changed file
with
30 additions
and
0 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,30 @@ | ||
# frozen_string_literal: true | ||
|
||
$LOAD_PATH.push File.expand_path('lib', __dir__) | ||
require 'uc3-ssm/version' | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = 'uc3-ssm' | ||
spec.version = Uc3Ssm::VERSION | ||
spec.platform = Gem::Platform::RUBY | ||
spec.authors = ['Terry Brady'] | ||
spec.email = ['[email protected]'] | ||
|
||
spec.summary = 'UC3 - Credential store for AWS SSM' | ||
spec.description = 'Provides access to the AWS SSM credential store for Ruby' | ||
spec.homepage = 'https://github.com/CDLUC3/uc3-ssm' | ||
spec.license = 'MIT' | ||
|
||
spec.files = Dir['lib/**/*'] + %w[README.md] | ||
spec.require_paths = ['lib'] | ||
spec.required_ruby_version = '>= 3.0' | ||
|
||
spec.add_runtime_dependency('aws-sdk-ssm') | ||
spec.add_runtime_dependency('logger') | ||
spec.add_runtime_dependency('yaml') | ||
|
||
# Requirements for running RSpec | ||
spec.add_development_dependency('byebug') | ||
spec.add_development_dependency('rspec') | ||
spec.add_development_dependency('rubocop') | ||
end |