Tagged Questions
Hobo is a plugin for Ruby on Rails that brings a number of extensions—some small some large—to Rails application development. The common theme to these extensions is rapid development. (from the hobo 'about' page at hobocentral.net/about)
4
votes
4answers
331 views
Does anybody have any experience with Hobo?
I'm thinking of adopting HOBO for quicker development of some Rails apps I want to develop on the side for myself.
Obviously there seems to be a certain learning curve to get the different concepts ...
1
vote
2answers
528 views
Rails and Hobo with Single Table Inheritance problem
I'm getting an error when running db:setup for my Hobo project with a clean database. I have two models, A and B, where B extends A through single-table-inheritance. Creating everything works. But if ...
1
vote
2answers
122 views
How do I define a database index in HoboFields?
With HoboFields, I can declare fields for my model in its own file, like this:
class User < ActiveRecord::Base
fields do
login :string
persistence_token :string
end
end
I'd like to ...
0
votes
1answer
79 views
Calculating Ratio in a Ruby Model
Hi, I am doing a data entry system for a local NGO here which conducts surveys about bird in forests. I have four models namely, Bird, Location, Report and Ratio. While Bird & Location are just ...
0
votes
2answers
101 views
Is it possible to render a view in XML or JSON using ruby
Rendering a JSON or XML view in rails 3 is straight forward enough. As Hobo does not use views, I cannot work out how to do the same in a hobo project and the docs are not very illuminating. Has ...
0
votes
1answer
125 views
Installing HoboFields Pre-Release for Rails 3
I'm trying to install the latest pre-release version of HoboFields, which supports Rails 3 (RubyGems doesn't have the latest code). I've followed the steps on the relevant Hobo blog post, but when I ...
0
votes
1answer
393 views
Syntax highlighting for .dryml in Notepad++
I've been learning Hobo, an awesome wrapper for Ruby on Rails that I'm finding extremely DRY and n00b-friendly.
But how do I set Notepad++ to automatically recognize .dryml files such that ...
0
votes
1answer
388 views
RAils Authlogic and Hobo
Is there anyone out there who has an idea of how to incorporate Hobo as an admin subsite on a existing rails app running on authlogic.
I've been following this tutorial, but it not working.
Any help ...
0
votes
1answer
183 views
Radio buttons in Hobo Rails
How can I use radio buttons in a form in Hobo Rails? I want a gender field with two options "Male" and "Female". If I use the default enum_string type it creates drop down select instead of radio ...
0
votes
2answers
264 views
Custom validation help needed
validate :check_product_stock
def check_product_stock
@thisproduct = product.id
@productbeingchecked = Product.find_by_id(@thisproduct)
@stocknumber = @productbeingchecked.stock_number
...
0
votes
3answers
339 views
How do i create a form that inputs multiple items of a model?
I have a simple point of sale application written in ruby and rails, and hobo.
Originally intended to be for only one product at the time, now the client wants to add multiple products into the sale ...