Module: ShiftCiphers
- Defined in:
- lib/shift_ciphers/caesar.rb,
lib/shift_ciphers/version.rb,
lib/shift_ciphers/vigenere.rb,
lib/shift_ciphers/shift_ciphers.rb
Defined Under Namespace
Modules: Version
Classes: Caesar, Vigenere
Constant Summary
collapse
- VERSION =
([Version::MAJOR, Version::MINOR, Version::PATCH, Version::LABEL].compact * '.').freeze
- ALPHABET =
((0..9).to_a.map(&:to_s) +
('a'..'z').to_a +
('A'..'Z').to_a
).join + " !@#$%^&*()-_=+{}[];:'\",./<>?"