Skip to content

Commit

Permalink
add documentation_uri (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
marktran authored Apr 30, 2020
1 parent d49d3c4 commit 7329d90
Showing 1 changed file with 14 additions and 11 deletions.
25 changes: 14 additions & 11 deletions workos.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,21 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'workos/version'

Gem::Specification.new do |spec|
spec.name = 'workos'
spec.version = WorkOS::VERSION
spec.authors = ['WorkOS']
spec.email = ['[email protected]']
spec.description = 'API client for WorkOS'
spec.summary = 'API client for WorkOS'
spec.homepage = 'https://github.com/workos-inc/workos-ruby'
spec.license = 'MIT'
spec.name = 'workos'
spec.version = WorkOS::VERSION
spec.authors = ['WorkOS']
spec.email = ['[email protected]']
spec.description = 'API client for WorkOS'
spec.summary = 'API client for WorkOS'
spec.homepage = 'https://github.com/workos-inc/workos-ruby'
spec.license = 'MIT'
spec.metadata = {
'documentation_uri' => 'https://docs.workos.com/sdk/ruby',
}

spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']

spec.add_dependency 'sorbet-runtime', '~> 0.5'
Expand Down

0 comments on commit 7329d90

Please sign in to comment.