Tagged Questions
Ruby is an open-source dynamic object-oriented interpreted language created by Yukihiro Matsumoto (Matz) in 1993.
102
votes
5answers
28k views
What does map(&:name) mean in Ruby?
I found this code in a RailsCast:
def tag_names
@tag_names || tags.map(&:name).join(' ')
end
what does the (&:name) in map(&:name) mean?
29
votes
6answers
3k views
What does ||= (or equals) mean in Ruby?
What does the following code mean in Ruby?
||=
Does it have any meaning or reason for the syntax?
87
votes
4answers
14k views
Ruby/Ruby on Rails ampersand colon shortcut [duplicate]
Possible Duplicate:
What does map(&:name) mean in Ruby?
In Ruby (actually only in Rails, apparently), I know that if I do:
some_objects.each(&:foo)
It's the same as
...
216
votes
15answers
56k views
Can't install Ruby under Lion with RVM – GCC issues
Most questions regarding this problem are due to missing Xcode; I have Xcode 4.2 installed.
Install attempt:
rvm install 1.9.3
Installing Ruby from source to: /Users/jamie/.rvm/rubies/ruby-1.9.3-p0, ...
66
votes
1answer
30k views
Installed Ruby 1.9.3 with RVM but command line doesn't show ruby -v
Here's the console output:
sergio@sergio-VirtualBox:~$ rvm list
rvm rubies
ruby-1.9.3 [ i386 ]
sergio@sergio-VirtualBox:~$ rvm use 1.9.3
Using /usr/share/ruby-rvm/gems/ruby-1.9.3
...
128
votes
6answers
28k views
Does ruby have real multithreading?
I know about the "cooperative" threading of ruby using green threads. How can I create real "OS-level" threads in my application in order to make use of multiple cpu cores for processing?
110
votes
9answers
6k views
Array slicing in Ruby: looking for explanation for illogical behaviour (taken from Rubykoans.com)
I was going through the exercises at http://rubykoans.com/ and I was struck by the following Ruby quirk that I found really unexplainable:
array = [:peanut, :butter, :and, :jelly]
array[0] => ...
161
votes
20answers
28k views
Using Rails 3.1, where do you put your “page specific” javascript code?
To my understanding, all of your javascript gets merged into 1 file. Rails does this by default when it adds //= require_tree . to the bottom of your application.js manifest file.
This sounds like a ...
26
votes
8answers
8k views
How do I debug ruby scripts?
Ruby n00b here. I copied the following ruby code from the internets and made a few changes.
#insert teh codes here
But it doesn't work!
Please help. What can I do to debug the program by myself?
...
120
votes
4answers
47k views
Rails :include vs. :joins
This is more of a "why do things work this way" question rather than a "I don't know how to do this" question...
So the gospel on pulling associated records that you know you're going to use is to ...
58
votes
5answers
19k views
How to prevent browser page caching in Rails
Ubuntu -> Apache -> Phusion Passenger -> Rails 2.3
The main part of my site reacts to your clicks. So, if you click on a link, it will send you on to the destination, and instantly regenerate your ...
96
votes
6answers
14k views
What is Ruby's double-colon (::) all about?
I'd probably be able to answer this for myself if :: wasn't so hard to Google. Didn't see anything on SO so thought I'd try my luck.
What is this double-colon :: all about? I see it everywhere in ...
73
votes
19answers
34k views
Should I learn Ruby or Python? [closed]
I'm a C(++)/C# programmer and I would like to learn a scripting language to create small tools (text processing, build scripts, a little web development, etc). I would like to learn either Ruby or ...
82
votes
25answers
7k views
What are the Ruby Gotchas a newbie should be warned about? [closed]
I have recently learned the Ruby programming language, and all in all it is a good language. But I was quite surprised to see that it was not as simple as I had expected. More precisely, the "rule ...
107
votes
6answers
76k views
How do I parse JSON with Ruby on Rails?
I'm looking for a simple way to parse JSON, extract a value and write it into a db in Rails.
Explicitly what I'm looking for is a way to extract a shortUrl from the JSON returned from the bit.ly API: ...
20
votes
6answers
1k views
What is the difference or value of these block coding styles in Ruby?
Which style is preferred?
Is there a good reason for one vs. the other?
Thanks in advance!
1) cmds.each do |cmd|
end
2) cmds.each { |cmd|
}
Example code:
cmds = [ "create", "update", ...
193
votes
11answers
88k views
Calling Bash Commands From Ruby
How do I call console/bash commands from inside of a Ruby Program? Also, how do I get output from these commands back into my program?
178
votes
1answer
18k views
class << self idiom in Ruby
I suppose my question is exactly what the subject depicts, what does:
class << self
do in Ruby?
69
votes
2answers
8k views
When monkey patching a method, can you call the overridden method from the new implementation?
Say I am monkey patching a method in a class, how could I call the overridden method from the overriding method? I.e. Something a bit like super
E.g.
class Foo
def bar()
"Hello"
end
end
...
121
votes
7answers
24k views
Why does Ruby 1.9.2 remove “.” from LOAD_PATH, and what's the alternative?
The latest changesets to Ruby 1.9.2 no longer make the current directory . part of your LOAD_PATH. I have a non-trivial number of Rakefiles that assume that . is part of the LOAD_PATH, so this broke ...
110
votes
11answers
64k views
Getting output of system() calls in ruby
If I call a command using system() in ruby, how do I get its output?
e.g.
system("ls")
58
votes
5answers
33k views
How do I encode/decode HTML entities in Ruby?
I am trying to decode some HTML entities, such as '&lt;' => '<'.
I have an old gem (http://github.com/tma/html_helpers/) but it seems to have been abandoned twice.
Any recommendations? ...
61
votes
4answers
7k views
What does the (unary) * operator do in this Ruby code?
Given the Ruby code
line = "first_name=mickey;last_name=mouse;country=usa"
record = Hash[*line.split(/=|;/)]
I understand everything in the second line apart from the * operator - what is it ...
21
votes
3answers
2k views
Difference between “or” and || in Ruby?
What's the difference between the or and || operators in Ruby? Or is it just preference?
83
votes
11answers
57k views
How do I update Ruby Gems from behind a Proxy (ISA-NTLM)
Firewall I'm behind is running Microsoft ISA server (NTLM only mode), anyone have success getting their Ruby gems to install/update via Ruby SSPI gem or other method?
... or am I just being lazy?
...
109
votes
10answers
19k views
How to find where a method is defined at runtime?
We recently had a problem where, after a series of commits had occurred, a backend process failed to run. Now, we were good little boys and girls and ran rake test after every check-in but, due to ...
101
votes
5answers
16k views
Why are exclamation marks used in Ruby methods?
In Ruby some methods have a question mark (?) that ask a question like "include?" that ask if the object in question is included, this then returns a true/false.
But why do some methods have ...
56
votes
4answers
8k views
What is the Ruby <=> (spaceship) operator?
What is the Ruby <=> (spaceship) operator? Is the operator implemented by any other languages?
45
votes
5answers
4k views
218
votes
35answers
80k views
How best to generate a random string in Ruby
I'm currently using the following to generate an 8 character pseudo random upper case string [A-Z]
value = ""; 8.times{value << (65 + rand(25)).chr}
but it looks junky, and since it isn't a ...
63
votes
22answers
62k views
Rails, MySQL and Snow Leopard
I upgraded to Snow Leopard using the disc we got at WWDC.
Trying to run some of my rails apps now complains about sql
(in /Users/coneybeare/Projects/Ambiance/ambiance-server)
!!! The bundled ...
49
votes
9answers
50k views
Ruby: How to post a file via HTTP as multipart/form-data?
I want to do an HTTP POST that looks like an HMTL form posted from a browser. Specifically, post some text fields and a file field.
Posting text fields is straightforward, there's an example right ...
50
votes
19answers
28k views
How can I avoid running ActiveRecord callbacks?
I have some models that have after_save callbacks. Usually that's fine, but in some situations, like when creating development data, I want to save the models without having the callbacks run. Is ...
14
votes
1answer
3k views
What do you call the &: operator in Ruby? [duplicate]
Possible Duplicates:
Ruby/Ruby on Rails ampersand colon shortcut
What does map(&:name) mean in Ruby?
I was reading Stackoverflow and stumbled upon the following code
...
140
votes
6answers
30k views
A concise explanation of nil v. empty v. blank in Ruby on Rails
I find myself repeatedly looking for a clear definition of the differences of nil?, blank?, and empty? in Ruby on Rails. Here's the closest I've come:
blank? objects are false, empty, or a ...
246
votes
9answers
149k views
How to get a random number in Ruby?
In Ruby, how do you generate a random number between 0 and n? In .NET you can create a Random object, does something like this exist for Ruby?
91
votes
31answers
43k views
What is the best way to learn Ruby? [closed]
How do I go about learning Ruby quickly and easily without buying expensive programming books?
24
votes
10answers
16k views
diff a ruby string or array
Is there a ruby library that will take two strings or two arrays and return the difference between the two strings/arrays?
25
votes
2answers
4k views
Using do block vs brackets {}
New to ruby, put on your newbie gloves.
Is there any difference (obscure or practical) between the following two snippets?
my_array = [:uno, :dos, :tres]
my_array.each { |item|
puts item
}
...
12
votes
3answers
629 views
Is there any difference between the `:key => “value”` and `key: “value”` hash notations?
Is there any difference between :key => "value" (hashrocket) and key: "value" (Ruby 1.9) notations?
If not, then I would like to use key: "value" notation. Is there a gem that helps me to convert ...
225
votes
5answers
49k views
How to remove rvm (ruby version manager) from my system?
How can I remove rvm (ruby version manager) from my system?
64
votes
12answers
6k views
.NET Migrations Engine
I was once under the belief that Microsoft was working on an official, ruby-like, Migration framework. However, I haven't been able to find any additional information (or even the original source of ...
63
votes
4answers
19k views
Difference between attr_accessor and attr_accessible
In RoR, what is the difference between attr_accessor and attr_accessible. From my understanding, using attr_accessor is used to create getter and setter methods for that variable, so that we can ...
76
votes
10answers
22k views
Debugging in ruby 1.9
What do you guys use for debugging in ruby 1.9? rdebug doesn't seem to be compatible.. is there anything out there?
37
votes
5answers
6k views
What is the colon operator in Ruby?
When I say { :bla => 1, :bloop => 2 }, what exactly does the : do? I read somewhere about how it's similar to a string, but somehow a symbol.
I'm not super-clear on the concept, could someone ...
7
votes
1answer
512 views
What is this &:last Ruby construct called? [duplicate]
Possible Duplicate:
What does map(&:name) mean in Ruby?
What are things like survey.map(&:questions).flatten.compact called, so I can find more information about them :). What ...
6
votes
1answer
1k views
Ruby block and unparenthesized arguments
I extracted simple example:
require 'pp'
x = 1..3
pp x.map do |i| {:value => i, :double => (i*2)} end
pp x.map { |i| {:value => i, :double => (i*2)} }
pp(x.map do |i| {:value => i, ...
93
votes
6answers
19k views
Using Sinatra for larger projects via multiple files
It seems that in Sinatra all route handlers are being written into a single file, if I understand right it acts as a one large/small controller. Is there any way to split it into separate independent ...
277
votes
7answers
63k views
How do I pass command line arguments to a rake task?
I've got a rake task that I am making that needs to insert a value into multiple databases.
I'd like to be able to pass this value into the rake task from the command line, or from another rake ...
167
votes
11answers
29k views
When to use lambda, when to use Proc.new?
In Ruby 1.8, there are subtle differences between proc/lambda on the one hand, and Proc.new on the other.
What are those differences?
Can you give guidelines on how to decide which one to choose?
...