Skip to content

Commit

Permalink
Load gem dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
shuber committed Jan 14, 2009
1 parent db5fc30 commit c150536
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
2009-01-13 - Sean Huber (shuber@huberry.com)
* :marshal no longer defaults to true in ORM adapters
* Load gem dependencies

2009-01-12 - Sean Huber (shuber@huberry.com)
* Remove read_attribute and write_attribute methods - unnecessary
Expand Down
4 changes: 2 additions & 2 deletions attr_encrypted.gemspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Gem::Specification.new do |s|
s.name = 'attr_encrypted'
s.version = '1.0.5'
s.date = '2009-01-12'
s.version = '1.0.6'
s.date = '2009-01-13'

s.summary = 'Generates attr_accessors that encrypt and decrypt attributes transparently'
s.description = 'Generates attr_accessors that encrypt and decrypt attributes transparently'
Expand Down
6 changes: 6 additions & 0 deletions lib/attr_encrypted.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
gem 'shuber-eigenclass', '>= 1.0.1'
require 'eigenclass'

gem 'shuber-encryptor'
require 'encryptor'

require 'huberry/attr_encrypted/class'
Class.send :include, Huberry::AttrEncrypted::Class

Expand Down
3 changes: 1 addition & 2 deletions test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
require 'digest/sha2'

require 'rubygems'
gem 'shuber-eigenclass', '>= 1.0.1'
gem 'shuber-encryptor'

gem 'activerecord'
gem 'datamapper'
gem 'sequel'
Expand Down

0 comments on commit c150536

Please sign in to comment.