How do I make the script/console run the following commands automatically at the beginning whenever it starts? ActiveRecord::Base.logger = Logger.new(STDOUT) require ''hirb'' Hirb::View.enable I try putting these in .irbrc but it does not work. Thanks. -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On 16 feb, 07:27, Vincent P <ease...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> How do I make the script/console run the following commands > automatically at the beginning whenever it starts? > > ActiveRecord::Base.logger = Logger.new(STDOUT) > require ''hirb'' > Hirb::View.enable > > I try putting these in .irbrc but it does not work. > > Thanks.Did you put require ''rubygems'' above those lines? -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Aside from require ''rubygems'', you should also wrap that rails- specific setup in an ENV[''RAILS_ENV'']. I explained how to do it here: http://tagaholic.me/2009/09/07/hirb-tips-for-rails.html Gabriel On Feb 16, 1:27 am, Vincent P <ease...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> How do I make the script/console run the following commands > automatically at the beginning whenever it starts? > > ActiveRecord::Base.logger = Logger.new(STDOUT) > require ''hirb''Hirb::View.enable > > I try putting these in .irbrc but it does not work. > > Thanks.-- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.