Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
uoy-faculty-sinatra-aws / uoy-faculty-sinatra-aws.gemspec
Size: Mime:
# frozen_string_literal: true

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'sinatra/faculty/aws/version'

Gem::Specification.new do |spec|
  spec.name          = 'uoy-faculty-sinatra-aws'
  spec.version       = Sinatra::Faculty::AWS::VERSION
  spec.authors       = ['Rick Selby']
  spec.email         = ['richard.selby@york.ac.uk']

  spec.summary       = 'Sinatra AWS Helpers'
  spec.description   = 'Various AWS Helpers for use within sinatra apps'
  spec.homepage      = 'https://github.com/university-of-york/faculty-dev-sinatra-aws-gem'

  spec.required_ruby_version = '>= 3.2', '< 3.5'

  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
  # to allow pushing to a single host or delete this section to allow pushing to any host.
  raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.' unless spec.respond_to?(:metadata)

  spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
  # spec.metadata['homepage_uri'] = spec.homepage
  # spec.metadata['source_code_uri'] = "TODO: Put your gem's public repo URL here."
  # spec.metadata['changelog_uri'] = "TODO: Put your gem's CHANGELOG.md URL here."

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
    `git ls-files -z`.split("\x0").select do |f|
      f.match(%r{^(bin/|lib/|Gemfile$|README.md$|.*\.gemspec$)})
    end
  end
  spec.bindir = 'exe'
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.add_dependency 'aws-sdk-cloudwatchlogs', '~> 1.0'
  spec.add_dependency 'aws-sdk-cognitoidentityprovider', '~> 1.0'
  spec.add_dependency 'aws-sdk-rds', '~> 1.0'
  spec.add_dependency 'aws-sdk-secretsmanager', '~> 1.0'
  spec.add_dependency 'oauth2', '~>2.0', '!= 2.0.6'
  spec.add_dependency 'omniauth', '~> 1.0'
  spec.add_dependency 'omniauth-cognito-idp', '~> 0.1'
  spec.add_dependency 'rexml'
  spec.add_dependency 'serverless-rack', '>= 1.0.8'
  spec.add_dependency 'uoy-faculty-sinatra', '>= 2.0', '< 6.0'
end