forked from omniauth/omniauth-ldap
-
Notifications
You must be signed in to change notification settings - Fork 29
Sync with intridea/omniauth-ldap #10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
9d632a8
Added Net::LDAP::Entry object to strategies test
syndicut b524feb
Added respond_to? check to user mapping function
syndicut 77eb81a
Use fail!(:missing_credentials) instead of raising custom exception
9a73d14
Unify formatting in spec files, remove trailing whitespace
e2664b7
Use #let instead of defineing methods in specs
78632d2
Rewrite LDAP strategy spec to specify conditions for each test case
df7a8d0
Add cases when username is empty to strategy spec
987a81f
Do not allow to sign in using blank username or blank password
fa90d49
Add the possibility to specify a custom LDAP filter
sdeframond 7f66cff
Add some ducomentation
sdeframond ef89fe7
Merge pull request #23 from DimaD/master
77e842e
increased the version
2c0cc45
add license information to gemspec
jordimassaguerpla fe216a1
gitignore Gemfile.lock
5cd2771
Update net-ldap
leoasis 6e9537b
Add two missing commas to example code
rcsheets b4af89c
Merge branch 'map-userinfo-fix' of github.com:syndicut/omniauth-ldap …
256c3d4
removed the rspec deprecation.
a47a72a
Merge pull request #25 from jordimassaguerpla/master
62bc4f0
Merge pull request #28 from docwhat/gemfile_lock
232e088
Merge pull request #30 from leoasis/master
2211893
removed the @url variable and construct_uri method
120487f
Merge pull request #32 from rcsheets/master
5ef14bb
increased the version to 1.0.4
efa1abc
Merge branch 'master' of github.com:intridea/omniauth-ldap
7aa1386
Merge branch 'master' of github.com:webagecorp/omniauth-ldap into web…
76d7754
Merge branch 'master' of https://github.com/intridea/omniauth-ldap
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,5 @@ branches: | |
only: | ||
- 'master' | ||
rvm: | ||
- 1.9.2 | ||
- 2.0.0 | ||
script: "bundle exec rspec spec" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module OmniAuth | ||
module LDAP | ||
VERSION = "1.0.3" | ||
VERSION = "1.0.4" | ||
end | ||
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this a good idea @randx?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Never mind, it looked for a minute like we were no longer raising an error for missing credentials. I see it uses the
fail!
method now.