-
Notifications
You must be signed in to change notification settings - Fork 141
Expand file tree
/
Copy pathauth0.gemspec
More file actions
32 lines (28 loc) · 1.26 KB
/
auth0.gemspec
File metadata and controls
32 lines (28 loc) · 1.26 KB
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
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'auth0/version'
Gem::Specification.new do |s|
s.name = 'auth0'
s.version = Auth0::VERSION
s.authors = ['Auth0', 'Jose Romaniello', 'Ivan Petroe', 'Patrik Ragnarsson']
s.email = ['support@auth0.com']
s.homepage = 'https://github.com/auth0/ruby-auth0'
s.summary = 'Auth0 API Client'
s.description = 'Ruby toolkit for Auth0 API https://auth0.com.'
s.files = Dir['lib/**/*.rb'] + %w[LICENSE README.md CHANGELOG.md auth0.gemspec .version]
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.add_runtime_dependency 'addressable', '~> 2.8'
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 'guard-rspec', '~> 4.5' unless ENV['CIRCLECI']
s.add_development_dependency 'dotenv', '~> 3.0'
s.add_development_dependency 'rspec', '~> 3.11'
s.add_development_dependency 'simplecov', '~> 0.9'
s.add_development_dependency 'faker', '~> 2.0'
s.license = 'MIT'
end