Sha256: e656e1875e33b5380d12dfc3e9a7ac9f65f31bfa99c0c686e5df3d62471d04dd

Contents?: true

Size: 526 Bytes

Versions: 2

Compression:

Stored size: 526 Bytes

Contents

# Library to convert a String into a Password
module ToPass
  # version of gem, read directly from the VERSION-File
  VERSION = File.read(File.join(File.dirname(__FILE__), '../VERSION')).strip

  # name of gem
  APP_NAME = 'to_pass'

  autoload :Converter,         'lib/to_pass/converter'
  autoload :StringConversions, 'lib/to_pass/string_conversions'
  autoload :Base,              'lib/to_pass/base'
  autoload :Integration,       'lib/to_pass/integration'
  autoload :AlgorithmReader,   'lib/to_pass/algorithm_reader'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
to_pass-0.2.3 lib/to_pass.rb
to_pass-0.2.2 lib/to_pass.rb