From 7e7cb63423076b19b911dc92655939536fc37781 Mon Sep 17 00:00:00 2001 From: Terry Brady Date: Tue, 27 Aug 2024 16:15:06 -0700 Subject: [PATCH] gemspec --- uc3-ssm.gemspec | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 uc3-ssm.gemspec diff --git a/uc3-ssm.gemspec b/uc3-ssm.gemspec new file mode 100644 index 0000000..d73b512 --- /dev/null +++ b/uc3-ssm.gemspec @@ -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 = ['terry.brady@ucop.edu'] + + 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 \ No newline at end of file