-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathomniauth-authsch.gemspec
29 lines (23 loc) · 983 Bytes
/
omniauth-authsch.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
# -*- encoding: utf-8 -*-
# frozen_string_literal: true
require File.expand_path(
File.join('..', 'lib', 'omniauth', 'authsch', 'version'),
__FILE__
)
Gem::Specification.new do |gem|
gem.name = 'omniauth-authsch'
gem.version = OmniAuth::Authsch::VERSION
gem.license = 'MIT'
gem.summary = 'An Auth.sch strategy for OmniAuth 1.x'
gem.description = 'An Auth.sch strategy for OmniAuth 1.x. This allows you to login to Auth.sch with your ruby app.'
gem.authors = ['Zsolt Kozaroczy']
gem.email = ['[email protected]']
gem.homepage = 'https://github.com/kiskoza/omniauth-authsch'
gem.files = `git ls-files`.split("\n")
gem.require_paths = ['lib']
gem.required_ruby_version = '>= 2.0'
gem.add_runtime_dependency 'omniauth-oauth2', '~> 1.4'
gem.add_development_dependency 'rspec', '~> 3.6'
gem.add_development_dependency 'rake', '~> 12.0'
gem.add_development_dependency 'rubocop', '~> 0.49'
end