This is my version of implementing a caesar cipher in ruby.
This is a project from The Odin Project.
Open your Terminal/Command Line. Navigate to the directory where your version will live. Type in the following:
$ git clone https://github.com/JonathanYiv/caesar_cipher.git
$ cd caesar_cipher
$ ruby lib/caesar_cipher.rb
This should be easy.
-
It was easy.
-
In this Odin follow-up project:
-
I came back to Caesar Cipher and integrated specifications using RSpec. I found ten possible scenarios to test, and added functionality for negative shift when I added the test.
-
I set up a RakeFile so I can use the '$ rake' command to run rspec based on the documentation here.
-
-
In this OTHER Odin follow-up project, I came back and added a Heroku-hosted Sinatra web-app interface. It was pretty easy.