TextMate tips for Rails Development

后端 未结 4 1007
隐瞒了意图╮
隐瞒了意图╮ 2020-12-24 14:18

Working on Rails code for a bit has started me on the spiral into obsessively customising my dev environment (I say obsessive as at the last Rails meetup I went to there was

相关标签:
4条回答
  • 2020-12-24 14:55

    ProjectPlus and Getbundles are two great additions to TextMate regardless of what you're using it for. This blog post has details on both of them.

    Other than that, if you know a scripting language (such as Ruby or Python—probably Ruby in your case), you can extend TextMate pretty easily to do specific tasks. This post in the TextMate manual has good information on getting started, such as how to get input piped from the text to STDIN.

    An editor is only as good as what you make with it, so write some awesome apps! But if you're itching to refine your workflow a bit, these links should help.

    0 讨论(0)
  • 2020-12-24 14:56

    One of the most popular ones is ruby-on-rails-tmbundle. Available here: http://github.com/drnic/ruby-on-rails-tmbundle/tree/

    This bundle adds a ton of useful commands and features. Also recommended is the peepcode tutorial on using this bundle (not free but well worth the cost): http://peepcode.com/products/textmate-for-rails-2

    0 讨论(0)
  • 2020-12-24 15:01

    In addition to the Rails bundle, there's probably a bundle for your unit test framework (Shoulda, RSpec), and there's also one for Cucumber (if you lean that way). There may be one for your fixture framework too (I know there's one for Machinist, don't know if there's one for FactoryGirl). If you're into HAML there's a bundle for that too, or the Formtastic bundle if you like to use that for your forms.

    The Rails bundle is worth it for the migration snippets and association snippets alone. Also "Partial From Selection" is another killer feature.

    Of the topic of Ruby/Rails a bit, there's also a really good jQuery bundle. I bring this up because there's a good chance your Rails project is using jQuery. There's also a Prototype/Scriptalicious bundle if you're going that way.

    When I'm using TextMate, I'll use Control-Command-T (brings up the "select bundle item" window), in which I can type part of the command and TextMate will filter the list until it finds the one that matches. This is great because I can never remember obscure keyboard commands, nor triggers that I only use a few times a week.

    0 讨论(0)
  • 2020-12-24 15:09

    For searching in your project, use Ack in Project: http://github.com/protocool/ack-tmbundle

    Works so much better than the built in Find in Project

    0 讨论(0)
提交回复
热议问题