Sha256: d485a75f03681968452f1c99f07c713fe38f0db40286cc99d9b29c54ed4e67e7
Contents?: true
Size: 1.36 KB
Versions: 1
Compression:
Stored size: 1.36 KB
Contents
require 'rubygems' Gem::Specification.new do |spec| spec.name = 'dbi-dbrc' spec.version = '1.3.0' spec.author = 'Daniel Berger' spec.email = 'djberg96@gmail.com' spec.license = 'Apache 2.0' spec.summary = 'A simple way to avoid hard-coding passwords with DBI' spec.homepage = 'https://github.com/djberg96/dbi-dbrc' spec.files = Dir['**/*'].reject{ |f| f.include?('git') } spec.test_files = Dir['test/test*.rb'] spec.cert_chain = ['certs/djberg96_pub.pem'] spec.extra_rdoc_files = ['README', 'CHANGES', 'MANIFEST'] spec.add_dependency('sys-admin') spec.add_development_dependency('test-unit') if File::ALT_SEPARATOR spec.add_dependency('win32-file-attributes') spec.add_dependency('win32-dir') spec.add_dependency('win32-process') spec.platform = Gem::Platform::CURRENT spec.platform.cpu = 'universal' end spec.description = <<-EOF The dbi-dbrc library provides an interface for storing database connection information, including passwords, in a locally secure file only accessible by you, or root. This allows you to avoid hard coding login and password information in your programs that require such information. This library can also be used to store login and password information for logins on remote hosts, not just databases. EOF end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dbi-dbrc-1.3.0-x86-mingw32 | dbi-dbrc.gemspec |