[Hobo Users] Re: Ajax progress

2014-07-07 Thread umuro
Could you also write a piece of dryml as an example to demonstrate spinner-next-to ? To prevent confusion. On Saturday, July 5, 2014 7:39:23 PM UTC+2, umuro wrote: How to set the position of the ajax-progress on a hobo bootstrap page? -- You received this message because you are subscribed

Re: [Hobo Users] Re: Ajax progress

2014-07-07 Thread Ignacio Huerta
Yes, sure. This should work: h3 id=supertitleAjax test/h3 a class=btn href=# updates=#superpartial spinner-next-to=supertitle Ajax Button/a div part=superpartial%= rand.to_s %/div Warm regards, Ignacio El 07/07/14 09:46, umuro escribió: Could you also write a piece of dryml as an example

[Hobo Users] Re: Rendering a DRML file in a model

2014-07-07 Thread umuro
Greate. It works on development as you tell me. However, it did not work when I deployed to heroku. It was not finding DRYML related classes. And I started exceptions one by one: require 'dryml/template_environment' require 'dryml/dryml_builder' require 'dryml/parser'

[Hobo Users] Re: Rendering a DRML file in a model

2014-07-07 Thread umuro
The final working version has this require 'dryml/template_environment' require 'dryml/dryml_builder' require 'dryml/parser' require 'dryml/parser/document' require 'dryml/parser/source' require 'dryml/parser/elements' require 'dryml/parser/tree_parser' require

Re: [Hobo Users] Re: Rendering a DRML file in a model

2014-07-07 Thread Ignacio Huerta
Thanks for sharing the solution, that can be certainly useful :). Warm regards, Ignacio El 07/07/14 12:26, umuro escribió: The final working version has this | require'dryml/template_environment' require'dryml/dryml_builder' require'dryml/parser'

[Hobo Users] Hobo errors on Windows 7 x64.

2014-07-07 Thread Nathan Peters
I'm started in on the Agility tutorial and immediately got this error when trying to run hobo new agility: *The template [C:/Users/Computer/AppData/Local/Temp/hobo_app_template] could not be loaded. Error: Unable to activate rails-4.0.8, because activesupport-4.1.4 conflicts with activesupport

Re: [Hobo Users] Re: Rendering a DRML file in a model

2014-07-07 Thread umuro
Unfortunately I got this: *ERROR: undefined method `nested_cache' for #ActionView::Base:0x00073aa3e8* The require work-around is making dryml available but not the taglibs themselves. Is there a way to force loading taglibs also? Everything is fine at development. This problem is when I

[Hobo Users] Heroku Puma Hobo

2014-07-07 Thread umuro
I am running Hobo using Puma on Heroku. Puma is multi-threaded and it really multiplies the serving power of the application. To run Hobo multithreaded, I had to use eager loading for Hobo. Classes loading on requirement does not work un multi threaded environment. But it was easy. I simply