puts Blog.new(”nonsense”)

Archive for November, 2006

Podcast Interview: Grails 0.3 Release, Upcoming Book, and More

Posted by Jason Rudolph on 17th November 2006

I recently had the opportunity to chat with Sven Haiges for an episode of the Grails podcast. We discussed the many new features (and impressive number of bug fixes) in the recent 0.3 release as well as several of the upcoming improvements slated for 0.4 and 0.5. We also talked about the overall increasing momentum of Grails, and Sven recapped last week's W-JAX 2006 conference, which attracted standing-room-only crowds for the Groovy and Grails sessions! It was a good time, and if you listen closely, you might even catch an announcement of an upcoming Grails-related publication.

Many thanks to Sven for having me on the podcast.

Subscribe to the podcast in iTunes

Tags: , , , | No Comments »

Getting Groovy with TextMate

Posted by Jason Rudolph on 2nd November 2006

Graeme Rocher has assembled Groovy and Grails bundles for the splendid (and increasingly popular) TextMate editor for Mac OS X. These bundles offer a whole host of code snippets for common Groovy and Grails tasks, and as you might expect, the bundles provide some handy syntax highlighting as well. While these bundles are certainly useful for anyone working with Groovy and Grails in TextMate, they should be especially helpful for Groovy and Grails newbies.

"Hmmm. I need to iterate over each line in a file. How exactly do I do that in Groovy?"

Goes to TextMate menu…

Bundles –> Groovy –> Iteration –> Files & Streams –> eachLine

TextMate Groovy Bundle Menu Screen Shot

The developer finds the answer he needs without ever leaving the editor. (Less context switching equals greater productivity, so it's an all-around win.) In fact, it's really a great way to discover various Groovy and Grails features. Just by looking through the available code snippets, a developer can quickly check out all sorts of APIs and idioms he might not have otherwise known about. Of course, you're not required to use the menu to benefit from the code snippets; you can also tab through various code completion options. Sticking with the example above, you can type File, hit tab, and TextMate inserts the same code snippet we'd get from the menu.

TextMate Groovy Bundle Code Snippet Screen Shot

If you're ready to give it a shot, just follow the pleasantly-simple installation process, and you'll be good to go.

  1. Download and untar the tarball.

  2. Copy the bundle files (Groovy.tmbundle and Grails.tmbundle) to ~/Library/Application Support/TextMate/Bundles
  3. jason> ls -l ~/Library/Application\ Support/TextMate/Bundles/
    total 0
    drwxr-xr-x 5 jason jason 170 Nov 1 17:33 Grails.tmbundle
    drwxr-xr-x 6 jason jason 204 Nov 1 17:33 Groovy.tmbundle
    jason>
  4. Fire up TextMate and start groovin'!

For more examples of what you'll get from these bundles, be sure to check out the initial release notes.

And, there's still more to come. Graeme points out that these bundles are a work in progress. In addition to more code snippets, future releases will likely provide the ability to execute a Groovy unit test directly from within TextMate, execute a Groovy script inside TextMate, etc.

If you have a chance to try it out, shoot a quick note to the Groovy mailing list with your thoughts (or post a comment here, and I'll be happy to pass it along).

– 

Update (2006-11-03)

Work in progress, indeed! Graeme has just added the ability to run Groovy scripts and Groovy classes from within TextMate.

To take advantage of these new features, first make sure you have Groovy installed and that your GROOVY_HOME variable is set. Then, just grab the current version of the bundle, install it, and you're ready to rock.

Once you've installed the latest bundle, open any Groovy file in TextMate, and hit Command + R to run the file in your editor.

Presenting…the gratuitous Hello World example…

TextMate Screen Shot - Groovy Output w/ Command + R

Or, if you just want to execute the currently selected text, hit Command + Option + R to run just the selection.

TextMate Screen Shot - Groovy Output w/ Command + Option + R

Stay tuned for more updates as they come in. 

– 

Update (2007-01-13)

I modified the bundle links above to point to the locally hosted copy of the bundles, until such time that these bundles make their way to the official TextMate repository.  Thanks, Martin, for this suggestion

– 

Update (2007-01-28)

The bundles still have yet to make their way to the official TextMate repository, but the Groovy site is now hosting a page on TextMate integration.

– 

Update (2007-02-19)

At long last, the bundles have found a new home at the official TextMate repository.  Not only have they found a new home, but you'll also find some nice new features in the latest revision of the bundles.  So, if you previously fetched the bundles from anywhere other than the official TextMate repository, you'll likely want to upgrade to the latest version. 

Tags: , , | 4 Comments »