0
votes
How do I code a rake task that runs the Rails db:migrate task?
EDIT: Rake::Task[] won't accept parameters, you have to set it in ENV. In addition, you have to reenable the task to run it multiple times.
ENV['VERSION']= '0'
Rake::Task['db:mig …
-4
votes
Running Rails and PHP on Dreamhost
You can do it and I have done it. Not to sound like an advertisement, but their control panel makes it simple to do what you want.
…
2
votes
Namespaced models in Rails: What’s the state of the union?
The best writeup I've seen on the issue is from Strictly Untyped. To my knowledge 2.3 hasn' …
0
votes
How to remove a URL’s trailing slash in a Rails app? (in a SEO view)
You can't get a redirect using routes.rb. I suppose you could build a controller that just issues redirects and point all URLs ending in '/' to it, but that seems needlessly complicated. Instead, …
0
votes
rails : what’s wrong with this multiple join with conditions on the associations?
Your :conditions contains 2 hashes. This is incorrect. You should have two keys (:decks and :cards) which should each have a hash as a value. Correct yours …
1
vote
4
votes
How to relate multiple models to one model that will rule them all, in Rails?
The simplest way to do this is to use a polymorphic association.
…
5
votes
Should I learn PHP or Ruby (on Rails)?
Learn 'em both. I'm a big proponent of the idea that knowing more languages expands one's thought processes. If all the jobs are in PHP, then it's probably prudent to tackle that one first.
…
0
votes
How do others set up foreign key relationships in migrations
There isn't a way to do it from the migration short of using SQL, which means that:
It's DB-specific
You have to use SQL
The first isn't really that big a deal …
0
votes
RoR beginner - what are the topics to concentrate on?
The best way to learn is by doing. Create your own rails app. You could go with one of the common ones: recipe site, blog, etc, or else design something you'd really want to use.
A …
1
vote
Generate a file list based on an array
Expanding on sris's answer, if you really want everything sorted and the files listed before the directories, you can use something like this:
def files_first_traverse(prefix, node …
3
votes
Rails - Creating a select tag from a object hash
The select helper method will accept a hash in the form { text_displayed_in_s …
10
votes
8
votes
Help interpreting this bit of Rails code
Most likely this is inside a double-quoted string, such as "Ponies all love #{h params[:chat_input]}!" The #{stuff} expression causes the stuff expression to be interpret …
4
votes
How to cap and round number in ruby
Use Numeric#ceil:
irb(main):001:0> 1.5.ceil
=> 2
irb(main):002:0> 2.0.ceil
=> 2
…
