-
Rails Guides:Engine 可以看作为宿主应用提供附加功能的微型应用(如 feedmob-rescue, feedmob-sidebar)
-
而 Rails Application 实质上就是一个加强版的 Engine
- 解耦 (避免宿主应用代码过多,导致难以维护)
- 可以针对 engine 单独测试
# 暗号モード: ECB | |
# パディング方式: PKCS5Padding | |
# OpenSSL::Cipher.ciphers で利用可能な暗号方式名を取得可能 | |
# https://docs.ruby-lang.org/ja/latest/class/OpenSSL=3a=3aCipher.html | |
module AesCipher extend self | |
KEY = "Your key" | |
CIPHER = "DES-ECB" | |
def encrypt(text) |
📆 Jun 23-24, 2016
🌏 Web site: http://reddotrubyconf.com/ Twitter: http://twitter.com/reddotrubyconf
💁 Ping me @cheeaun on Twitter or leave a comment below if you found some awesome stuff for #rdrc2016. This gist will be updated whenever there's new stuff.
🕙 Previously, on RedDotRubyConf...
def hello | |
puts "hello world!" | |
end |