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-impersonate / uoy-faculty-sinatra-impersonate.gemspec
Size: Mime:
# frozen_string_literal: true

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

Gem::Specification.new do |spec|
  spec.name          = 'uoy-faculty-sinatra-impersonate'
  spec.version       = Sinatra::Impersonate::VERSION
  spec.authors       = ['Lissa Moriarty']
  spec.email         = ['lissa.moriarty@york.ac.uk']

  spec.summary       = 'Allows user impersonation within Sinatra apps'
  spec.description   = 'Allows user impersonation within Sinatra apps'
  spec.homepage      = 'https://github.com/university-of-york/faculty-dev-sinatra-impersonate-gem'

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

  # 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 'gem_config', '~> 0.3'
  spec.add_dependency 'sinatra', ['~> 2', '!= 2.1.0']
  spec.add_dependency 'uoy-faculty-rbac', '>= 4.0', '< 6.0'
  spec.add_dependency 'uoy-faculty-sinatra', '>= 1.4', '< 6.0'
end