-
- Downloads
New upstream version 1.3.0
Showing
- Gemfile 2 additions, 1 deletionGemfile
- LICENSE.txt 7 additions, 0 deletionsLICENSE.txt
- README.md 20 additions, 14 deletionsREADME.md
- checksums.yaml.gz 0 additions, 0 deletionschecksums.yaml.gz
- lib/omniauth-github/version.rb 1 addition, 1 deletionlib/omniauth-github/version.rb
- lib/omniauth/strategies/github.rb 13 additions, 7 deletionslib/omniauth/strategies/github.rb
- metadata.yml 0 additions, 140 deletionsmetadata.yml
- omniauth-github.gemspec 4 additions, 3 deletionsomniauth-github.gemspec
- spec/omniauth/strategies/github_spec.rb 77 additions, 51 deletionsspec/omniauth/strategies/github_spec.rb
source 'http://rubygems.org' | ||
source 'https://rubygems.org' | ||
# Specify your gem's dependencies in omniauth-github.gemspec | ||
gemspec | ||
... | ... | @@ -9,4 +9,5 @@ group :development, :test do |
gem 'guard-bundler' | ||
gem 'rb-fsevent' | ||
gem 'growl' | ||
gem 'rake' | ||
end |
LICENSE.txt
0 → 100644
checksums.yaml.gz
deleted
100644 → 0
File deleted
metadata.yml
deleted
100644 → 0
... | ... | @@ -7,6 +7,7 @@ Gem::Specification.new do |gem| |
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") | ||
... | ... | @@ -15,9 +16,9 @@ Gem::Specification.new do |gem| |
gem.require_paths = ["lib"] | ||
gem.version = OmniAuth::GitHub::VERSION | ||
gem.add_dependency 'omniauth', '~> 1.0' | ||
gem.add_dependency 'omniauth-oauth2', '~> 1.1' | ||
gem.add_development_dependency 'rspec', '~> 2.7' | ||
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' | ||
... | ... |
Please register or sign in to comment