4
votes
Ruby string mutability
Not really sure what exactly your question is, but consider the following code:
10.times { puts "abc".object_id }
This prints out 10 different id's. Why? Just beca …
-2
votes
How can I avoid running ActiveRecord callbacks?
The only way to prevent all after_save callbacks is to have the first one return false.
Perhaps you could try something like (untested):
class MyModel < ActiveRecord::Bas …
2
votes
What is the order of operations with this concatenation?
The first example is syntactic sugar, normally you see this written like:
x = "Here is a string that " \
"I want to split across " \
"several lines..."
So …
1
vote
Rails (or maybe SQL): Finding and deleting duplicate AR objects.
If it's a one time thing then I'd just do it in Ruby and not worry too much about efficiency. I haven't tested this thoroughly, check the sorting and such to make sure it'll do exactly what you wan …
3
votes
Reading the last n lines of a file in Ruby?
How about the following ruby code:
last_25_lines = `tail -n 25 whatever.txt`
Problem solved :)
…
3
votes
Can Ruby operators be aliased?
Only certain characters are allowed in symbol literals. You are looking for:
alias :"old<<" :"<<"
…
-1
votes
is this a valid ruby syntax ?
Just to add another side to this...
If step is an Array (as calling include? seems to suggest) then maybe the code should be:
…
6
votes
Ruby includes returns false and nil
The Object#< method seems to act like this, given the code A < B:
If A is 'higher' in the inheritance chain (eg, B.kind_of?( A ) == …
2
votes
Is the default Ruby install on Mac OSX 10.5 “good enough” for Rails development?
1.8.6 will be fine for a local dev box. Personally I always install what's on the production box -- usually …
4
votes
Styling Forms Ruby on Rails 2 - Easy Question
The most appropriate way would likely be just giving them different classes and styling them via usual css methods.
Eg.
<%= text_field( :title, :class => "something" ) …
3
votes
1
vote
User-generated database entries in rails
This is a very broad question. Have you tried some of the Rails tutorials? The main Ruby on Rails website has recently put up a bunch of new …
1
vote
Using Sinatra and MongoDB - what’s the recommended way to “keep alive” the mongodb connection between http requests?
The newest version of the ruby mongodb driver includes connection pooling. You could set up your pool in your configur …
1
vote
ruby 1.9 — Gem is there but it says its not?
It's saying the git gem/library/file isn't found:
no such file to load -- git
…
