-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [Autoload] allows all bits of Grape to be autoloaded * [AutoLoad] creates a compile! method to pre load an API class * [AutoLoad] Addresses rubocop rules, and adds a readme line * [AutoLoad] Adds changes to changelog * Addresses issues with danger * Makes sure the check happens inside the Mutex * Syntax on the README * [AutoLoad] does not take the lock to try to compile is an instance is already present * [AutoLoad] Tests the new methods compile! and instance_for_rack
- Loading branch information
Showing
7 changed files
with
183 additions
and
74 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
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Grape.eager_load! | ||
Grape::Http.eager_load! | ||
Grape::Exceptions.eager_load! | ||
Grape::Extensions.eager_load! | ||
Grape::Extensions::ActiveSupport.eager_load! | ||
Grape::Extensions::Hashie.eager_load! | ||
Grape::Middleware.eager_load! | ||
Grape::Middleware::Auth.eager_load! | ||
Grape::Middleware::Versioner.eager_load! | ||
Grape::Util.eager_load! | ||
Grape::ErrorFormatter.eager_load! | ||
Grape::Formatter.eager_load! | ||
Grape::Parser.eager_load! | ||
Grape::DSL.eager_load! | ||
Grape::API.eager_load! | ||
Grape::Presenters.eager_load! | ||
Grape::ServeFile.eager_load! | ||
Rack::Head # AutoLoads the Rack::Head |
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