pluginaweek-encrypted_strings 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4 @@
1
+ require 'test/unit'
2
+
3
+ $:.unshift(File.dirname(__FILE__) + '/../lib')
4
+ require File.dirname(__FILE__) + '/../init'
metadata ADDED
@@ -0,0 +1,79 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pluginaweek-encrypted_strings
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.3.2
5
+ platform: ruby
6
+ authors:
7
+ - Aaron Pfeifer
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-06-08 00:00:00 -07:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description: Dead-simple string encryption/decryption syntax
17
+ email: aaron@pluginaweek.org
18
+ executables: []
19
+
20
+ extensions: []
21
+
22
+ extra_rdoc_files: []
23
+
24
+ files:
25
+ - lib/encrypted_strings.rb
26
+ - lib/encrypted_strings
27
+ - lib/encrypted_strings/sha_cipher.rb
28
+ - lib/encrypted_strings/asymmetric_cipher.rb
29
+ - lib/encrypted_strings/symmetric_cipher.rb
30
+ - lib/encrypted_strings/extensions
31
+ - lib/encrypted_strings/extensions/string.rb
32
+ - lib/encrypted_strings/cipher.rb
33
+ - test/asymmetric_cipher_test.rb
34
+ - test/keys
35
+ - test/keys/private
36
+ - test/keys/encrypted_private
37
+ - test/keys/public
38
+ - test/sha_cipher_test.rb
39
+ - test/string_test.rb
40
+ - test/cipher_test.rb
41
+ - test/test_helper.rb
42
+ - test/symmetric_cipher_test.rb
43
+ - CHANGELOG.rdoc
44
+ - init.rb
45
+ - LICENSE
46
+ - Rakefile
47
+ - README.rdoc
48
+ has_rdoc: true
49
+ homepage: http://www.pluginaweek.org
50
+ post_install_message:
51
+ rdoc_options: []
52
+
53
+ require_paths:
54
+ - lib
55
+ required_ruby_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ version: "0"
60
+ version:
61
+ required_rubygems_version: !ruby/object:Gem::Requirement
62
+ requirements:
63
+ - - ">="
64
+ - !ruby/object:Gem::Version
65
+ version: "0"
66
+ version:
67
+ requirements: []
68
+
69
+ rubyforge_project: pluginaweek
70
+ rubygems_version: 1.2.0
71
+ signing_key:
72
+ specification_version: 2
73
+ summary: Dead-simple string encryption/decryption syntax
74
+ test_files:
75
+ - test/asymmetric_cipher_test.rb
76
+ - test/sha_cipher_test.rb
77
+ - test/string_test.rb
78
+ - test/cipher_test.rb
79
+ - test/symmetric_cipher_test.rb