-
Notifications
You must be signed in to change notification settings - Fork 84
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
Feature objc defines #39
Conversation
@@ -1,3 +1,3 @@ | |||
module Babelish | |||
VERSION = '0.3.1' | |||
VERSION = '0.3.2' |
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.
end | ||
if options[:macros_filename] |
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.
Inconsistent indentation detected.
next unless lang | ||
return lang.content.keys unless lang.content.keys.empty? | ||
end | ||
return [] |
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.
Redundant return
detected.
EOS | ||
csv_file = "test/data/test_data_multiple_langs.csv" | ||
converter = Babelish::CSV2Strings.new(csv_file, | ||
{'English' => [:en], "French" => "fr", "German" => "de", "Spanish" => "es"}, |
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.
Align the parameters of a method call if they span more than one line.
Space inside { missing.
Space inside } missing.
Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.
Intention to respond to feature #30