markbates / mack-more

All the extra stuff you could want for the Mack Framework.

This URL has Read+Write access

mack-more / mack-encryption / lib / mack-encryption.rb
100644 8 lines (6 sloc) 0.171 kb
1
2
3
4
5
6
7
8
require 'singleton'
require 'crypt/rijndael'
 
base = File.join(File.dirname(__FILE__), "mack-encryption")
 
Dir.glob(File.join(base, "**/*.rb")).each do |f|
  require f
end