oauth2 1.4.0 → 1.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.gitignore +12 -0
- data/.jrubyrc +1 -0
- data/.rspec +2 -0
- data/.rubocop.yml +80 -0
- data/.rubocop_rspec.yml +26 -0
- data/.rubocop_todo.yml +15 -0
- data/.travis.yml +49 -0
- data/CHANGELOG.md +139 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +41 -0
- data/LICENSE +22 -0
- data/README.md +101 -18
- data/Rakefile +45 -0
- data/gemfiles/jruby_1.7.gemfile +11 -0
- data/gemfiles/jruby_1.7.gemfile.lock +81 -0
- data/gemfiles/jruby_9.0.gemfile +13 -0
- data/gemfiles/jruby_9.1.gemfile +17 -0
- data/gemfiles/jruby_9.1.gemfile.lock +112 -0
- data/gemfiles/jruby_9.2.gemfile +17 -0
- data/gemfiles/jruby_9.2.gemfile.lock +112 -0
- data/gemfiles/jruby_head.gemfile +17 -0
- data/gemfiles/ruby_1.9.gemfile +16 -0
- data/gemfiles/ruby_1.9.gemfile.lock +85 -0
- data/gemfiles/ruby_2.0.gemfile +17 -0
- data/gemfiles/ruby_2.0.gemfile.lock +90 -0
- data/gemfiles/ruby_2.1.gemfile +19 -0
- data/gemfiles/ruby_2.1.gemfile.lock +109 -0
- data/gemfiles/ruby_2.2.gemfile +17 -0
- data/gemfiles/ruby_2.2.gemfile.lock +108 -0
- data/gemfiles/ruby_2.3.gemfile +17 -0
- data/gemfiles/ruby_2.3.gemfile.lock +108 -0
- data/gemfiles/ruby_2.4.gemfile +17 -0
- data/gemfiles/ruby_2.4.gemfile.lock +108 -0
- data/gemfiles/ruby_2.5.gemfile +17 -0
- data/gemfiles/ruby_2.5.gemfile.lock +108 -0
- data/gemfiles/ruby_head.gemfile +17 -0
- data/gemfiles/ruby_head.gemfile.lock +108 -0
- data/lib/oauth2/mac_token.rb +1 -1
- data/lib/oauth2/version.rb +6 -6
- data/oauth2.gemspec +23 -8
- metadata +160 -15
- data/LICENSE.md +0 -20
data/LICENSE.md
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
Copyright (c) 2011-2013 Michael Bleigh and Intridea, Inc.
|
2
|
-
|
3
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
-
a copy of this software and associated documentation files (the
|
5
|
-
"Software"), to deal in the Software without restriction, including
|
6
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
-
permit persons to whom the Software is furnished to do so, subject to
|
9
|
-
the following conditions:
|
10
|
-
|
11
|
-
The above copyright notice and this permission notice shall be
|
12
|
-
included in all copies or substantial portions of the Software.
|
13
|
-
|
14
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|