-
Notifications
You must be signed in to change notification settings - Fork 316
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
Fix crash on require 'github_api' #325
Fix crash on require 'github_api' #325
Conversation
lib/github_api/configuration.rb
Outdated
@@ -1,6 +1,7 @@ | |||
# encoding: utf-8 | |||
|
|||
require_relative 'api/config' | |||
#require_relative 'version' |
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.
Missing space after #.
@@ -1,6 +1,7 @@ | |||
# encoding: utf-8 | |||
|
|||
require_relative 'api/config' | |||
require_relative 'version' |
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.
Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.
6 similar comments
Thanks! ❤️ |
Sorry for releasing such borked version of the library, I've yanked the |
Without this patch I get the following error on
require 'github_api'