encrypted_strings 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/CHANGELOG +4 -0
  2. data/README +4 -4
  3. data/Rakefile +1 -2
  4. metadata +4 -12
data/CHANGELOG CHANGED
@@ -1,5 +1,9 @@
1
1
  *SVN*
2
2
 
3
+ *0.0.3* (September 18th, 2007)
4
+
5
+ * Remove gem dependency on activesupport
6
+
3
7
  *0.0.2* (August 23rd, 2007)
4
8
 
5
9
  * Fix not allowing the decryption mode to be overriden if the string already has an encryptor
data/README CHANGED
@@ -1,6 +1,6 @@
1
1
  = encrypted_strings
2
2
 
3
- encrypted_strings provides dead-simple string encryption/decryption syntax.
3
+ +encrypted_strings+ provides dead-simple string encryption/decryption syntax.
4
4
 
5
5
  == Resources
6
6
 
@@ -14,7 +14,7 @@ Wiki
14
14
 
15
15
  Announcement
16
16
 
17
- * http://www.pluginaweek.org/
17
+ * http://www.pluginaweek.org
18
18
 
19
19
  Source
20
20
 
@@ -51,7 +51,7 @@ Asymmetric modes.
51
51
  from ./script/../config/../config/../vendor/plugins/encrypted_strings/lib/encrypted_strings/extensions/string.rb:52:in `decrypt'
52
52
  from (irb):40
53
53
 
54
- When encrypt is called, it creates an encryptor instance which is used for
54
+ When encrypt is called, it creates an +encryptor+ instance which is used for
55
55
  future encryption and decryption of the string. The default encryptor uses
56
56
  SHA-1 encryption. For encryption modes that do not support decryption, equality
57
57
  with other strings is tested by encrypting the other string and checking whether
@@ -89,4 +89,4 @@ This plugin does not depend on the presence of any other plugins.
89
89
 
90
90
  == References
91
91
 
92
- * Rick Olson - http://svn.techno-weenie.net/projects/plugins/sentry/
92
+ * Rick Olson - sentry[http://svn.techno-weenie.net/projects/plugins/sentry]
data/Rakefile CHANGED
@@ -4,7 +4,7 @@ require 'rake/gempackagetask'
4
4
  require 'rake/contrib/sshpublisher'
5
5
 
6
6
  PKG_NAME = 'encrypted_strings'
7
- PKG_VERSION = '0.0.2'
7
+ PKG_VERSION = '0.0.3'
8
8
  PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
9
9
  RUBY_FORGE_PROJECT = 'pluginaweek'
10
10
 
@@ -38,7 +38,6 @@ spec = Gem::Specification.new do |s|
38
38
  s.autorequire = 'encrypted_strings'
39
39
  s.has_rdoc = true
40
40
  s.test_files = Dir['test/**/*_test.rb']
41
- s.add_dependency 'activesupport', '>= 1.3.1'
42
41
 
43
42
  s.author = 'Aaron Pfeifer, Neil Abraham'
44
43
  s.email = 'info@pluginaweek.org'
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.0
3
3
  specification_version: 1
4
4
  name: encrypted_strings
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.0.2
7
- date: 2007-08-23 00:00:00 -04:00
6
+ version: 0.0.3
7
+ date: 2007-09-18 00:00:00 -04:00
8
8
  summary: Dead-simple string encryption/decryption syntax.
9
9
  require_paths:
10
10
  - lib
@@ -78,13 +78,5 @@ extensions: []
78
78
 
79
79
  requirements: []
80
80
 
81
- dependencies:
82
- - !ruby/object:Gem::Dependency
83
- name: activesupport
84
- version_requirement:
85
- version_requirements: !ruby/object:Gem::Version::Requirement
86
- requirements:
87
- - - ">="
88
- - !ruby/object:Gem::Version
89
- version: 1.3.1
90
- version:
81
+ dependencies: []
82
+