-
Notifications
You must be signed in to change notification settings - Fork 3
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
split color_data into separate files #24
base: master
Are you sure you want to change the base?
Conversation
…on of some portions
Co-authored-by: Sutou Kouhei <[email protected]>
require_relative "./color_data/tableau" | ||
require_relative "./color_data/xkcd" | ||
require_relative "./color_data/css4" |
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.
Are these references also required to change paths?
end | ||
end | ||
require_relative "color_data/matplotlib" | ||
require_relative "./color_data/tableau" |
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.
require_relative "./color_data/tableau" | |
require_relative "color_data/tableau" |
end | ||
require_relative "color_data/matplotlib" | ||
require_relative "./color_data/tableau" | ||
require_relative "./color_data/xkcd" |
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.
require_relative "./color_data/xkcd" | |
require_relative "color_data/xkcd" |
require_relative "color_data/matplotlib" | ||
require_relative "./color_data/tableau" | ||
require_relative "./color_data/xkcd" | ||
require_relative "./color_data/css4" |
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.
require_relative "./color_data/css4" | |
require_relative "color_data/css4" |
@kou This is the first half of the pull-request in #23, which in prepararation for solving #8.
If this is satisfactory, the remaining part will be submitted in a second pull request.