Thanks Phillip. Danimal, if you're using Hirb just for Rails, you can
add it in config/environment.rb and only have
it load when using script/console:
if $0 == 'irb'
  require 'hirb'
  Hirb::View.enable
end

Also, if you're using Wirble make sure to put Hirb::View.enable after
loading Wirble.

Gabriel

On Mar 31, 12:47 pm, Philip Hallstrom <[email protected]> wrote:
> > This looks pretty cool! Quick question: is there a way to set this up
> > to be used automatically from script/console and/or irb?
>
> Should be able to just put the following into your ~/.irbrc
>
> require 'hirb'
> Hirb::View.enable
>
> > Thanks,
>
> > -Danimal
>
> > On Mar 27, 2:39 pm, cldwalker <[email protected]> wrote:
> >> Hi,
> >>   I'm announcingHirb, a mini view framework which enables script/
> >> console to provide custom views.
> >> Out of the box your activerecord objects come back as ascii tables.
> >> You can also configure your tree-based models to return as ascii
> >> trees:
> >>   Numeric
> >>   |-- Float
> >>   |-- Integer
> >>   |   |-- Bignum
> >>   |   `-- Fixnum
> >>   |-- Date::Infinity
> >>   `-- Rational
>
> >> I've written two tutorials on it:  
> >> http://tagaholic.me/2009/03/13/hirb-irb-on-the-good-stuff.html
> >> andhttp://tagaholic.me/2009/03/18/ruby-class-trees-rails-plugin-trees-wi
> >> ...
> >> It's also got some decent documentation:http://tagaholic.me/hirb/doc/
>
> >> To try it out: gem install cldwalker-hirb--sourcehttp://gems.github.com
>
> >> Enjoy!
> >> Gabriel
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to