-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update to Doorkeeper upstream * Fix various issues * Test against Rails 5.2 * Bump version
- Loading branch information
Showing
10 changed files
with
34 additions
and
9 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
Submodule doorkeeper
updated
19 files
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ Gem::Specification.new do |gem| | |
gem.name = 'doorkeeper-sequel' | ||
gem.version = DoorkeeperSequel.gem_version | ||
gem.authors = ['Nikita Bulai'] | ||
gem.date = '2017-12-14' | ||
gem.date = '2018-02-08' | ||
gem.email = ['[email protected]'] | ||
gem.homepage = 'http://github.com/nbulaj/doorkeeper-sequel' | ||
gem.summary = 'Doorkeeper Sequel ORM' | ||
|
@@ -26,6 +26,7 @@ Gem::Specification.new do |gem| | |
gem.add_runtime_dependency 'sequel_polymorphic', '~> 0.2', '< 1.0' | ||
gem.add_runtime_dependency 'thor', '>= 0.18', '< 6' | ||
|
||
gem.add_development_dependency 'grape' | ||
gem.add_development_dependency 'capybara', '~> 2.14', '>= 2.14.0' | ||
gem.add_development_dependency 'database_cleaner', '~> 1.5', '>= 1.5.0' | ||
gem.add_development_dependency 'factory_bot', '~> 4.8' | ||
|
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
source 'https://rubygems.org' | ||
|
||
gemspec path: '..' | ||
|
||
gem 'rails', '5.2.0.rc1' | ||
gem 'sqlite3', '~> 1.3.5' | ||
gem 'sequel', '>= 4.0' | ||
|
||
group :test do | ||
gem 'rspec-rails', '~> 3.6' | ||
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