-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathkracken.gemspec
32 lines (26 loc) · 1.11 KB
/
kracken.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
# frozen_string_literal: true
$:.push File.expand_path('../lib', __FILE__)
# Maintain your gem's version:
require 'kracken/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'kracken'
s.version = Kracken::VERSION
s.authors = ['Christopher Sexton']
s.email = ['[email protected]']
s.homepage = 'http://www.radiusnetworks.com'
s.summary = 'Rails engine that consumes the Kracken'
s.description = 'Rails engine for use with the Radius Networks Account Server.'
s.files = Dir['{app,exe,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md']
s.bindir = "exe"
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
s.add_dependency 'faraday', ['>= 0.8', '< 2.0']
s.add_dependency 'omniauth', '~> 1.0'
s.add_dependency 'omniauth-oauth2', '~> 1.1'
s.add_dependency 'oauth2', '< 2'
s.add_dependency 'rails', [">= 5.2", "< 7.0"]
s.add_dependency 'redis'
s.add_development_dependency 'pry-byebug'
s.add_development_dependency 'rspec-rails', '~> 3.5'
s.add_development_dependency 'webmock', '~> 3.8'
end