Module: Keyczar

Defined in:
lib/keyczar.rb,
lib/keyczar/version.rb

Constant Summary collapse

VERSION =
"0.0.1"

Class Method Summary collapse

Class Method Details

.load_jars!Object



10
11
12
13
14
15
16
# File 'lib/keyczar.rb', line 10

def self.load_jars!
  @load_jars ||= begin
    jars = Dir[ root + "jars/*.jar" ]
    jars.each { |jar| require jar }
    true
  end
end

.rootObject



6
7
8
# File 'lib/keyczar.rb', line 6

def self.root
  @root ||= Pathname(File.dirname File.expand_path(__FILE__))
end