# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'sinatra/faculty/version'
Gem::Specification.new do |spec|
spec.name = 'uoy-faculty-sinatra'
spec.version = Sinatra::Faculty::VERSION
spec.authors = ['Lissa Moriarty']
spec.email = ['lissa.moriarty@york.ac.uk']
spec.summary = 'General Sinatra helpers'
spec.description = 'Helpers that we would use across most of our sinatra apps'
spec.homepage = 'https://github.com/university-of-york/faculty-dev-sinatra-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 'rack', '>= 2', '< 4'
spec.add_dependency 'sequel', '~> 5.0'
spec.add_dependency 'sinatra', ['~> 2', '!= 2.1.0']
spec.add_dependency 'sinatra-flash', '~> 0.3'
spec.add_dependency 'sinatra-param', '~> 1.6'
end