Skip to content

Commit

Permalink
gemspec update. (#43)
Browse files Browse the repository at this point in the history
* gemspec update.

* fix gemspec tag

* fix gem warnings
  • Loading branch information
ami-descope authored Mar 20, 2024
1 parent b0848a0 commit 205f349
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 28 deletions.
8 changes: 0 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@ GEM
activesupport (>= 5.0.0)
faker (3.2.3)
i18n (>= 1.8.11, < 2)
fuubar (2.5.1)
rspec-core (~> 3.0)
ruby-progressbar (~> 1.4)
http-accept (1.7.0)
http-cookie (1.0.5)
domain_name (~> 0.5)
Expand Down Expand Up @@ -68,7 +65,6 @@ GEM
rack-test (2.1.0)
rack (>= 1.3)
rainbow (3.1.1)
rake (13.1.0)
regexp_parser (2.9.0)
rest-client (2.1.0)
http-accept (>= 1.7.0, < 2.0)
Expand Down Expand Up @@ -136,14 +132,10 @@ PLATFORMS
arm64-darwin-23

DEPENDENCIES
bundler
concurrent-ruby (~> 1.1)
descope!
factory_bot (= 6.4.6)
faker
fuubar (~> 2.0)
rack-test (= 2.1.0)
rake (~> 13.0)
rotp (= 6.3.0)
rspec (= 3.13.0)
rubocop (= 1.60.2)
Expand Down
45 changes: 25 additions & 20 deletions descope.gemspec
Original file line number Diff line number Diff line change
@@ -1,34 +1,39 @@
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'descope/version'
version = Descope::VERSION

Gem::Specification.new do |s|
s.name = 'descope'
s.version = Descope::VERSION
s.authors = ['Descope']
s.email = ['support@descope.com']
s.homepage = 'https://github.com/descope/descope-ruby-sdk'
s.summary = 'Descope API Client'
s.description = 'Ruby API Client for Descope API https://descope.com'
s.platform = Gem::Platform::RUBY
s.name = "descope"
s.version = version
s.summary = "Descope Ruby API Client"
s.description = "Ruby API Client for Descope API https://descope.com"

s.required_ruby_version = ">= 3.3.0"
s.required_rubygems_version = ">= 3.5"

s.author = "Descope Inc."
s.email = "support@descope.com"
s.homepage = "https://github.com/descope/descope-ruby-sdk"

s.license = "MIT"

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.require_paths = ['lib']

s.add_runtime_dependency 'rest-client', '~> 2.1'
s.add_runtime_dependency 'jwt', '~> 2.7'
s.add_runtime_dependency 'zache', '~> 0.12'
s.metadata = {
"bug_tracker_uri" => "https://github.com/descope/descope-ruby-sdk/issues",
"changelog_uri" => "https://github.com/descope/descope-ruby-sdk/releases/tag/#{version}",
"documentation_uri" => "https://docs.descope.com",
"source_code_uri" => "https://github.com/descope/descope-ruby-sdk/tree/#{version}",
}

s.add_runtime_dependency 'addressable', '~> 2.8'
s.add_runtime_dependency 'jwt', '~> 2.7'
s.add_runtime_dependency 'rest-client', '~> 2.1'
s.add_runtime_dependency 'retryable', '~> 3.0'

s.add_development_dependency 'bundler'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'fuubar', '~> 2.0'
s.add_development_dependency 'rspec', '~> 3.11'
s.add_development_dependency 'simplecov', '~> 0.9'
s.add_development_dependency 'faker', '~> 2.0'
s.add_development_dependency "super_diff", "~> 1.0"
s.add_development_dependency 'concurrent-ruby', '~> 1.1'
s.license = 'MIT'
s.add_runtime_dependency 'zache', '~> 0.12'
end

0 comments on commit 205f349

Please sign in to comment.