-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathkinde_sdk.gemspec
36 lines (28 loc) · 1.17 KB
/
kinde_sdk.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
32
33
34
35
36
# frozen_string_literal: true
SDK_PATH = "kinde_api"
$LOAD_PATH.push File.expand_path("lib", __dir__)
$LOAD_PATH.push File.expand_path("#{SDK_PATH}/lib", __dir__)
require "kinde_sdk/version"
Gem::Specification.new do |s|
s.name = "kinde_sdk"
s.version = KindeSdk::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Kinde Australia Pty Ltd"]
s.email = ["support@kinde.com"]
s.homepage = "https://kinde.com/"
s.summary = "Kinde Management API Ruby Gem"
s.description = "Integrate the Kinde API into any ruby-based applications, Rails or non-Rails"
s.license = "MIT"
s.required_ruby_version = ">= 3.0"
s.add_runtime_dependency "typhoeus", "~> 1.0", ">= 1.0.1"
s.add_runtime_dependency "oauth2", "~> 2.0"
s.add_runtime_dependency "pkce_challenge"
s.add_runtime_dependency "faraday-follow_redirects"
s.add_development_dependency "rspec", "~> 3.6", ">= 3.6.0"
s.files = Dir.glob(['lib/**/*', 'kinde_api/**/*']).reject do |f|
File.directory?(f) || f.start_with?('kinde_api/spec/')
end
s.test_files = `find spec/* #{SDK_PATH}/spec/*`.split("\n")
s.executables = []
s.require_paths = %W[lib #{SDK_PATH}/lib]
end