ruby-for-beginners icon indicating copy to clipboard operation
ruby-for-beginners copied to clipboard

The beginnings of a book about learning Ruby for our beginners groups.

Results 14 ruby-for-beginners issues
Sort by recently updated
recently updated
newest added

fixes rubymonsters/ruby-for-beginners#39

"printing things" is missing an example use of the recommended p method. Perhaps "For example when you pass an array to puts then it will output each of the objects...

Just a couple of suggestions and a spanish word correction.

In section: 11-writing_classes/06-attribute_writers.md I suggest you mention these commonly used methods: ``` class Person attr_reader :name attr_writer :name end class Person attr_accessor :name end ```

I found a minor mistake... In section: 11-writing_classes/01-definition.md It should be 'PascalCase' or 'upper camel case' instead of just 'camel case'. (ref: https://en.wikipedia.org/wiki/Camel_case) This is a great intro to Ruby!...

Hello! Congrats on this work, I find it to be a wonderful reference for beginners needing to understand the fundamentals in a comprehensive way. I find it so good that...