Welcome To Snipplr
Everyone's Recent Rails Snippets
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
Можно выкладывать даже файлы, Ñодержащие кириллицу в названии. Они будет подвергнуты транÑлитерации, пробелы и другие небезопаÑные ÑимÐ...
0
841
posted 15 years ago by almazom
creates something like list_49 with the 49 corresponding to id of record in database.
0
775
posted 15 years ago by deschism
Put the following in your controller to define the content-type for *that* specific controller.
0
598
posted 15 years ago by chrisamini
count(*args)
Count operates using three different approaches.
Count all: By not passing any parameters to count, it will return a count of all the rows for the model.
Count using column: By passing a column name to count, it will return a count of...
1
805
posted 15 years ago by deschism
The 'request' and 'response' objects are chock full of useful info. But console can't usually access them. Here's how:
start the server with the -u option, insert a breakpoint where you would like to have access to the controllers/helpers/etc. Wh...
1
934
posted 15 years ago by cczona
Can be used to generate a random code for an online voucher. You just need to set VOUCHER_CODE_LENGTH in your environment.rb or similar.
1
824
posted 15 years ago by jordanbrock
Instead of simply adding a list of things at the end of the array, you can also pass in a hash and change the question marks to actual named replacements. This can help you keep the order of your arguments straight.
1
674
posted 15 years ago by sohooo
Populate your states table with US States. Easy rake task for it.
2
809
posted 15 years ago by twofivethreetwo
I normally paste this into config/mongrel.rb, then add "require 'mongrel'" in my config/deploy.rb
Once that's done, you'll be able to start, stop, and restart your mongrels like so:
`cap deploy:mongrel:start/stop/restart`
3
737
posted 16 years ago by jimmyebaker
"The new naming scheme for template (eg. .html.erb) does not seem to work for partials. When using :partial => 'form' a filename "_form.html.erb" is not recognized. "
Rails now requires the partial to be referenced by dotted format
1
777
posted 16 years ago by cczona