0
votes
Rails: Select box => Remote action onChange
In your action which returns the rjs, put some debugging code in along the lines of:
page << "console.log( 'blahblah' );"
And see if this code gets executed …
0
votes
Ruby On Rails/Merb as a frontend for a billions of record app
I'm not sure what CouchDB not being at 1.0 has to do with it. I'd recommend doing some testing with it (just generate a billion random documents) and see if it'll hold up. I'd say it will, despite …
0
votes
All I need is ActiveRecord and ActiveMailer, should I use Rails/Merb?
I use Sinatra often for stuff much bigger than what you describe. What features of Rails do you find you are needing to add? If it's just stuff like 5.hours.ago and stuff, you could al …
1
vote
Rails: Is it bad to have an irreversible migration?
Feeling like you need an irreversible migration is probably a sign you've got bigger problems looming. Maybe some specifics would help?
As for your second question: I always take the 'effor …
-2
votes
How can I avoid running ActiveRecord callbacks?
The only way to prevent all after_save callbacks is to have the first one return false.
Perhaps you could try something like (untested):
class MyModel < ActiveRecord::Bas …
1
vote
Rails (or maybe SQL): Finding and deleting duplicate AR objects.
If it's a one time thing then I'd just do it in Ruby and not worry too much about efficiency. I haven't tested this thoroughly, check the sorting and such to make sure it'll do exactly what you wan …
1
vote
Is it possible to avoid following the MVC pattern while using Rails?
Not only should you use MVC with Rails, but MVC is a good idea in general.
If you're just writing some one-off-ish app then you might look at …
0
votes
1
vote
Using variables in an array passed to a def - Rails
What's the error you get? You should be able to call it like:
<%=
pie_chart(
[
["Light Cost", light_cost],
["Small Appliance Cost", sm_appl_cost]
],
{ : …
3
votes
What’s the best (and cheapest) Rails hosting provider for a prototype application?
I run a couple rails apps on a 256mb VPS on slicehost, nothing but good things to say. You can expand the memory after the fact anytime you need to without much hassle, too.
…
0
votes
using jquery how to change a model when the user clicks a radio button
You're looking for observe_field. The rest is as simple as any other rails action (an …
0
votes
rails passenger doesn’t boot correctly
Point DocumentRoot at your apps public directory. I'm not sure what /var/sites/site/current/ is, but that's probably not what you want.
Also you can t …
4
votes
Styling Forms Ruby on Rails 2 - Easy Question
The most appropriate way would likely be just giving them different classes and styling them via usual css methods.
Eg.
<%= text_field( :title, :class => "something" ) …
1
vote
User-generated database entries in rails
This is a very broad question. Have you tried some of the Rails tutorials? The main Ruby on Rails website has recently put up a bunch of new …
1
vote
Rails: Specifing params without value to link_to
The last example you have:
link_to articles_path(:most_popular => true) # /articles?most_popular=true
Is the correct way. Otherwise you could just construct the …
