# -*- encoding: utf-8 -*- require File.expand_path('../lib/omniauth-github/version', __FILE__) Gem::Specification.new do |gem| gem.authors = ["Michael Bleigh"] gem.email = ["michael@intridea.com"] gem.description = %q{Official OmniAuth strategy for GitHub.} gem.summary = %q{Official OmniAuth strategy for GitHub.} gem.homepage = "https://github.com/intridea/omniauth-github" gem.license = "MIT" gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } gem.files = `git ls-files`.split("\n") gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") gem.name = "omniauth-github" gem.require_paths = ["lib"] gem.version = OmniAuth::GitHub::VERSION gem.add_dependency 'omniauth', '~> 1.5' gem.add_dependency 'omniauth-oauth2', '>= 1.4.0', '< 2.0' gem.add_development_dependency 'rspec', '~> 3.5' gem.add_development_dependency 'rack-test' gem.add_development_dependency 'simplecov' gem.add_development_dependency 'webmock' end