-
Notifications
You must be signed in to change notification settings - Fork 19
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
Implement Convert Post Conditional refactoring #23
Conversation
@@ -2,12 +2,13 @@ | |||
|
|||
Ruby refactor is inspired by the Vim plugin vim-refactoring-ruby, currently found at https://github.com/ecomba/vim-ruby-refactoring. | |||
|
|||
I've implemented 5 refactorings | |||
I've implemented 6 refactorings |
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.
At this point, it should probably read 'There are refactorings available". :)
Mike! Thanks for the work! I have a couple asks, though. Could you make this 2 pull requests? One for the misspellings and one for the new feature? For the new feature, would you mind throwing an example in the 'readme' and adding a feature test? @cheezy was good enough to introduce them as he cleaned things up. If not, do let 'us' know, and I'm sure we can get it sorted. |
Yes, I can totally make this 2 pull requests. As far as the feature test, I wasn't able to get any of them to run. When I try to run one with Do you want me to clean up the history when I remove the typo fixes? I can remove the commit that's just 'Fix typo' and edit the commit that's got the other typo stuff in it. Or I guess what would be easier: do you want me to just squash all my work into one commit? |
After some research, I installed cask, and set up a
I then did a
I thought this looked like it was trying to read in the
At this point, I've spent a couple hours spinning my wheels and I'd like some help to set up my environment correctly so I can write a feature test and get this PR merged. |
I'm having the same issues. I assure you it worked once upon a time. :) If you split it into the 2 PRS - one to fix typos, one to add the feature, I'll get you merged. |
Add support for unless as well as if Update README
Hey, no worries. It's software :) I added an example and removed the typo fixes from this PR. I also went ahead and squashed all my commits because I thought that would be cleaner. Let me know if you want me to tweak the wording on anything I touched. |
Implement Convert Post Conditional refactoring
Implements #12
I recently decided I wanted to work on some emacs packages, and this seemed like a good place to start. I'm planning on implementing the remaining refactorings from the vim package, plus any others I think of that I use frequently.