Search Results

4
votes
4answers
593 views

Good CSS for flashes (aka info messages in Rails, growls in OSX)

I'm having difficulty getting CSS to work like I want it to for flashes (those little messages that show when you log in or do something or whatnot to confirm your action, eg in Rails). I w …
1
vote
0answers
148 views

How can I make this query to detect multiple accounts more efficient & play well w/ has_many?

In my User model, I want to search for whether a user has multiple accounts (aka 'multis'). Users have sessions; sessions are customized to set creator_id = ID o …
0
votes
1answer
90 views

Change a finder method w/ parameters to an association

How do I turn this into a has_one association? (Possibly has_one + a named scope for size.) class User < ActiveRecord::Base has_many :assets, :foreign_key => 'creat …
2
votes
1answer
60 views

Where to patch Rails ActiveRecord::find() to first check collections in memory?

For somewhat complicated reasons, I would like to create something that works like this: # Controller: @comments = @page.comments # comments are threaded # child comments still belo …
0
votes
1answer
141 views

Multiple column foreign keys / associations in ActiveRecord/Rails

I have badges (sorta like StackOverflow). Some of them can be attached to badgeable things (e.g. a badge for >X comments on a post is attached to the post). Almost all come in multiple lev …
1
vote

Rails: How can I log on which site my javascript is embedded?

Make a database table that logs your hits. Whenever someone hits show, log it. You can rip my code for something similar from …
0
votes

What is the best plugin to handle multiple file uploads in Rails?

I am using restful_authentication + attachment_fu + SWFUpload, which handles multiple attachments VERY well IMO. Here's your quick start guide: …
0
votes

Can one rely on the auto-incrementing primary key in your database?

One caveat to EJB's answer: SQL does not give any guarantee of ordering if you don't specify an order by column. E.g. if you delete some early rows, then insert 'em, the new ones may end up …
0
votes

Passenger crash when trying to use https

You're probably getting the Passenger error because DreamHost killed your app for using too much memory. Given that you're using spawn, that's probably the reason - spawn creates a whole ne …
5
votes

Rails dashboard design: one controller action per div

Version 1: Simple method that I've actually used in production: iframes. Most of the time you don't actually care if the page renders all at once and direct from the server, and i …
0
votes

Where is this Rails file stored? db/development.sqlite3

FWIW the file might not exist if you haven't done rake db:create yet. …
1
vote

Rails Voting Site

You should also take a look at 'counters' in the API, such that each vote has a value and the tallies are kept on the voted-on object (so it doesn't have to run a count every single time). …
0
votes

Getting the Hostname or IP in Ruby on Rails

Put the highlighted part in backticks (sadly SO doesn't seem to handle the fact that backticks are legal Ruby :(): dig #{request.host} +short.strip # dig gives a newline at the …