Ruby Koans are a set of Ruby exercises found at rubykoans.com
1
vote
1answer
20 views
Ruby: Assert_raise alternative?
I'm working out Ruby Kons and I stopped in about_Hashes. It took me a bit to understand what asserts are and how they work and I think I get it but suddenly assert_raise appears! I'm confused and now ...
1
vote
3answers
67 views
How does begin,rescue and => symbol work?
In the Ruby koans, 6th exercise, there is:
def test_you_dont_get_null_pointer_errors_when_calling_methods_on_nil
# What happens when you call a method that doesn't exist.
# The ...
3
votes
4answers
88 views
fetch vs. [] when working with hashes? [duplicate]
From Ruby Koans about_hashes.rb:
Why might you want to use #fetch instead of #[] when accessing hash keys?
0
votes
0answers
71 views
Ruby beginning suggestions [closed]
i am an graphic and web designer... i have no programming background and i was hanging out in freenode server at #ruby channel. people suggest me to some exercises pages like,
...
0
votes
1answer
32 views
Ruby Koan: def test_non_parallel_assignment
I am working through ruby koan, on the about_array_assignment.rb file and I am stuck on line 6. I've been told by the master that this test is incorrect. Any ideas whats going wrong? I've tested it in ...
1
vote
0answers
66 views
Ruby Koans - Continuation of Lexical Scope vs Inheritance Hierarchy
I've had a chance to look around in StackOverflow and found this same question which I was trying to better understand from Ruby Koans (Ruby Koans: explicit scoping on a class definition part 2).
...
2
votes
1answer
75 views
Ruby Koans - about_arrays.rb
I'm working on the about_arrays.rb file within Ruby Koans and I noticed this piece of code and I'm not sure why the answer is what it is:
def test_slicing_arrays
array = [:peanut, :butter, :and, ...
3
votes
1answer
56 views
Ruby Koans about_array_assignment - Nonparallel vs. Parallel assignment Discrimination
Working through rubykoans.com I came across these two pieces of code in about_array_assignment.rb
How can you tell that the first is nonparallel assignment and the second is parallel assignment with ...
1
vote
2answers
92 views
Ruby Koans and Strings
I'm trying to understand something from the Ruby Koans. In one lesson, we make two classes as follows:
class CanNotBeTreatedAsString
def to_s
"non-string-like"
end
end
not_like_a_string = ...
4
votes
2answers
129 views
Ruby Koans #75 test_constants_become_symbols, correct answer?
My question builds upon this question: Ruby Koan: Constants become symbols. I have the following code:
in_ruby_version("mri") do
RubyConstant = "What is the sound of one hand clapping?"
def ...
1
vote
1answer
99 views
What to learn from Ruby Koan nº 75?
Koan code, number 75:
in_ruby_version("mri") do
RubyConstant = "What is the sound of one hand clapping?"
def test_constants_become_symbols
all_symbols = ...
1
vote
2answers
107 views
Ruby Koans: regex parentheses “capture” matched content?
I'm going through about_regular_expressions.rb and don't understand exactly what's happening here:
def test_variables_can_also_be_used_to_access_captures
assert_equal "Gray, James", "Name: Gray, ...
3
votes
1answer
121 views
Ruby Koans 202: Why does the correct answer give a syntax error? [closed]
I'm working through the about_classes.rb file in the Ruby Koans, and have hit a brick wall with the "inside_a_method_self_refers_to_the_containing_object" test. Here's the code:
class Dog7
...
1
vote
2answers
122 views
Ruby: these two koans have stumped me
I would have expected the answer for both of the koans below to be
:default_value
but the correct answer is apparently :false_value.
In the first one, I understand the unless statement to mean,
...
1
vote
1answer
233 views
RubyKoans: broken koan?
Probably a sign of an amateur that I'm wondering if the problem's the koan (rather than me), however, consider this koan
def test_calling_global_methods_without_parentheses
result = ...
2
votes
1answer
149 views
What does a range of 2..-1 mean? (Ruby koans about_arrays.rb)
Please could someone explain what a range object of 2..-1 means.
Ruby koans has the following in about_arrays.rb:
def test_slicing_with_ranges
array = [:peanut, :butter, :and, :jelly]
...
0
votes
2answers
109 views
Ruby: stuck on a koan
I'm working on RubyKoans.com and got stuck in about_symbols.rb with this koan.
This is the test: I assume I'm supposed to put something in the brackets after assert_raise() but I have no idea:
def ...
0
votes
1answer
548 views
Ruby Koans Scoring Project
I'm working through the Ruby Koans, and I'm having a bit of trouble figuring out what is going wrong with a method I've written. I'm in about_scoring_project.rb, and I've written the score method for ...
2
votes
1answer
162 views
Ruby Koans about_methods line 123 object loop
Each time I add in the correct code, it gives me the same error due to AboutMethods:0x00000101841a28 number changing each time. It's like its stuck and I don't know how to get out this loop. It ...
2
votes
4answers
99 views
Confused by this unless statement in rubykoans
Lines 4 & 5 are causing me grief:
1 def test_break_statement
2 i = 1
3 result = 1
4 while true
5 break unless i <= 10
6 result = result * i
7 i += 1
8 end
9 ...
18
votes
2answers
1k 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"
hash[:two] ...
5
votes
2answers
1k 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 ...
6
votes
3answers
176 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 ...
0
votes
1answer
70 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]
...
2
votes
2answers
262 views
Why does a Ruby array allow access to invalid range index? [duplicate]
Possible Duplicate:
Array slicing in Ruby: looking for explanation for illogical behaviour (taken from Rubykoans.com)
In one of the Ruby koans, there's the following problem:
def ...
1
vote
2answers
614 views
Regarding Ruby assert_equal
So I am learning Ruby through ruby koans tutorial.
In the about_assert.rb script, there is a comment regarding assert_equal,
"Some ways of asserting equality are better than others"
here is the code
...
1
vote
2answers
486 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
336 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 ...
2
votes
2answers
672 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 __, ...
8
votes
2answers
891 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 ...
0
votes
1answer
308 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
325 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 ...
3
votes
1answer
283 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 ...
2
votes
3answers
233 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 ...
22
votes
3answers
932 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"
...
0
votes
2answers
854 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 ...
1
vote
1answer
277 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 ...
8
votes
1answer
444 views
Code koans for C?
Is 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
...
4
votes
3answers
156 views
array[4,0] returns [], but array[5,0] returns nil… why? [duplicate]
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 ...
1
vote
4answers
332 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
133 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 ...
3
votes
3answers
949 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
1answer
342 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 ...
3
votes
1answer
521 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 ...
3
votes
2answers
1k 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 ...
9
votes
1answer
1k 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 ...
11
votes
2answers
2k 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
2answers
609 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
...
9
votes
2answers
1k 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
...
2
votes
3answers
144 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 ...

