Sha256: 09ed7e2bdf49f281f3d581a417505cfb801df3d85fd2e8cc4e7bfd58982eece9

Contents?: true

Size: 681 Bytes

Versions: 2

Compression:

Stored size: 681 Bytes

Contents

# -*- coding: utf-8 -*-
# vim:ft=ruby:enc=utf-8

# 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 :AlgorithmReader,   'lib/to_pass/algorithm_reader'
  autoload :Base,              'lib/to_pass/base'
  autoload :Cli,               'lib/to_pass/cli.rb'
  autoload :Converter,         'lib/to_pass/converter'
  autoload :ConverterReader,   'lib/to_pass/converter_reader'
  autoload :Converters,        'lib/to_pass/converters'
  autoload :Integration,       'lib/to_pass/integration'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
to_pass-0.5.0 lib/to_pass.rb
to_pass-0.4.0 lib/to_pass.rb