-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Refactoring for Rakefile to display cucumber task by "rake -T". #1088
Refactoring for Rakefile to display cucumber task by "rake -T". #1088
Conversation
There's a file in One of the things that file does is set the correct profile for the platform. We're deprecating (or have removed) some of those platforms as you know, but not all of them. Also that file sets the In general I'd be delighted if we could remove that file and replace it with this, which looks much simpler. It might be that we need to carry over a little bit more though, for example to make sure the build works on a Windows machine. |
@mattwynne ok I understood current situation. Let me check the source code more. |
- Add profile for Ruby 2.2, 2.3 and 2.4.
43af4f6
to
10e9967
Compare
@mattwynne
or
However I wonder that the profiles
I did rebase my code on this PR. |
I think you're right that the ruby version profiles are mostly redundant now. They're certainly messy, so if we can remove them I think we should. I also liked the way you'd simplified this in the original PR. If you were to remove This is only stuff for us devs to use anyway, so it's worth taking some risks if it helps us to clean things up. |
@mattwynne |
- Unify ruby_x_y profiles
c8590a1
to
05715cc
Compare
If there is not any opposition, I am going to merge this PR after tomorrow. |
👍 |
@junaruga please add a line in HISTORY.md after you merge. |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Summary
I want to display cucumber task by "rake -T".
It is not displayed because the cucumber task does not have a description.
This is a refactoring for
Rakefile
.Details
Current situation
Display tasks with description.
cucumber
task is not displayed.Display all the tasks including tasks without description.
cucumber
task is displayed.After modification
cucumber
task is displayed by "rake -T".Motivation and Context
I want to see
cucumber
task by "rake -T".Also below codes can be improved to simplify it.
How Has This Been Tested?
I tested my code running
rake -T
andrake -AT
.Travis tests it too.
Screenshots (if appropriate):
Types of changes
Checklist: