From Eclipse to Textmate

A month ago I bought a Macbook Pro (my first Apple) and I’m really very
happy with it. I am used to Eclipse and RADRails for Rails Development
under Windows and Linux. I bought the famous Textmate and while I like
the lightweight feel of it, I miss some features from Eclipse like
seamless subversion integration and such. What tools do you Mac people
use besides Textmate?

Best regards
Gernot

Gernot K. wrote:

A month ago I bought a Macbook Pro (my first Apple) and I’m really very
happy with it. I am used to Eclipse and RADRails for Rails Development
under Windows and Linux. I bought the famous Textmate and while I like
the lightweight feel of it, I miss some features from Eclipse like
seamless subversion integration and such. What tools do you Mac people
use besides Textmate?

Our cycle with svn rarely strays out of this envelop:

svn up # what did you do?
svn diff # what did we do?
svn revert path/file # we should not have done it!
rake ci m=‘what we did’

ci is a rake task that runs all our tests, and calls svn ci -m "#{ENV['m']}"

Frankly, there’s almost nothing to integrate there. We don’t do the
pathetic Visual Studio Classic thing were you have to click on each
file to check it out. And we certainly never check in just one file at
a time without a test run to back it up. The goal is that each ci is a
coherent integration of one tested version of the code.

Always develop with a command line open - preferrably bash - and enter
those command lines there. They are much more flexible and
user-friendly than a clicker inside an editor. That leads to mouse
abuse!


Phlip
http://c2.com/cgi/wiki?ZeekLand ← NOT a blog!!

On Feb 17, 4:49 pm, Gernot K. [email protected]
wrote:

What tools do you Mac people use besides Textmate?

Nothing else than Eclipse with radrailss

I’m not afraid of the command line at all, but I liked for example the
sbuversion state icons in subclipse. And I don’t think that Visual
Studio is that bad. I do some serious development there (for a living),
although I like Ruby/Rails much more. Sounds a little religious, Philip.


Gernot

BBEdit (barebones.com) has very solid svn integration as well as ruby
& rails support. Check it out!

On Feb 17, 9:49 am, Gernot K. [email protected]

TextMate has a bit of Subversion integration out of the box. No, it’s
not
as nice as what Eclipse offers… synchronizing, visual diff, etc…
however, I agree with Philip, having a good grasp of command line svn
will
eventually save ye arse at some point.

Check out this link for more info about TextMate bundles:
Bundles — TextMate Manual


James M.