Added: IRIS OAuth basic profile scope
parents
No related branches found
No related tags found
Showing
- .gitignore 8 additions, 0 deletions.gitignore
- .idea/dictionaries/pavan.xml 8 additions, 0 deletions.idea/dictionaries/pavan.xml
- .idea/inspectionProfiles/Project_Default.xml 7 additions, 0 deletions.idea/inspectionProfiles/Project_Default.xml
- .idea/misc.xml 8 additions, 0 deletions.idea/misc.xml
- .idea/modules.xml 9 additions, 0 deletions.idea/modules.xml
- .idea/omniauth-iris.iml 18 additions, 0 deletions.idea/omniauth-iris.iml
- .idea/vcs.xml 7 additions, 0 deletions.idea/vcs.xml
- .idea/workspace.xml 86 additions, 0 deletions.idea/workspace.xml
- .rubocop.yml 11 additions, 0 deletions.rubocop.yml
- CODE_OF_CONDUCT.md 74 additions, 0 deletionsCODE_OF_CONDUCT.md
- Gemfile 10 additions, 0 deletionsGemfile
- Gemfile.lock 42 additions, 0 deletionsGemfile.lock
- LICENSE.txt 21 additions, 0 deletionsLICENSE.txt
- README.md 43 additions, 0 deletionsREADME.md
- Rakefile 12 additions, 0 deletionsRakefile
- lib/omniauth-iris.rb 4 additions, 0 deletionslib/omniauth-iris.rb
- lib/omniauth-iris/version.rb 7 additions, 0 deletionslib/omniauth-iris/version.rb
- lib/omniauth/strategies/iris.rb 57 additions, 0 deletionslib/omniauth/strategies/iris.rb
- omniauth-iris.gemspec 26 additions, 0 deletionsomniauth-iris.gemspec
.gitignore
0 → 100644
.idea/dictionaries/pavan.xml
0 → 100644
.idea/inspectionProfiles/Project_Default.xml
0 → 100644
.idea/misc.xml
0 → 100644
.idea/modules.xml
0 → 100644
.idea/omniauth-iris.iml
0 → 100644
.idea/vcs.xml
0 → 100644
.idea/workspace.xml
0 → 100644
.rubocop.yml
0 → 100644
CODE_OF_CONDUCT.md
0 → 100644
Gemfile
0 → 100644
# frozen_string_literal: true | ||
source "https://rubygems.org" | ||
# Specify your gem's dependencies in omniauth-iris.gemspec | ||
gemspec | ||
group :development, :test do | ||
gem "rake" | ||
end |
Gemfile.lock
0 → 100644
LICENSE.txt
0 → 100644
README.md
0 → 100644
Rakefile
0 → 100644
lib/omniauth-iris.rb
0 → 100644
lib/omniauth-iris/version.rb
0 → 100644
lib/omniauth/strategies/iris.rb
0 → 100644
omniauth-iris.gemspec
0 → 100644
# frozen_string_literal: true | ||
require File.expand_path("lib/omniauth-iris/version", __dir__) | ||
Gem::Specification.new do |spec| | ||
spec.name = "omniauth-iris" | ||
spec.authors = ["Pavan Vachhani"] | ||
spec.email = ["vachhanihpavan@gmail.com"] | ||
spec.summary = "Official OmniAuth strategy for IRIS" | ||
spec.description = "Official OmniAuth strategy for IRIS" | ||
spec.homepage = "" | ||
spec.license = "MIT" | ||
# Specify which files should be added to the gem when it is released. | ||
# The `git ls-files -z` loads the files in the RubyGem that have been added into git. | ||
spec.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) } | ||
spec.files = `git ls-files`.split("\n") | ||
spec.require_paths = ["lib"] | ||
spec.version = OmniAuth::Iris::VERSION | ||
spec.add_dependency "omniauth", "~> 1.5" | ||
spec.add_dependency "omniauth-oauth2", ">= 1.4.0", "< 2.0" | ||
spec.add_development_dependency "bundler", "~> 2.0" | ||
end |
Please register or sign in to comment