Sha256: bf80912cc3afd71b14344e7581cf13146116cd5624172e8f9165b508261bc81e
Contents?: true
Size: 1.33 KB
Versions: 1
Compression:
Stored size: 1.33 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 | dbi-dbrc.gemspec |