amber tunnell

puts 'my thoughts on the magic that is code'

Useful Ruby resources

| Comments

After being at The Flatiron School for two weeks, I’ve come to realize that it’s all in the resources. Every task can be done quicker, smarter, and better with the right resources. Considering that, here’s an on-going list of awesome resources for the beginning Rubyist that I’ve learned about so far. If you know of other great resources not yet included, mention them in the comments!

Ruby Documentation

Use the documentation! It’s the best resource you have. If you want to know what a method does, it will almost always say it in the documentation. If not, the method probably doesn’t exist. (But sometimes it does.) Despite that: Use. The. Documentation.

IRB

For weeks before Flatiron, I was beginning to learn Ruby. And when I wanted to know what a Ruby method did, I would often open up another ruby doc in a text editor and then puts the result to the terminal. Then, on the first day of class, I learned about IRB! IRB stands for “interactive ruby,” and is a tool that interactively executes Ruby code in the terminal. Just key in “irb” and Ruby away! Now, every time I’m unsure of a piece of code, I simply check it in irb! Such a time-saver!

Pry

Also extremely useful is the RubyGem Pry. Unlike IRB which is great to check a basic piece of syntax, Pry can actually be run in your program and will tell you what piece of information it receives every step of the way. It’s crazy useful, and if you are a Ruby developer, an absolute must in debugging.

Rubular.com

If you know anything about Ruby, you’ll know about Regular Expressions (aka “Regex”). And if you know anything about Ruby, I’m sure you have a love-hate relationship with them. Ruby is fondly know as being fairly English-y and intuitive, but I don’t really consider things that look like this English:

/\A[a-z]+.*[a-z]*@{1}[a-z]+.[a-z]+.*[a-z]*\z/

Regexs are extremely powerful in Ruby, because they let you manipulate data in a very complicated yet precise way. But, often they are long and cumbersome. Enter Rubular! In Rubular, you can build your regexs interactively with the data you are trying to manipulate, and conversely, immediately determine what data an already-constructed regex is trying to gather. It’s truly priceless for a dedicated Rubyist.

ruby

Amber is a web developer in New York who believes in creating beautiful, interactive stories through code. She is a lover of good coffee, good books, and good code.

Ruby magic »

Comments