-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphcdevworks_accounts_stytch.gemspec
30 lines (24 loc) · 1.22 KB
/
phcdevworks_accounts_stytch.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
# frozen_string_literal: true
require_relative 'lib/phcdevworks_accounts_stytch/version'
Gem::Specification.new do |spec|
spec.name = 'phcdevworks_accounts_stytch'
spec.version = PhcdevworksAccountsStytch::VERSION
spec.authors = [ 'PHCDevworks', 'Brad Potts' ]
spec.email = [ '[email protected]', '[email protected]' ]
spec.homepage = 'https://phcdevworks.com/'
spec.summary = 'Rails Engine for Stytch Authentication'
spec.description = 'PHCDevworks Accounts Stytch is a Ruby on Rails Engine for Stytch Authentication.'
spec.license = 'MIT'
# Specify the required Ruby version
spec.required_ruby_version = '>= 2.7.0'
# Gem Meta Data
spec.metadata['allowed_push_host'] = 'https://rubygems.org/'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/phcdevworks/phcdevworks_accounts_stytch/'
spec.metadata['changelog_uri'] = 'https://github.com/phcdevworks/phcdevworks_accounts_stytch/releases/'
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md']
end
spec.add_dependency 'rails', '>= 8.0.0'
spec.add_dependency 'stytch', '~> 9.1'
end