Close and Go BackBack to Viget

December NovaRUG Recap & Rails Training

Patrick Reagan
Patrick Reagan, Development Director, January 02, 2007 0

A couple weeks ago, Kevin, Ben, and myself headed out to the December NovaRUG meeting to catch Rich Kilmer’s talk on Domain Specific Languages (DSLs) in Ruby.  People who have read the testing chapter in the latest Agile Web Development with Rails book may be familiar with the DSL that Dave presents when demonstrating integration tests in Rails:


  def test_buying_a_product
    dave = regular_user
    dave.get '/store/index'
    dave.is_viewing 'index'
    dave.buys_a @ruby_book
  end

Rich provided many examples of DSLs that he’s used, including one that he created for the DoD to handle planning of in-flight airplane refueling.  He also discussed his work with GUITopia to create an intuitive GUI DSL which was a bit more accessible to me as a newcomer to Ruby:


window.close(:button)
window.close(:button).click

Rich also discussed differences between both implicit and explicit DSLs and the scoping issues resulting from both.  My limited understanding of blocks and closures put me at a bit of a disadvantage here – something that I hope to resolve when we have our training event in January.

Training?

Yes.  We will be hosting a Rails training event here in the DC Metro area (Reston, to be exact) January 15th - 17th with Chad Fowler.  The session is geared toward people who have web development experience and have played a bit with Rails but want to get more in-depth.  The skill level required for this course falls between the Basic and Advanced Rails Studio classes offered by the Pragmatic Studio folks. 

Cost is $750 per person for all 3 days, email training@viget.com if you’d like to attend – space is limited. Hope to see you there.

Trackback: Luis de la Rosa - Intermediate Rails training in Reston, VA this January on 01/02 at 05:54 PM [...] Anyways, Chad is coming to town January 15 - 17 to do Intermediate Rails training event. I inquired further and this falls inbetween the (Beginner) Rails Studio and the Advanced Rails Studio. To quote Patrick: “The session is geared toward people who have web development experience and have played a bit with Rails but want to get more in-depth.” The cost is $750 which I think is a good deal. If you’re interested, email training@viget.com. [...]-----

Trackback URL: Trackbacks are disabled for this entry

A Development Community for Viget Labs and Beyond

Every team member here at Viget Labs strives to be an innovator. We members of the development team are no different - that's why we're constantly engaging in community discussions and exploring the unknown that is the next generation of open-source web applications.

Viget Is Hiring!

Viget has job openings for Ruby Developers, Interns, and Front-End Developers. Learn More »

Recent Comments

I have used several different strategies for achieving this, and have settled on the plugin seed_fu to accomplish this task. Because it uses plain ruby files you have quite a few more options for manipulating your seed data as opposed to using fixtures. I have found that this lets me create seed data that is much less brittle than fixtures can be. You can find seed_fu on...