0
votes
Ruby networking problem on windows
besides the obvious (firewall, you got blacklisted for bad user-agent or ignoring robots.txt), you can try curl
http://curl.haxx.s …
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):
…
3
votes
Ruby: builtin do … while ?
You can do
i=1
begin
...
i+=1
end until 10==x
(you can also tack on a while clause to the end of begin..end)
see p 128 of Flanagan/Matz Ruby Prog'g La …
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: …
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
Ruby to Python bridge
This isn't what your after, but worth a read: embed Python interpreter in Ruby: this code's pretty old
…
1
vote
What exactly is the singleton class in ruby?
The most pragmatic/action-oreinted way to think of it (IMHO) is: as an inheritance chain, or method lookup/resolution order. This picture might help
…
1
vote
Dictionary API or Library
there's also wrappers for dictionary.com's API (a few years old)
http://rubyforge.org/snippet/detail. …
1
vote
How do I replace accented Latin characters in Ruby?
iconv:
http://groups.google.com/group/ruby-talk-google/browse_frm/thread/8064dcac …
1
vote
What are the biggest differences between Python and Ruby from a philosophical perspective
here's a link dump:
http://c2.com/cgi/wiki?PythonVsRubyCodeExamples
…
