-
Notifications
You must be signed in to change notification settings - Fork 23
/
grape_oauth2.gemspec
26 lines (20 loc) · 1.01 KB
/
grape_oauth2.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
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'grape_oauth2/version'
Gem::Specification.new do |gem|
gem.name = 'grape_oauth2'
gem.version = Grape::OAuth2.gem_version
gem.authors = ['Nikita Bulai']
gem.email = ['[email protected]']
gem.homepage = 'http://github.com/nbulaj/grape-oauth2'
gem.summary = 'Grape OAuth2 provider'
gem.description = 'Flexible, ORM-agnostic, fully customizable and simple OAuth2 provider support for Grape APIs'
gem.license = 'MIT'
gem.require_paths = %w[lib]
gem.files = `git ls-files`.split($RS) - ['README.md', 'grape_oauth2.png', 'gemfiles', '.travis.yml', '.rubocop.yml']
gem.test_files = Dir['spec/**/*']
gem.required_ruby_version = '>= 2.2.2'
gem.add_runtime_dependency 'grape', '~> 1.0', '>= 1.0'
gem.add_runtime_dependency 'rack-oauth2', '~> 1.6.0', '>= 1.6.0'
gem.add_development_dependency 'rspec-rails', '~> 3.6.0', '>= 3.6.0'
gem.add_development_dependency 'database_cleaner', '~> 1.5.0', '>= 1.5.0'
end