Sha256: 238f088162674c456541a0465ac3592b576d5691242d1293ada508f9fd569487
Contents?: true
Size: 803 Bytes
Versions: 1
Compression:
Stored size: 803 Bytes
Contents
require 'rubygems' Gem::Specification.new do |gem| gem.name = 'crypt-fog' gem.version = '1.0.2' gem.author = 'Daniel J. Berger' gem.license = 'Artistic 2.0' gem.description = 'A simple string encryption scheme' gem.email = 'djberg96@gmail.com' gem.files = Dir['**/*'].reject{ |f| f.include?('git') } gem.test_files = ['test/test_crypt_fog.rb'] gem.homepage = 'https://github.com/djberg96/crypt-fog' gem.executables << 'fogenc' gem.extra_rdoc_files = ['README', 'CHANGES', 'MANIFEST'] gem.summary = <<-EOF crypt-fog is a simple encryption mechanism, but slightly better than Rot13. It's primary goal is to provide a reasonable amount of obfuscation without having to resort to public/private key exchanges, etc. EOF end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
crypt-fog-1.0.2 | crypt-fog.gemspec |