# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'omniauth-inspur/version' Gem::Specification.new do |gem| gem.name = 'omniauth-inspur' gem.version = Omniauth::Inspur::VERSION gem.authors = ['YuanZhencai'] gem.email = ['zhencai.yuan@datarx.cn'] gem.description = 'This is the strategy for authenticating to your Inspur service' gem.summary = 'This is the strategy for authenticating to your Inspur service' gem.homepage = 'https://github.com/YuanZhencai/omniauth-inspur' gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ['lib'] gem.add_dependency 'omniauth', '~> 1.0' gem.add_dependency 'omniauth-oauth2', '~> 1.0' gem.add_development_dependency 'rspec', '~> 3.1' gem.add_development_dependency 'rspec-its', '~> 1.0' gem.add_development_dependency 'simplecov' gem.add_development_dependency 'rake', '>= 12.0' end