1
0
Fork
You've already forked learn_ruby
0
Random assortment of activities aimed a learning Ruby, Rails, and TDD
  • Ruby 100%
2025年04月09日 14:42:01 -04:00
Archive Reorganize repo in preparation for reival 2025年03月12日 12:14:31 -04:00
Calculator Add failing div test 2025年04月07日 07:52:36 -04:00
Cards Make progress with Cards 2025年04月01日 09:02:16 -04:00
LittleExamples Add Factorial example 2025年04月01日 12:48:50 -04:00
OdinProjects Make progress with Cards 2025年04月01日 09:02:16 -04:00
Pawel Add the gentle rspec link 2025年03月27日 12:57:12 -04:00
ProjManagement Add simple module namespace example 2025年04月01日 07:34:26 -04:00
StudentWork Add two student projects 2025年04月09日 10:47:18 -04:00
Trees Add DeepSeek RSpec tests for BST 2025年04月09日 14:42:01 -04:00
.gitignore Initial commit 2021年03月14日 19:32:49 +01:00
LICENSE Initial commit 2021年03月14日 19:32:49 +01:00
README.md Add simple module namespace example 2025年04月01日 07:34:26 -04:00
Resources.md Start trying to learn rspec 2025年03月27日 07:33:51 -04:00

Experiments Used in a Crash Course in Ruby

Directory

Installation

rbenv came up most frequently as the recommended way for developers to install Ruby.

Following this recommendation, I ran

$ sudo apt install -y git curl autoconf bison build-essential libssl-dev libyaml-dev libreadline-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm-dev libdb-dev
$ curl -fsSL https://github.com/rbenv/rbenv-installer/raw/HEAD/bin/rbenv-installer | bash

After login out and logging back in again, I ran

$ rbenv install 3.4.2
$ gem install rspec

After seeing a message that a newer version of gem was available, I ran

$ gem update

which updated all my gem packages.

Resources