-
Notifications
You must be signed in to change notification settings - Fork 22
/
trestle-auth.gemspec
31 lines (23 loc) · 1.11 KB
/
trestle-auth.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
require_relative 'lib/trestle/auth/version'
Gem::Specification.new do |spec|
spec.name = "trestle-auth"
spec.version = Trestle::Auth::VERSION
spec.authors = ["Sam Pohlenz"]
spec.email = ["sam@sampohlenz.com"]
spec.summary = "Authentication plugin for the Trestle admin framework"
spec.homepage = "https://www.trestle.io"
spec.license = "LGPL-3.0-only"
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec)/}) }
end
spec.require_paths = ["lib"]
spec.required_ruby_version = Gem::Requirement.new(">= 2.6.0")
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/TrestleAdmin/trestle-auth"
spec.add_dependency "trestle", "~> 0.10.0"
spec.add_dependency "bcrypt", "~> 3.1.7"
spec.add_development_dependency "rspec-rails"
spec.add_development_dependency "show_me_the_cookies", "~> 6.0"
spec.add_development_dependency "timecop", "~> 0.9.1"
spec.add_development_dependency "ammeter", "~> 1.1.7"
end