10
votes
2answers
430 views
Ideal ruby project structure
I'm after an overview/clarification of the ideal project structure for a ruby (non-rails/merb/etc) project. I'm guessing it follows along the lines of:
app/
bin/ …
2
votes
0
votes
Stringify array for eval
I may be misunderstanding you, but does this look better at all?
>> a = %w[a b c]
=> ["a", "b", "c"]
>> r = "['#{a.join("', '")}']"
=> "['a', 'b', 'c']"
>> r …
0
votes
What is Ruby on Rails and why is it so famous?
It's not a language though. The language is Ruby. Rails is a web framework for Ruby, and so is …
1
vote
Print Ruby object members
You might find a use for the methods method which returns an array of methods for an object. It's not the same as print_r, but still useful at times.
>& …
4
votes
What are the Ruby Gotchas a newbie should be warned about?
Blocks are really important to understand, they're used everywhere.
You don't need parentheses around method parameters. Whether you use them or not is up to you. …
1
vote
Convert an array into an index hash in Ruby
Your way of creating the hash looks good. I had a muck around in irb and this is another way
>> [1,2,3,4].inject(Hash.new) { |h,i| {i => nil}.merge(h) }
=> {1=>nil, 2 …
0
votes
Starting Ruby
(1) I don't use one, and I don't know of any (but then, I don't really know what IDLE is anyway). Textmate works well for me.
(2) You can …
-1
votes
ruby: can a block affect local variables in a method?
def test(&block)
foo = yield
puts "in test, foo is #{foo}"
end
test { "this is foo" }
prints in test, foo is this is foo
The value of yield i …
0
votes
Ruby on Rails: hash.each {} issues
You could just put that in your view, rather than assigning it to a variable.
…
1
vote
Anyone know what CMS is using 37signals to manage the site?
And there's Nanoc too, like Webby I think.
…
1
vote
How to determine the class from which a specified method originated?
I'm thinking something like this could work
def print_ancestor_definitions(cl,method)
ancestors = cl.ancestors
p ancestors.join(' < ') #Print heirarchy
p "Searching..."
a …
3
votes
Ruby equivalent of Python’s “dir”?
You can take a module, such as Enumerable, and send the methods method which lists all the methods the module defines. Classes that include this module will respond to the …
0
votes
What is the best way to load Ruby classes into an application?
You still need to specify what to load, but you can try autoload.
autoload :Module, "module"
When the constant Module is first used the f …
2
votes
Type Conversions in Ruby: The “Right” Way?
I don't know about the can_convert method, but generally a class will define methods like to_s, to_i, to_hash and so on. These methods return a d …
