rails-transporter icon indicating copy to clipboard operation
rails-transporter copied to clipboard

AtomEditor package that to open related Rails files on current context

Results 7 rails-transporter issues
Sort by recently updated
recently updated
newest added

This pull request implements #94. It adds a config option "rails-transporter.libSpecDirectory" and open-spec handling for files in the "lib/" directory.

I have a model called QueryDoc.rb, which links to a controller called query_doc_controller.rb. Expected behavior #1: From QueryDoc.rb, type 'Ctrl-r, c'. Expect to reach query_doc_controller.rb. Expected behavior #2: After #1...

The current implementation of the open-spec command basically mirrors the "app/" directory into the "spec/" directory. However, in my Rails application I have some files in "lib/" instead "of app/lib/"...

I only added support for erb and I didn't add any tests. Let me know if you want me to go further.

I've just noticed that when I press `ctrl + R + V` (expecting to open view for controller action) atom is actually waiting if the next key pressed will be...

addresses https://github.com/hmatsuda/rails-transporter/issues/73#issuecomment-118868962 - handle ’test/functional’ instead of `test/controllers’ - handle ‘test/unit’ instead of `test/models’ for review @hmatsuda