5
votes
Best way to add full web search to my site?
People are going to acts_as_solr and thinking sphinx in the blogs i read:
http://acts-as-solr.rubyforge.org/
…
7
votes
What does it mean for a programming language to be “on rails”?
I think a framework that strives to be "rails-like" refers to several things:
model-level: an AR-patterned ORM (rather than datamapper), migrations or some automated schema and mo …
0
votes
What are the limits of ruby on rails?
Orion's answer is right on. There are few hard limits to AR/Rails: deploying to Windows, AR connectors that aren't frequently used, e.g. Firebird, ), but even the things he mentioned, multiple dat …
1
vote
RoR: What steps are you going through in the preparation phase of application development?
So you're looking at wireframes, UMLs, thinking what next? Piston and rake are good for bulk-installing your favorite plugins (not sure how well piston works with git right now):
…
0
votes
How do I create the migrations for a legacy database?
you might look at these:
http://blog.ericgoodwin.com/2008/3/31/gitty-migrations-gets-even-s …
0
votes
Can I run LAMP and Rails from the same Apache instance?
case study-kinda thing:
http://work.rowanhick.com/2007/06/08/franken-php-rails-apache-stein/ …
2
votes
Where can I find good examples of Rails applications?
This doesn't answer your question, but you must have some kind of app in mind, and you can find examples for a lot of different functionality here:
…
0
votes
How do you do relative time in Rails?
i think of this as fuzzy timestamps, or "web 2.0" intervals. Probably all the major ajax libs/frameworks/plugins can do this, also:
dojo: …
1
vote
local rails on Mac OSX loses connection to mysql
I remember having this problem a while back (before i upgraded to Leopard?). They're tricky to diagnose, but have a look at logfiles, and try setting "wait_timeout" longer (you shouldn't have to m …
1
vote
Integrating “really simple history” with Rails
this blog (which doesn't show up at all when i google or search yahoo for "Rails really simple …
0
votes
How does ruby on rails work?
ruby metaprogramming magic in rails: look at books by Rappin "Professional Rails" and Ediger "Advanced Rails", in addition to Black "Ruby for Rails" mentioned above
Naming conventions are i …
2
votes
What is your version control and deployment workflow with Rails?
this guy documents every workflow he's ever experienced
http://subtlegradient …
1
vote
“Cannot add array to BooleanQuery” error with ferret on rails
I can't recall ever seeing that ferret error. There's two basic diagnostics: go into script/console, and do
Notes.find_with_ferret("some term that should be in index")
And th …
1
vote
When should I be using “NOT NULL” in a MySQL table and are there any benefits?
This doesn't seemt o affect mySQL, but you should be aware of 2 recently fixed migration issues (one when you don't specify default)
…
0
votes
