Intro to Data Analysis with Ruby -- (SLIDES - http://ladieslearningcode.github.io/llc-intro-to-ruby/slides.html), (LEARNER FILES - http://bit.ly/llc-ruby-data) - No sample project.
Other
7
stars
10
forks
source link
Change all instances of `Fixnum` to `Integer`. Fixes #10. #21
NOTE: this is a fixed version of #20! This resolves the conflicts introduced by that PR.
Anywhere it said Fixnum, I changed to Integer. This works for all versions of Ruby 2.x, as far as I'm aware. However 42.class may return Fixnum in older versions.
I also added a quick note for people using old versions of Ruby (mostly macOS users).
NOTE: this is a fixed version of #20! This resolves the conflicts introduced by that PR.
Anywhere it said Fixnum, I changed to Integer. This works for all versions of Ruby 2.x, as far as I'm aware. However
42.class
may return Fixnum in older versions.I also added a quick note for people using old versions of Ruby (mostly macOS users).
Closes #10 Closes #20