Does anyone know if Markaby is still being used? If not, has it been replaced by something else? If it is still in use, where should questions/ help requests/ etc be posted. -- Best Regards, -Larry "Work, work, work...there is no satisfactory alternative." --- E.Taft Benson --~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
it''s being used--especially by the Camping folks. If you google "markaby" you should find a lot out there. Also, visit _why''s redhanded web site. Jamie On Oct 11, 2006, at 6:03 AM, Larry Kelly wrote:> > Does anyone know if Markaby is still being used? If not, has it been > replaced by something else? If it is still in use, where should > questions/ help requests/ etc be posted. > > -- > Best Regards, > -Larry > "Work, work, work...there is no satisfactory alternative." > --- E.Taft Benson > > >--~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
Yeah, I use Markaby. I like it, except it doesn''t support Rails'' caching yet. HAML''s a new competitor, but I haven''t found it compelling enough to switch. There''s a new Markaby wiki here: http://code.whytheluckystiff.net/markaby/wiki/WikiStart Joe -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
Joe, I haven''t been able to get version 0.5 to install as a plugin. I looked at the ticket you open (#32). It looks like edge rails was patched. But, I''m hesitant to use edge for development when, I cannot use it for production. What version are you using? Can you offer any installation suggestions? On 10/11/06, Joe Ruby MUDCRAP-CE <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> > Yeah, I use Markaby. I like it, except it doesn''t support Rails'' caching > yet. HAML''s a new competitor, but I haven''t found it compelling enough > to switch. There''s a new Markaby wiki here: > > http://code.whytheluckystiff.net/markaby/wiki/WikiStart > > Joe > > -- > Posted via http://www.ruby-forum.com/. > > > >-- Best Regards, -Larry "Work, work, work...there is no satisfactory alternative." --- E.Taft Benson --~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
Yeah, I guess we''ll have to wait for Rails 1.2 to use Markaby as a plugin. Seems like there should be a workaround... Here''s what I have in my environment.rb: require ''markaby'' require ''markaby/rails'' ActionView::Base::register_template_handler ''mab'', Markaby::ActionViewTemplateHandler ActionController::Base.send :include, Markaby::ActionControllerHelpers Markaby::Builder.set(:indent, 2) if RAILS_ENV=''development'' It seems to work okay so far... Joe -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
Thanks for the reply, Joe. I hope 1.2 is releases sooooon :) I finally figured out that the file I was downloading from RubyForge wasn''t configured to work as a plugin. It was missing the init.rb file. So, I checked out the latest copy from: svn http://code.whytheluckystiff.net/svn/markaby/trunk. Then copied the files to my <rails_app>/vendor/plugin/markaby folder. After restarting the browser, *.mab files were processed correctly. I didn''t need to alter the environment.rb file. -Larry On 10/11/06, Joe Ruby MUDCRAP-CE <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> > Yeah, I guess we''ll have to wait for Rails 1.2 to use Markaby as a > plugin. Seems like there should be a workaround... > > Here''s what I have in my environment.rb: > > require ''markaby'' > require ''markaby/rails'' > > ActionView::Base::register_template_handler ''mab'', > Markaby::ActionViewTemplateHandler > ActionController::Base.send :include, Markaby::ActionControllerHelpers > > Markaby::Builder.set(:indent, 2) if RAILS_ENV=''development'' > > It seems to work okay so far... > > Joe > > -- > Posted via http://www.ruby-forum.com/. > > > >-- Best Regards, -Larry "Work, work, work...there is no satisfactory alternative." --- E.Taft Benson --~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---