<?xml version="1.0" encoding="UTF-8"?>
<feed xml:lang="en-US" xmlns="http://www.w3.org/2005/Atom">
  <title>Ruby in Practice - Home</title>
  <id>tag:www.rubyinpractice.com,2007:mephisto/</id>
  <generator uri="http://mephistoblog.com" version="0.7.3">Mephisto Noh-Varr</generator>
  <link href="http://www.rubyinpractice.com/feed/atom.xml" rel="self" type="application/atom+xml"/>
  <link href="http://www.rubyinpractice.com/" rel="alternate" type="text/html"/>
  <updated>2007-04-01T00:45:26Z</updated>
  <entry xml:base="http://www.rubyinpractice.com/">
    <author>
      <name>jeremy</name>
    </author>
    <id>tag:www.rubyinpractice.com,2007-04-01:152</id>
    <published>2007-04-01T00:40:00Z</published>
    <updated>2007-04-01T00:45:26Z</updated>
    <link href="http://www.rubyinpractice.com/2007/4/1/transference-of-knowledge-and-rails" rel="alternate" type="text/html"/>
    <title>Transference of knowledge and Rails</title>
<content type="html">
            &lt;p&gt;&lt;a href=&quot;http://on-ruby.blogspot.com/&quot;&gt;Pat Eyler&lt;/a&gt; posted a &lt;a href=&quot;http://on-ruby.blogspot.com/2007/03/march-blogging-contest.html&quot;&gt;blogging contest&lt;/a&gt; sometime early this month, but I've just now gotten around to really fleshing my thoughts out on the question: &lt;i&gt;What can Rails learn from other frameworks?&lt;/i&gt;&lt;/p&gt;

&lt;p&gt;My answer?  A lot.  And I think maybe it's not really even from the frameworks themselves, but from the users of said frameworks.  When you use a framework or language or tool, you gain a certain level of knowledge and intimacy with it.  When evaluating other frameworks, one must weigh the gains of the framework with the loss of knowledge: will I gain more features or other advantages than I will be losing knowledge and familiarity?  Web frameworks are a commodity, but knowledge and time are not.&lt;/p&gt;

&lt;p&gt;Don't mistake me: I think the Rails way is great.  When I looked at my knowledge of PHP and C# and I evaluated what I was gaining when switching to Ruby and Rails, I definitely saw a better ratio of gains to losses.  Others, though, do not see it that way.&lt;/p&gt;

&lt;p&gt;Nitro on the other hand does see it that way.  From their RDoc:
&lt;blockquote&gt;
You can write applications in the ASP/JSP/PHP style, ie by writting server pages that are automatically translated to Ruby code by Nitro.&lt;br&gt;
Or, you can write MVC style applications (like Rails) by utilizing the powerfull Object publishing/Controller mechanism.&lt;br&gt;
Alternatively, you can use stateful components and/or programmatic rendering: Nitro is the premium container for Wee applications.
&lt;/blockquote&gt;
This approach helps compensate for the change from one environment to another: your knowledge of PHP or JSP is now valuable again.  You can gain the benefits of the new framework while still salvaging parts of the time and knowledge of your previous efforts.&lt;/p&gt;
&lt;p&gt;Rails doesn't allow for much in this regard.  It forces you to follow conventions; it forces you to follow MVC; it forces you to do it the Rails Way.  This is great: this is what we want.  Rails' practices are both agile and effective, but it's hard to be hit in the face with &quot;The Rails Way&quot; from the get go.  I'm not saying that Rails should switch to this totally flexible setup like Nitro, but I do think it should provide, shall we say, &quot;entrances&quot; for this existing knowledge to make inways to the Rails world.&lt;/p&gt;
&lt;p&gt;What's the benefit to Rails though?  Why care?  There are a lot of brilliant people in the PHP and Java worlds.  A lot of really really smart people who could bring a lot of knowledge to the world of Rails, but if Rails doesn't provide ways for this knowledge to be used, it's sort of a moot point.&lt;/p&gt;
&lt;p&gt;Unfortunately, I dont have any &quot;practical&quot; suggestions for Rails to implement, but I think this is an idea that should be brought up for discussion: offer ways for people to use their knowledge of previous frameworks in the current Rails ecosystem.  Don't change the way Rails works, but provide ways to transfer knowledge.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://www.rubyinpractice.com/">
    <author>
      <name>assaf</name>
    </author>
    <id>tag:www.rubyinpractice.com,2007-02-07:12</id>
    <published>2007-02-07T07:45:00Z</published>
    <updated>2007-02-07T07:47:29Z</updated>
    <category term="map.resources :ruby"/>
    <link href="http://www.rubyinpractice.com/2007/2/7/map-resources-ruby-9" rel="alternate" type="text/html"/>
    <title>map.resources :ruby [9]</title>
<content type="html">
            &lt;p&gt;&lt;strong&gt;Concurrency.&lt;/strong&gt; MenTaLguY shows &lt;a href=&quot;http://moonbase.rydia.net/mental/blog/programming/concurrency-five-ways.html&quot;&gt;five ways to do concurrency in Ruby&lt;/a&gt;: mutexes, futures, STM, actors and joins.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;ActiveLDAP&lt;/strong&gt; &lt;a href=&quot;http://rubyforge.org/projects/ruby-activeldap/&quot;&gt;ActiveLDAP&lt;/a&gt; gives you an ActiveRecord-like access to LDAP servers.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Ruby in the Enterprise.&lt;/strong&gt; Timothy M. O'Brien has a great write up on &lt;a href=&quot;http://www.oreillynet.com/ruby/blog/2007/01/bringing_rails_to_the_enterpri_1.html&quot;&gt;Bringing Rails to the Enterprise&lt;/a&gt;. He presents some of the myths, and the reality of using Rails in the field.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;ActiveSpec&lt;/strong&gt; Luke Redpath brings us &lt;a href=&quot;http://www.lukeredpath.co.uk/2006/9/28/introduction-to-activespec&quot;&gt;ActiveSpec&lt;/a&gt;, a framework for writing specifications. Looks similar to RSpec, but ActiveSpec deals with generic specification that can be used for test, just as well as validation and selecting from collections. Besides the multiple uses, ActiveSpec allows you to keep your specifications inside the model (a la Rails validation), but also reuse validations across several models. And check the teaser at the end of the post: using specifications with ActiveRecord find methods.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;IntelliR&lt;/strong&gt; JetBrains adds Ruby support to IntelliJ. &lt;a href=&quot;http://www.jetbrains.com/idea/training/demos/ruby.html&quot;&gt;Watch the screencast&lt;/a&gt;.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://www.rubyinpractice.com/">
    <author>
      <name>assaf</name>
    </author>
    <id>tag:www.rubyinpractice.com,2007-01-20:10</id>
    <published>2007-01-20T22:45:00Z</published>
    <updated>2007-01-20T22:53:35Z</updated>
    <category term="map.resources :ruby"/>
    <link href="http://www.rubyinpractice.com/2007/1/20/map-resources-ruby-8" rel="alternate" type="text/html"/>
    <title>map.resources :ruby [8]</title>
<content type="html">
            &lt;p&gt;&lt;strong&gt;ARes Test Drive.&lt;/strong&gt; Rick Olson &lt;a href=&quot;http://weblog.techno-weenie.net/2006/12/12/taking-ares-out-for-a-test-drive&quot;&gt;takes ActiveResource for a test drive&lt;/a&gt;, using it to read and post to the Beast discussion forum. Looks like ActiveResource will not be part of Rails 1.2, but still the current version is promising. Check the post to see how much you can do with little coding.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Debugging in Steel.&lt;/strong&gt; Another reason for using &lt;a href=&quot;http://www.sapphiresteel.com/&quot;&gt;Ruby in Steel&lt;/a&gt;: &lt;a href=&quot;http://www.sapphiresteel.com/Debugging-Ruby-On-Rails&quot;&gt;debugging Rails applications&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;What will DSL do for me?&lt;/strong&gt; Russ Olsen wanted to test against a fake Web server, to keep the test cases simple, he &lt;a href=&quot;http://jroller.com/page/rolsen?entry=building_a_dsl_in_ruby1&quot;&gt;created a DSL&lt;/a&gt;: “Clearly, anything you can do in potemkin you can do in plain old Ruby plus webrick. Potemkin just makes its easier, and easier, quite frequently, is the name of the programming game.”&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Rails 1.2&lt;/strong&gt; &lt;a href=&quot;http://weblog.rubyonrails.com/2007/1/19/rails-1-2-rest-admiration-http-lovefest-and-utf-8-celebrations&quot;&gt;Rails 1.2 is officially out&lt;/a&gt;, with hundred of bug fixes, improvements, better ActiveRecord, UTF-8 support and ... the best framework for HTTP. Rails 1.2 breaths HTTP, RESTful all the way, and lets you build XML and JSON APIs in a few lines of code.&lt;/p&gt;
&lt;p&gt;And while you're at it, check out &lt;a href=&quot;http://www.amazon.com/gp/product/0596527314?ie=UTF8&amp;tag=ryansscraps-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0596527314&quot;&gt;the Rails Cookbook&lt;/a&gt;, which covers Rails 1.2.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;s33r&lt;/strong&gt; From &lt;a href=&quot;http://townx.org/tech&quot;&gt;Elliot Smith&lt;/a&gt;, s33r is a &lt;a href=&quot;http://s33r.rubyforge.org/&quot;&gt;library for using Amazon's S3 service&lt;/a&gt;.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://www.rubyinpractice.com/">
    <author>
      <name>assaf</name>
    </author>
    <id>tag:www.rubyinpractice.com,2007-01-14:9</id>
    <published>2007-01-14T03:27:00Z</published>
    <updated>2007-01-14T03:32:21Z</updated>
    <category term="map.resources :ruby"/>
    <link href="http://www.rubyinpractice.com/2007/1/14/map-resources-ruby-7" rel="alternate" type="text/html"/>
    <title>map.resources :ruby [7]</title>
<content type="html">
            &lt;p&gt;&lt;strong&gt;Informix in Rails.&lt;/strong&gt; If you're using Informix, check out what &lt;a href=&quot;http://santanatechnotes.blogspot.com/2006/03/informix-adapter-for-ruby-on-rails.html&quot;&gt;Gerardo Santana&lt;/a&gt; is doing to use &lt;a href=&quot;http://www.agilewebdevelopment.com/plugins/rails_informix&quot;&gt;Informix in Rails&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;ODBC.&lt;/strong&gt; OpenLink releases version 1.3 of the &lt;a href=&quot;http://odbc-rails.rubyforge.org/&quot;&gt;ODBC adapter for ActiveRecord&lt;/a&gt;. Currently supports MySQL, Sybase, Ingres, Informix, Oracle, DB2, Progress and PostgreSQL. That's a pretty exhaustive list.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Next Enterprise Ruby Studio.&lt;/strong&gt; The next &lt;a href=&quot;http://www.pragmaticstudio.com/ruby/index.html&quot;&gt;Enterprise Ruby Studio&lt;/a&gt; will take place in Reston, VA on March 28: “Attendees will experience, hands on, building an app using the most important technologies: data access through ActiveRecord and rBatis, messaging through Stomp, Drb and Rinda, data transfer using XML and JSON, networking using Mongrel, and building RESTful web service endpoints.”&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Get started with Cerberus.&lt;/strong&gt; Yurii Rashkovskii gives a quick introduction to &lt;a href=&quot;http://rashkovskii.com/articles/2007/01/10/continuos-integration-cerberus&quot;&gt;continuous integration with Cerberus&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Refactoring Ruby.&lt;/strong&gt; Jay Fields takes on &lt;a href=&quot;http://www.refactoring.com/&quot;&gt;refactoring&lt;/a&gt;, this time
around, &lt;a href=&quot;http://jayfields.blogspot.com/2007/01/ruby-refactoring-first-example.html&quot;&gt;in Ruby&lt;/a&gt;.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://www.rubyinpractice.com/">
    <author>
      <name>assaf</name>
    </author>
    <id>tag:www.rubyinpractice.com,2007-01-09:8</id>
    <published>2007-01-09T00:18:00Z</published>
    <updated>2007-01-09T00:27:27Z</updated>
    <category term="map.resources :ruby"/>
    <link href="http://www.rubyinpractice.com/2007/1/9/map-resources-ruby-6" rel="alternate" type="text/html"/>
    <title>map.resources :ruby [6]</title>
<content type="html">
            &lt;p&gt;&lt;strong&gt;Capistrano 101&lt;/strong&gt; Geoffrey Grosenbach puts up another screencast, this time &lt;a href=&quot;http://nubyonrails.com/articles/2007/01/06/peepcode-capistrano-concepts-and-a-free-rails-ubuntu-screencast&quot;&gt;teaching you Capistrano concepts&lt;/a&gt;. If you're new to Capistrano, here's one way to learn more.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Capistrano 1.3.1&lt;/strong&gt; Catch up on the &lt;a href=&quot;http://weblog.rubyonrails.com/2007/1/6/capistrano-1-3-1&quot;&gt;new features in Capistrano 1.3.1&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Down for maintenance, back soon.&lt;/strong&gt; Mike Clark uses &lt;a href=&quot;http://clarkware.com/cgi/blosxom/2007/01/05#CustomMaintenancePages&quot;&gt;views to create custom maintenance pages&lt;/a&gt;. Cool trick. (Hat tip to &lt;a href=&quot;http://weblog.jamisbuck.org/2007/1/5/custom-maintenance-pages&quot;&gt;Jamis Buck&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Four choices.&lt;/strong&gt; Andre Lewis lists &lt;a href=&quot;http://earthcode.com/blog/2007/01/four_choices_to_jumpstart_your.html&quot;&gt;four choices to jumpstart your Rails app&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Easy feeds.&lt;/strong&gt; &lt;a href=&quot;http://dev.rubyonrails.org/browser/plugins/resource_feeder?rev=5098&quot;&gt;Resource Feeder&lt;/a&gt; gives you RSS and Atom feeds with minimal effort. Ryan Daigle has &lt;a href=&quot;http://ryandaigle.com/2006/9/14/what-s-new-in-edge-rails-get-your-rss-atom-feeds-for-free&quot;&gt;the full scoop&lt;/a&gt;.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://www.rubyinpractice.com/">
    <author>
      <name>assaf</name>
    </author>
    <id>tag:www.rubyinpractice.com,2007-01-06:7</id>
    <published>2007-01-06T23:42:00Z</published>
    <updated>2007-01-06T23:43:43Z</updated>
    <category term="map.resources :ruby"/>
    <link href="http://www.rubyinpractice.com/2007/1/6/map-resources-ruby-5" rel="alternate" type="text/html"/>
    <title>map.resources :ruby [5]</title>
<content type="html">
            &lt;p&gt;&lt;strong&gt;Rails via Sysadmin.&lt;/strong&gt; &lt;a href=&quot;http://edgibbs.com/2007/01/05/rails-via-unix-sysadmin/&quot;&gt;Ed Gibbs&lt;/a&gt;: &quot;Turns out the first developer in our organization to actually bring in Rails and use it for something real is a Unix sysadmin.&quot;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Abundance of opinions.&lt;/strong&gt; Daily KOS is considering an upgrade, and debating Ruby, Python and Perl. &lt;a href=&quot;http://www.dailykos.com/story/2007/1/3/182756/0971&quot;&gt;What follows are over 700 comments on the pros and cons&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Faster browsing with assets.&lt;/strong&gt; One way to make your site load faster is to split it across multiple hosts. You don't need multiple Web servers, you're just working around the &quot;2 connections per host&quot; limit of your Web browser. &lt;a href=&quot;http://poocs.net/2007/1/6/new-rails-plugin-distributedassets&quot;&gt;Patrick Lenz has more&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Always testing.&lt;/strong&gt; &lt;a href=&quot;http://cerberus.rubyforge.org/&quot;&gt;Cerberus&lt;/a&gt; is a continuous integration tool for Ruby.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;JRuby interview.&lt;/strong&gt; &lt;a href=&quot;http://blog.nicksieger.com/articles/2007/01/06/jruby-serial-interview-1&quot;&gt;Nick Sieger interviews the JRuby team&lt;/a&gt;.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://www.rubyinpractice.com/">
    <author>
      <name>assaf</name>
    </author>
    <id>tag:www.rubyinpractice.com,2007-01-05:5</id>
    <published>2007-01-05T20:45:00Z</published>
    <updated>2007-01-05T20:47:16Z</updated>
    <category term="map.resources :ruby"/>
    <link href="http://www.rubyinpractice.com/2007/1/5/map-resources-ruby-4" rel="alternate" type="text/html"/>
    <title>map.resources :ruby [4]</title>
<content type="html">
            &lt;p&gt;&lt;strong&gt;Snippets.&lt;/strong&gt; As I'm writing this, the &lt;a href=&quot;http://www.bigbold.com/snippets/tag/ruby&quot;&gt;Code Snippets in Ruby&lt;/a&gt; catalog has 455 snippets. That's a lot of tips, tricks and code you can learn from.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The Ruby/Java Co-op.&lt;/strong&gt; Ryan Tomayko about &lt;a href=&quot;http://tomayko.com/articles/2006/12/30/ruby-java-co-op&quot;&gt;The Pending Ruby/Java Co-op&lt;/a&gt;: &quot;It just seems to be in the right place at the right time.&quot;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Hodel3000CompliantLogger&lt;/strong&gt; Geoffrey Grosenbach explains on how to &lt;a href=&quot;http://nubyonrails.com/articles/2007/01/03/a-hodel-3000-compliant-logger-for-the-rest-of-us&quot;&gt;measure performance of your Rails app&lt;/a&gt; in production, using the &lt;a href=&quot;http://rubyforge.org/projects/rails-analyzer&quot;&gt;Rails Analyzer Tools&lt;/a&gt;, Hodel3000CompliantLogger, and e-mailing reports to yourself.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;On video.&lt;/strong&gt; If you're looking for a video or a screencast, you'll probably find it &lt;a href=&quot;http://www.bestechvideos.com/tag/ruby/&quot;&gt;here (Ruby)&lt;/a&gt; or &lt;a href=&quot;http://www.bestechvideos.com/tag/ruby-on-rails/&quot;&gt;here (Rails)&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Exchanging.&lt;/strong&gt; &lt;a href=&quot;http://rubyforge.org/projects/rexchange/&quot;&gt;RExchange goes live&lt;/a&gt; with version 0.3: &quot;RExchange is an easy to use Microsoft Exchange Server WebDAV communication wrapper.&quot;&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://www.rubyinpractice.com/">
    <author>
      <name>assaf</name>
    </author>
    <id>tag:www.rubyinpractice.com,2006-12-30:4</id>
    <published>2006-12-30T04:48:00Z</published>
    <updated>2006-12-30T04:52:32Z</updated>
    <category term="map.resources :ruby"/>
    <link href="http://www.rubyinpractice.com/2006/12/30/map-resources-ruby-3" rel="alternate" type="text/html"/>
    <title>map.resources :ruby [3]</title>
<content type="html">
            &lt;p&gt;&lt;strong&gt;Upcoming in ASF 1.5.&lt;/strong&gt; &lt;a href=&quot;http://rubyforge.org/forum/forum.php?forum_id=11143&quot;&gt;ActiveSalesforce announces version 1.5&lt;/a&gt; for January '07. Major features include support for salesforce.com 8.0, test fixtures and migrations.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;E-mail attachments with Rails.&lt;/strong&gt; Ben Curtis uses FasterCSV to generate report data, and ActionMailer to send it as an attachment. I didn't know you can &lt;a href=&quot;http://www.bencurtis.com/archives/2006/12/how-to-email-reports-from-rails/&quot;&gt;send attachments&lt;/a&gt; that easily.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;SOAP4R Hell&lt;/strong&gt;
Working with SOAP4R, Brendon Wilson ran into some troubles and blogged about &lt;a href=&quot;http://www.brendonwilson.com/blog/2006/04/02/ruby-soap4r-wsdl-hell&quot;&gt;the problems and the fixes&lt;/a&gt;. If you're using SOAP4R, check this post and the follow up comments.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Quality control.&lt;/strong&gt; &lt;a href=&quot;http://kwala.rubyforge.org/&quot;&gt;Kwala&lt;/a&gt; will check the quality of your Ruby code, including &quot;checks for code duplication, cyclomatic complexity, lines of code, unit tests, various formatting checks, and require cycles.&quot;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Flashy charts.&lt;/strong&gt; &lt;a href=&quot;http://liquidrail.com/2006/12/29/charting-the-rails&quot;&gt;ZiYa&lt;/a&gt; is a Rails plugins that uses Flash to create beautiful charts. No need to learn Flash in order to use it. (Via &lt;a href=&quot;http://www.rubyinside.com/ziya-easy-flash-based-charts-for-rails-apps-344.html&quot;&gt;Ruby Inside&lt;/a&gt;).&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://www.rubyinpractice.com/">
    <author>
      <name>assaf</name>
    </author>
    <id>tag:www.rubyinpractice.com,2006-12-28:3</id>
    <published>2006-12-28T01:31:00Z</published>
    <updated>2006-12-28T01:35:44Z</updated>
    <category term="map.resources :ruby"/>
    <link href="http://www.rubyinpractice.com/2006/12/28/map-resources-ruby-2" rel="alternate" type="text/html"/>
    <title>map.resources :ruby [2]</title>
<content type="html">
            &lt;p&gt;&lt;strong&gt;Humble Ruby.&lt;/strong&gt; &lt;a href=&quot;http://www.mrneighborly.com&quot;&gt;Jeremy&lt;/a&gt; just released his &lt;a href=&quot;http://www.humblelittlerubybook.com/&quot;&gt;Mr. Neighborly's Humble Little Ruby Book&lt;/a&gt;. The PDF is free, $10 gets you the Bedside Reading Edition and bragging rights.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Simpler migrations.&lt;/strong&gt; I rely on Rails Migration to define and maintain my database schema. They're simple, concise and easy to extend with Ruby code, on the off chance I need to transform some data while doing a migration. Could it get any easier? Maiha found a way to &lt;a href=&quot;http://habtm.com/articles/2006/12/26/dsl-style-migration&quot;&gt;make Rails migrations even easier&lt;/a&gt; to write and maintain.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Console like a Ninja.&lt;/strong&gt; Amy Hoy reveals &lt;a href=&quot;http://slash7.com/articles/2006/12/21/secrets-of-the-rails-console-ninjas&quot;&gt;the secrets of the Rails Console Ninjas&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The Big Rewrite&lt;/strong&gt; &quot;You’ve got an existing, successful software product. You’ve hit the ceiling on extensibility and maintainability. Your project platform is inflexible, and your application is a software house of cards that can’t support another new feature.&quot; Unfortunately, switching to Ruby for your Next Big Rewrite is no guarantee for success. Chad Fowler promises to &lt;a href=&quot;http://www.chadfowler.com/index.cgi/Computing/Programming/TheBigRewrite/TheBigRewrite.rdoc,v&quot;&gt;tell us what can go wrong&lt;/a&gt;, through a series of blog posts.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;SQL Views for Rails&lt;/strong&gt; More goodness from the &lt;a href=&quot;http://activewarehouse.rubyforge.org/&quot;&gt;ActiveWarehouse project&lt;/a&gt;, comes &lt;a href=&quot;http://rubyforge.org/forum/forum.php?forum_id=11142&quot;&gt;support for SQL Views in Rails&lt;/a&gt;.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://www.rubyinpractice.com/">
    <author>
      <name>assaf</name>
    </author>
    <id>tag:www.rubyinpractice.com,2006-12-27:1</id>
    <published>2006-12-27T00:36:00Z</published>
    <updated>2006-12-27T00:37:02Z</updated>
    <category term="map.resources :ruby"/>
    <link href="http://www.rubyinpractice.com/2006/12/27/map-resources-ruby" rel="alternate" type="text/html"/>
    <title>map.resources :ruby [1]</title>
<content type="html">
            &lt;p&gt;&lt;strong&gt;Acts As Enterprisey&lt;/strong&gt; Andrew Stewart grants Rails a x-mas present and gives us &lt;a href=&quot;http://www.agilewebdevelopment.com/plugins/acts_as_enterprisey &quot;&gt;acts_as_enterprisey&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Ruport goes 0.7.&lt;/strong&gt; &quot;Ruport now has a brand new formatting system, some massive cleanup in the internals, and merry chunky bacon for all!&quot; &lt;a href=&quot;http://ruport.infogami.com/&quot;&gt;Check it out&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Start here.&lt;/strong&gt; &lt;a href=&quot;http://www.chadfowler.com/index.cgi/Computing/Programming/Smalltalk/ItsStartingToHappen.rdoc,v&quot;&gt;Chad Fowler comments&lt;/a&gt; that &quot;Rails is a gateway drug to both Ruby and the rest of the world of dynamic and previously-fringe programming languages.&quot; What about you?&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Wondering around.&lt;/strong&gt; &lt;a href=&quot;http://hobotek.net/blog/&quot;&gt;Check out Hobo&lt;/a&gt;, &quot;an Open-Source project, designed to make development with Rails even faster than it already is.&quot; (Via &lt;a href=&quot;http://www.puneruby.com/blog/?p=107&quot;&gt;Satish Talim&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Railsbench.&lt;/strong&gt; Railsbench is a collection of scripts for measuring performance of Rails apps. The latest version is now &lt;a href=&quot;http://railsexpress.de/blog/articles/2006/12/26/railsbench-gem-version-available&quot;&gt;available as a Gem&lt;/a&gt;, and uses Gruff to create &lt;a href=&quot;http://railsexpress.de/blog/articles/category/railsbench&quot;&gt;performance graphs&lt;/a&gt;.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://www.rubyinpractice.com/">
    <author>
      <name>jeremy</name>
    </author>
    <id>tag:www.rubyinpractice.com,2006-12-27:2</id>
    <published>2006-12-27T00:16:00Z</published>
    <updated>2006-12-27T00:49:12Z</updated>
    <link href="http://www.rubyinpractice.com/2006/12/27/welcome-to-the-blog" rel="alternate" type="text/html"/>
    <title>Welcome to the blog</title>
<content type="html">
            &lt;p&gt;We like solving problems with software, there are so many ways you can make people&#8217;s life better by leaving the hardwork for computers.&lt;/p&gt;


	&lt;p&gt;Ever since we started working with Ruby, we&#8217;ve found ways to be more productive and get more stuff done, came up with creative solutions, and had fun doing so.&lt;/p&gt;


	&lt;p&gt;You&#8217;ve heard of Ruby, and you want to use it for your next project, but where do you start? This book is for you. We&#8217;re not going to teach you Ruby&#8212;we&#8217;re going to show you how to use Ruby in practice, how to solve common problems with minimal effort.&lt;/p&gt;


	&lt;p&gt;We&#8217;ll talk about building Web apps and Web services, moving data between applications and on the network, managing systems and producing reports. We&#8217;ll talk about simple scripts for automation, and about deploying large systems. We&#8217;ll show you that Ruby has a lot to offer, beyond Web apps, and share recipes for success.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;Who&#8217;s we?&lt;/strong&gt;
I (Jeremy) am a developer, author, and college student. You can find out more about me over at &lt;a href=&quot;http://www.mrneighborly.com&quot;&gt;my blog&lt;/a&gt; . Assaf Arkin develops commerical and open source software, mostly Ruby and Java. You can learn more about him over at his blog &lt;a href=&quot;http://www.labnotes.org&quot;&gt;Labnotes&lt;/a&gt;.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;The book?&lt;/strong&gt;
We&#8217;re writing &lt;a href=&quot;http://www.manning.com/mcanally/&quot;&gt;Ruby in Practice&lt;/a&gt; for &lt;a href=&quot;http://www.manning.com/&quot;&gt;Manning Publications&lt;/a&gt;.&lt;/p&gt;


	&lt;p&gt;We&#8217;re going to blog here about the writing process, share our materials with you, include stuff that doesn&#8217;t quite fit in the book, and always listen to your feedback. Tell us what you&#8217;d want to read about.&lt;/p&gt;


	&lt;p&gt;We hope you&#8217;ll find the resources here useful. In the immediate future, you can look for Assaf to give you a regular stream of Ruby-related links, under the title &lt;a href=&quot;http://rubyinpractice.com/rubyresources&quot;&gt;map.resources :ruby&lt;/a&gt;. I&#8217;ll post articles and &lt;span class=&quot;caps&quot;&gt;PDF&lt;/span&gt; essays to help you get more out of Ruby. Stay tuned.&lt;/p&gt;
          </content>  </entry>
</feed>
