Skip to content

Instantly share code, notes, and snippets.

@dastanko
Last active December 18, 2015 03:48
Show Gist options
  • Save dastanko/5720604 to your computer and use it in GitHub Desktop.
Save dastanko/5720604 to your computer and use it in GitHub Desktop.
Шаблон на Ruby
class CesarCipher
attr_writer :alphabet, :shift
def encode(plain_text)
# реализация
return encoded_text
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment