Commits on Source (49)
-
Murray, Troy authoredc07ceb32
-
Murray, Troy authored4cadcb7a
-
Murray, Troy authoredd98df8ed
-
Murray, Troy authoredb91746c7
-
Murray, Troy authored4b22c2bc
-
Murray, Troy authoredc960e154
-
Murray, Troy authoreda57e3f57
-
Murray, Troy authoredcb83e345
-
Murray, Troy authored08b95430
-
Murray, Troy authoredaf89721d
-
Murray, Troy authoreda71f0b2a
-
Murray, Troy authored19315627
-
Murray, Troy authored7a8f66f2
-
Murray, Troy authored
Remove old code, include commented placeholders for actual values that will be received, include camel case operation so module can be called as MSUnet
73e2250e -
Murray, Troy authored6b8db877
-
Murray, Troy authored7862b46a
-
Murray, Troy authoredcdef774a
-
Murray, Troy authored4ee3e741
-
Murray, Troy authored
Update strategy with additional info section information and correct call for protected resource information
966bfd5c -
Murray, Troy authored
Update README with detailed needs to use the gem, instructions on how to configure it with a Ruby on Rails application and the schema that is returned to the application from OmniAuth
01149a84 -
Murray, Troy authored0af7a7c5
-
Murray, Troy authoredb9501667
-
Murray, Troy authored22b4a4c1
-
Murray, Troy authored67140aec
-
Murray, Troy authored135408d2
-
Murray, Troy authored2148ae07
-
Murray, Troy authored0bf88375
-
Tomaka, Andrew authored35cc5a46
-
Tomaka, Andrew authored37126d8d
-
Tomaka, Andrew authored871ad6ac
-
Troy Murray authored
Add specs
000c0aae -
Murray, Troy authoredcb615ee0
-
http://spdx.org/licensesMurray, Troy authoreda4e947ca
-
Tomaka, Andrew authoredf69b1fcf
-
Tomaka, Andrew authored551f9d77
-
Tomaka, Andrew authored7f7f6866
-
Tomaka, Andrew authored06eddd2e
-
Tomaka, Andrew authoreda56aa0c3
-
Tomaka, Andrew authoredbffcb63a
-
Tomaka, Andrew authored89182eeb
-
Troy Murray authored
Automated testing and deployment process
b5c6b982 -
Tomaka, Andrew authored7a3974b3
-
Tomaka, Andrew authoredb61eceb9
-
Tomaka, Andrew authored
Fix build badge to point to MSU repository
c903024b -
Murray, Troy authoredfd1bb83d
-
Murray, Troy authored2848bc17
-
Murray, Troy authored
Since these changes are not bug related, and are not possible breaking changes, they are considered minor changes. Therefore incrementing minor number.
409312c5 -
Tomaka, Andrew authored
Change oauth hostname and update documentation
2b3179af -
Murray, Troy authoredc327cd42
Showing
- .travis.yml 13 additions, 0 deletions.travis.yml
- CHANGELOG.md 18 additions, 5 deletionsCHANGELOG.md
- Gemfile 2 additions, 9 deletionsGemfile
- README.md 71 additions, 10 deletionsREADME.md
- Rakefile 5 additions, 0 deletionsRakefile
- VERSION 1 addition, 0 deletionsVERSION
- lib/omniauth-msunet.rb 1 addition, 1 deletionlib/omniauth-msunet.rb
- lib/omniauth-msunet/version.rb 0 additions, 5 deletionslib/omniauth-msunet/version.rb
- lib/omniauth/strategies/msunet.rb 15 additions, 39 deletionslib/omniauth/strategies/msunet.rb
- omniauth-msunet.gemspec 14 additions, 13 deletionsomniauth-msunet.gemspec
- spec/omniauth/strategies/msunet_spec.rb 82 additions, 0 deletionsspec/omniauth/strategies/msunet_spec.rb
- spec/spec_helper.rb 2 additions, 0 deletionsspec/spec_helper.rb
.travis.yml
0 → 100644
source 'http://rubygems.org' | ||
# Specify your gem's dependencies in omniauth-msunet.gemspec | ||
gemspec | ||
gem 'rack', '< 2.0.1', platform: :ruby_21 | ||
group :development, :test do | ||
gem 'guard' | ||
gem 'guard-rspec' | ||
gem 'guard-bundler' | ||
gem 'rb-fsevent' | ||
gem 'growl' | ||
end | ||
gemspec |
Rakefile
0 → 100644
VERSION
0 → 100644
lib/omniauth-msunet/version.rb
deleted
100644 → 0
# -*- encoding: utf-8 -*- | ||
require File.expand_path('../lib/omniauth-msunet/version', __FILE__) | ||
Gem::Specification.new do |gem| | ||
gem.authors = ["Troy Murray"] | ||
gem.email = ["tm@msu.edu"] | ||
gem.summary = %q{Official OmniAuth strategy for Michigan State University MSUnet.} | ||
gem.description = %q{Official OmniAuth strategy for Michigan State University MSUnet.} | ||
gem.homepage = "https://github.com/tdm00/omniauth-msunet" | ||
gem.name = 'omniauth-msunet' | ||
gem.summary = %q{Michigan State University MSUnet OmniAuth strategy.} | ||
gem.description = %q{Official OmniAuth strategy for authenticating against the Michigan State University MSUnet OAuth2 provider.} | ||
gem.version = File.read('VERSION') | ||
gem.homepage = "https://gitlab.msu.edu/msu-middleware-group/omniauth-msunet" | ||
gem.license = 'Nonstandard' | ||
gem.authors = ['Troy Murray', 'Andrew Tomaka'] | ||
gem.email = ['tm@msu.edu', 'atomaka@msu.edu'] | ||
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-msunet" | ||
gem.require_paths = ["lib"] | ||
gem.version = OmniAuth::Msunet::VERSION | ||
gem.add_dependency 'omniauth', '~> 1.0' | ||
gem.add_dependency 'omniauth', '~> 1.1' | ||
gem.add_dependency 'omniauth-oauth2', '~> 1.1' | ||
gem.add_development_dependency 'rspec', '~> 2.7' | ||
gem.add_development_dependency 'rack-test' | ||
gem.add_development_dependency 'simplecov' | ||
gem.add_development_dependency 'webmock' | ||
gem.add_dependency 'multi_json', '~> 1.7' | ||
gem.add_development_dependency 'rspec', '~> 3.4' | ||
gem.add_development_dependency 'rake', '~> 10.4' | ||
gem.add_development_dependency 'version' | ||
end |
spec/omniauth/strategies/msunet_spec.rb
0 → 100644
spec/spec_helper.rb
0 → 100644