2
votes
Is there a ‘standard’ read/write lock implementation for ruby?
There isn't a standard one to my knowledge, but they aren't terribly hard to write. Failing that, this guy has already written one. It lo …
3
votes
Why are exclamation marks used in Ruby methods?
! typically means that the method acts upon the object instead of returning a result. From the book Pr …
10
votes
What’s the difference between Ruby’s puts and write methods?
puts appends a newline, write does not. Technically, puts appends the record separator (which is usually a newline) to the output if it doesn't have one at the end. write outputs only what it is …
3
votes
Map an array modifying only elements matching a certain condition
Your map solution is the best one. I'm not sure why you think map_modifying_only_elements_where is somehow better. Using map is cleaner, more concise, and doesn't requir …
12
votes
Best way to iterate over a sequence and change one object at a time (Ruby)
Use Array#each:
self.answers.each {|a| a.some_attr = some_val if a.some_ …
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' …
4
votes
Ruby coding style guidelines
There's nothing official, but the two common guidelines are:
RubyCodingConvent …
0
votes
How do I install a RubyGem from NetBeans that I created?
From here:
gem install will install the named
gem. It will attempt a local
installation …
1
vote
Ruby file force copy
No, but it does have :remove_destination as an option, which does much the same thing.
…
2
votes
Embedding a Ruby interpreter in a C++ app
You're on the right track. The key is to do something similar to the section on Embedding Concepts i …
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 …
3
votes
Rake string replace in file
Rake doesn't provide anything special in regards to string replacement, but it's a Ruby script; you can use anything you could in any other script. Whether doing it in Ruby is better than using ot …
3
votes
1
vote
Removing a slot on a child button click
Shoes' blocks are sometimes tricky. The key here is to ask yourself, what is the parent method being called upon? self …
