forked from doorkeeper-gem/doorkeeper
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* PKCE support for rails 3.2 * Add Gemfile for Ruby 2.7 and Rails 3.2 * fix code challenge and code challenge method not getting saved issue and update specs * find client using client_id if code verifier is present * fix failing test case * Add CircleCI Co-authored-by: Ian Lesperance <[email protected]>
- Loading branch information
1 parent
6336059
commit 846a6b5
Showing
13 changed files
with
357 additions
and
32 deletions.
There are no files selected for viewing
This file contains 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 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 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,27 +1,28 @@ | ||
$:.push File.expand_path("../lib", __FILE__) | ||
$:.push File.expand_path('lib', __dir__) | ||
|
||
require "doorkeeper/version" | ||
require 'doorkeeper/version' | ||
|
||
Gem::Specification.new do |s| | ||
s.name = "doorkeeper" | ||
s.name = 'doorkeeper' | ||
s.version = Doorkeeper::VERSION | ||
s.authors = ["Felipe Elias Philipp", "Tute Costa"] | ||
s.email = %w([email protected]) | ||
s.homepage = "https://github.com/doorkeeper-gem/doorkeeper" | ||
s.summary = "OAuth 2 provider for Rails and Grape" | ||
s.description = "Doorkeeper is an OAuth 2 provider for Rails and Grape." | ||
s.authors = ['Felipe Elias Philipp', 'Tute Costa'] | ||
s.email = %w[[email protected]] | ||
s.homepage = 'https://github.com/doorkeeper-gem/doorkeeper' | ||
s.summary = 'OAuth 2 provider for Rails and Grape' | ||
s.description = 'Doorkeeper is an OAuth 2 provider for Rails and Grape.' | ||
s.license = 'MIT' | ||
|
||
s.files = `git ls-files`.split("\n") | ||
s.test_files = `git ls-files -- spec/*`.split("\n") | ||
s.require_paths = ["lib"] | ||
s.require_paths = ['lib'] | ||
|
||
s.add_dependency "railties", ">= 3.2" | ||
s.add_dependency 'railties', '>= 3.2' | ||
|
||
s.add_development_dependency "rspec-rails", "~> 3.4.0" | ||
s.add_development_dependency "capybara", "~> 2.3.0" | ||
s.add_development_dependency "generator_spec", "~> 0.9.0" | ||
s.add_development_dependency "factory_girl", "~> 4.5.0" | ||
s.add_development_dependency "timecop", "~> 0.7.0" | ||
s.add_development_dependency "database_cleaner", "~> 1.3.0" | ||
s.add_development_dependency 'rspec-rails', '~> 3.4.0' | ||
s.add_development_dependency 'capybara', '~> 2.3.0' | ||
s.add_development_dependency 'generator_spec', '~> 0.9.0' | ||
s.add_development_dependency 'factory_girl', '~> 4.5.0' | ||
s.add_development_dependency 'timecop', '~> 0.7.0' | ||
s.add_development_dependency 'database_cleaner', '~> 1.3.0' | ||
s.add_development_dependency 'bigdecimal', '1.3.5' | ||
end |
This file contains 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 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 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 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 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 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 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.