Tagged Questions

The Ruby Koans are a free set of exercises from EdgeCase. The Koans walk you along the path to enlightenment in order to learn Ruby. The goal is to learn the Ruby language, syntax, structure, and some common functions and libraries. They also teach you culture, including testing. The koans are ...

learn more… | top users | synonyms

63
votes
7answers
2k 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] => ...
24
votes
3answers
2k views

Ruby send vs __send__

I understand the concept of some_instance.send but I'm trying to figure out why you can call this both ways? The Ruby Koans imply that there is some reason beyond providing lots of different ways to ...
20
votes
2answers
1k views

Ruby Koans: Why convert list of symbols to strings

I'm referring to this test in about_symbols.rb in Ruby Koans https://github.com/edgecase/ruby_koans/blob/master/koans/about_symbols.rb#L26 def test_method_names_become_symbols symbols_as_strings = ...
17
votes
4answers
875 views

Why is the shovel operator (<<) preferred over plus-equals (+=) when building a string in Ruby?

I am working through Ruby Koans. I am at the section in about_strings.rb which asks: "Ruby programmers tend to favor the shovel operator (<<) over the plus equals operator (+=) when building up ...
10
votes
7answers
637 views

Is there a Perl equivalent of the ruby koans project?

Is there a Perl equivalent to the ruby-koans project? When I was starting to learn ruby a few months ago I stumbled across ruby-koans and it was a huge help for learning the basics of the language. ...
9
votes
3answers
523 views

Ruby: explicit scoping on a class definition

disclaimer: Code taken from the ruby koans This is from a discussion of constants scoping within classes. Here is the defintion of a couple few classes: class Animal LEGS = 4 def legs_in_animal ...
9
votes
5answers
2k views

Is there a supplementary guide/answer key for ruby koans?

I have recently tried sharpening my rails skills with this tool: http://github.com/edgecase/ruby_koans but I am having trouble passing some tests. Also I am not sure if I'm doing some things ...
8
votes
10answers
2k views

Ruby Koan 151 raising exceptions

Hey guys, I'm going through the ruby koans, I'm on 151 and I just hit a brick wall. Here is the koan: # You need to write the triangle method in the file 'triangle.rb' require 'triangle.rb' class ...
8
votes
9answers
869 views

What's the best way to test this?

I'm going through the EdgeCase Ruby Koans. In about_dice_project.rb, there's a test called "test_dice_values_should_change_between_rolls", which is straightforward: def ...
6
votes
1answer
151 views

What is the answer to the bonus question in test_changing_hashes of Ruby Koans?

In the Ruby Koans, the section about_hashes.rb includes the following code and comment: def test_changing_hashes hash = { :one => "uno", :two => "dos" } hash[:one] = "eins" ...
5
votes
1answer
508 views

Ruby Koans: explicit scoping on a class definition part 2

I wanted to clarify some things off of this original post. The answer suggested that Ruby searches for the constant definition in this order: The enclosing scope Any outer scopes (repeat until top ...
5
votes
2answers
660 views

Ruby Koan: Constants become symbols

In the about_symbols.rb Ruby Koan (https://github.com/edgecase/ruby_koans), I have the following code: RubyConstant = "What is the sound of one hand clapping?" def ...
5
votes
6answers
1k views

A more elegant solution to Ruby Koans' triangle.rb

I have been working through Ruby Koans and made it to about_triangle_project.rb in which you are required to write the code for a method, triangle. Code for these items are found here: ...
4
votes
0answers
104 views

Code koans for C?

I there a Code Koans Set for C or Lisp? I've found Koans in this languages, but no one in C or Lisp: Ruby: http://rubykoans.com/ JavaScript: https://github.com/mrdavidlaing/javascript-koans Clojure: ...
4
votes
3answers
122 views

array[4,0] returns [], but array[5,0] returns nil… why? [closed]

Possible Duplicate: Array slicing in Ruby: looking for explanation for illogical behaviour (taken from Rubykoans.com) I'm following Ruby Koans and I've gotten to a part that deals with an ...
4
votes
2answers
448 views

Getting the Star Regex Operator to Fail

I'm not sure if my brain is worn out or if I'm just thinking about this too hard. The following code is from the about_regular_expressions in the Ruby Koans. def test_asterisk_means_zero_or_more ...
3
votes
1answer
115 views

Is there a coffeescript equivalent to the ruby koans?

I found several javascript testing frameworks with a quick google search: Jasmine, jsUnity, JSpec, YUI Test, JsUnit, QUnit I'm sure that this is by no means an exhaustive list. Has anyone written ...
3
votes
3answers
305 views

about_classes.rb inspect and self in ruby

I'm currently working on about_classes.rb. I'm confused on the concept of inspect and how it relates to self. Does calling an object automatically return the inspect method for that object? class ...
3
votes
2answers
273 views

Can I use parameter-less functions in Ruby 1.9.x?

So I'm working through the Ruby Koans, and I've encountered an issue that I think is specific to ruby 1.9.x. def test_calling_global_methods_without_parentheses result = my_global_method 2, 3 ...
3
votes
18answers
633 views

Ruby Greed Koan - How can I improve my if/then soup?

I'm working my way through the Ruby Koans in order to try and learn Ruby, and so far, so good. I've gotten to the greed koan, which at the time of this writing is 183. I've got a working solution, but ...
3
votes
3answers
296 views

What's this _n_ Ruby koans?

I'm trying out Ruby koans and found some tests using this _n_ , never seen it before what is it and how do I use it? Example: def test_objects_have_methods fido = Dog.new ...
3
votes
3answers
249 views

ruby: Range is empty, but slicing with it produces elements?

I'm learning Ruby, and have just gotten into some stuff about arrays and ranges. I've run into something about slices that, while it makes sense at first glance, confuses me a bit when i look deeper ...
3
votes
5answers
1k views

Help with Ruby Koans #6 - What exception has been caught?

I'm trying to learn Ruby through Koans but I'm stuck on the 6th step. Here's the code: def test_you_dont_get_null_pointer_errors_when_calling_methods_on_nil # What happens when you call a ...
2
votes
2answers
57 views

How does shovel (<<) operator work in Ruby Hashes?

I was going through Ruby Koans tutorial series, when I came upon this in about_hashes.rb: def test_default_value_is_the_same_object hash = Hash.new([]) hash[:one] << "uno" ...
2
votes
2answers
52 views

Default hash values in Ruby (Rubykoans.com -> about_hashes.rb)

I'm going through about_hashes.rb from RubyKoans. 1 exercise got me puzzled: def test_default_value hash1 = Hash.new hash1[:one] = 1 assert_equal 1, hash1[:one] #ok assert_equal ...
2
votes
3answers
47 views

I'd like an explanation of a behavior in Ruby that I ran across in the Koans

So is it just the shovel operator that modifies the original string? Why does this work, it looks like: hi = original_string is acting like some kind of a pointer? Can I get some insight as to ...
2
votes
2answers
82 views

Why does a Ruby array allow access to invalid range index?

In one of the Ruby koans, there's the following problem: def test_slicing_arrays array = [:peanut, :butter, :and, :jelly] assert_equal _, array[0,1] assert_equal _, array[0,2] assert_equal ...
2
votes
2answers
91 views

Checking if symbol is present in the array with include?

Trying Ruby with the help of Ruby Koans. There is following test there: def test_method_names_become_symbols symbols_as_strings = Symbol.all_symbols.map { |x| x.to_s } assert_equal __, ...
2
votes
3answers
96 views

Why is this string value a number?

In the Ruby Koans, you have to fill in the blank for what represents string[1] below. Why is the answer 97? def test_you_can_get_a_single_character_from_a_string string = "Bacon, lettuce and ...
2
votes
1answer
144 views

Ruby Koans - Regex and .sub: Don't understand reason behind answer

For clarification, here's the exact question in the about_regular_expressions.rb file that I'm having trouble with: def test_sub_is_like_find_and_replace assert_equal __, "one ...
2
votes
1answer
175 views

Why is the formatting/syntax for assert_equal hashes different than other assert_equals?

I'm working my way through the Ruby Koans and am currently on AboutHashes. Up to this point the assert_equals have followed a specific formatting style of: assert_equal space expected_value comma ...
2
votes
3answers
109 views

What's the difference between String and ::String?

I know :: allows us to access items in modules, or class-level items in classes, but what does only ::String mean?? What is the difference between String =="hi".class and ::String=="hi".class?? The ...
2
votes
2answers
180 views

Running Ruby Koans in Netbeans 6.9.1

I'm very new to Ruby, and currently running through the Ruby Koans to get a better feel for the language. My IDE is NetBeans 6.9.1. I have created a new Ruby project from existing source, and ...
2
votes
2answers
497 views

stuck on about_methods.rb on the EdgeCase Ruby Koans

I'm hacking my way through the EdgeCase RubyKoans (www.rubykoans.com) and am stuck on the method starting at line 35 in about_methods.rb here. Running rake fails predictably and tells me to look at ...
1
vote
2answers
82 views

Koans - Ruby Escape Characters Confusion

I've been working my way through the excellent Ruby Koans; I've reached the string section of exercises and a few have caused me a little confusion, in particular the "escape clauses and single quoted ...
1
vote
3answers
108 views

Same random number ruby

Well i'm a ruby newbie and im trying to learn with RubyKoans but i got stucked with this test def test_dice_values_should_change_between_rolls 48 dice = DiceSet.new 49 dice.roll(5) 50 ...
1
vote
2answers
157 views

Ruby Koans: Where are the quotes in this return value?

I'm working on the following Ruby Koan: class Dog7 attr_reader :name def initialize(initial_name) @name = initial_name end def get_self self end def to_s __ end def ...
1
vote
2answers
300 views

what is the solution to this blank in the code?

From the test_symbols_cannot_be_concatenated exercise in the Ruby Koans. Previous exercises had used assert_equal tests. This is the first assert_raise on the path to enlightenment. def ...
0
votes
1answer
39 views

I'd like an explanation of some behavior in Ruby that I ran across in the Koans

Why does the second assert_equal below work? How does ruby associate "dos" with :two? def test_default_value hash2 = Hash.new("dos") hash2[:one] = 1 assert_equal 1, hash2[:one] ...
0
votes
1answer
70 views

Do flexible quotes add an extra character to a string?

I was learning ruby through ruby koans when I faced these two functions: def test_flexible_quotes_can_handle_multiple_lines *long_string = %{ It was the best of times, It was the worst of ...
0
votes
3answers
114 views

Ruby koan 182 Greed dice game - getting a mysterious error

I'm doing the edgecase koans to learn ruby and I got stuck with the greed koan (182-183) getting a mysterious error. The rules are outlined HERE I know my code is..unimpressive, I figured I'd ...
0
votes
2answers
284 views

Ruby Koans Scoring Project. undefined method `length' for nil:NilClass

I am BRAND new to Ruby, and programing in general. I'm working my way through the Ruby Koans. I've made it up to 176/274 before getting stuck. It's the "Scoring Project" I need to write a method to ...
0
votes
1answer
114 views

Ruby koans triangle.rb require error

I'm doing the Ruby Koans tutorial, using notepad++. The about_triangle_project.rb can't seem to load the triangle.rb file. no such file to load -- triangle.rb <LoadError> from ...
0
votes
3answers
165 views

Ruby Koans 182. Refactor help

Can you help me refactor the solution I came up with for Ruby Koans #182? This is the koan in which you write a score method to calculate points for the Greed game. Following code works and all tests ...
0
votes
2answers
80 views

What exception is raised when using + on symbols in Ruby?

Doing the Ruby Koans, in the file about_symbols at line 88, I'm not sure of the answer. This is the code: def test_symbols_cannot_be_concatenated # Exceptions will be pondered further farther ...
0
votes
2answers
440 views

ruby koans about_nil.rb — question fr/ newbie

I'm an absolute beginner in programming. I am gravitating to ruby and have set up the koans. The section begins with: def test_you_dont_get_null_pointer_errors_when_calling_methods_on_nil Please ...