mirror of
				https://github.com/omniauth/omniauth.git
				synced 2022-11-09 12:31:49 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# coding: utf-8
 | 
						|
 | 
						|
lib = File.expand_path('../lib', __FILE__)
 | 
						|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
 | 
						|
require 'omniauth/version'
 | 
						|
 | 
						|
Gem::Specification.new do |spec|
 | 
						|
  spec.add_dependency 'hashie', ['>= 3.4.6']
 | 
						|
  spec.add_dependency 'rack', ['>= 1.6.2', '< 3']
 | 
						|
  spec.add_development_dependency 'bundler', '~> 2.0'
 | 
						|
  spec.add_dependency 'rack-protection'
 | 
						|
  spec.add_development_dependency 'rake', '~> 12.0'
 | 
						|
  spec.authors       = ['Michael Bleigh', 'Erik Michaels-Ober', 'Tom Milewski']
 | 
						|
  spec.description   = 'A generalized Rack framework for multiple-provider authentication.'
 | 
						|
  spec.email         = ['michael@intridea.com', 'sferik@gmail.com', 'tmilewski@gmail.com']
 | 
						|
  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.start_with?('spec/') }
 | 
						|
  spec.homepage      = 'https://github.com/omniauth/omniauth'
 | 
						|
  spec.licenses      = %w[MIT]
 | 
						|
  spec.name          = 'omniauth'
 | 
						|
  spec.require_paths = %w[lib]
 | 
						|
  spec.required_rubygems_version = '>= 1.3.5'
 | 
						|
  spec.required_ruby_version = '>= 2.2'
 | 
						|
  spec.summary       = spec.description
 | 
						|
  spec.version       = OmniAuth::VERSION
 | 
						|
end
 |