Sha256: f7caea06b8842742d6e29805d6a6285274b128c966c768e37c0722b2dfd4fd5b

Contents?: true

Size: 1.15 KB

Versions: 1

Compression:

Stored size: 1.15 KB

Contents

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'oauth2_dingtalk/version'

Gem::Specification.new do |spec|
  spec.name          = 'oauth2_dingtalk'
  spec.version       = Oauth2Dingtalk::VERSION
  spec.authors       = %w[liukun]
  spec.email         = %w[fee1mix@163.com]
  spec.homepage      = 'https://github.com/liukun-lk/oauth2_dingtalk'
  spec.license       = 'MIT'

  spec.summary       = 'Omniauth strategy for DingTalk(Alibaba)'
  spec.description   = 'Wrapper the DingTalk Oauth2 API'

  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.add_development_dependency 'bundler', '~> 1.15'
  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency 'rspec', '~> 3.0'
  spec.add_development_dependency 'rubocop', '~> 0.55'

  spec.add_dependency 'omniauth', '~> 1.0'
  spec.add_dependency 'omniauth-oauth2', '~> 1.0'
  spec.add_dependency 'useragent', '~> 0.16'

  spec.add_runtime_dependency 'zeitwerk', '~> 1.3'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
oauth2_dingtalk-0.2.4 oauth2_dingtalk.gemspec