dm-imap-adapter 0.0.1 → 0.0.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.
- data/README +4 -0
- data/VERSION +1 -1
- data/dm-imap-adapter.gemspec +1 -1
- data/lib/dm-imap-adapter.rb +7 -7
- metadata +1 -1
data/README
CHANGED
@@ -24,6 +24,10 @@ The specs currently assume you have a test account with test as the password on
|
|
24
24
|
How to use
|
25
25
|
==========
|
26
26
|
|
27
|
+
gem install gemcutter # unless you already have
|
28
|
+
gem tumble # unless you already have
|
29
|
+
gem install dm-imap-adapter
|
30
|
+
|
27
31
|
Check the specs!
|
28
32
|
|
29
33
|
Also, do this for your model:
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.2
|
data/dm-imap-adapter.gemspec
CHANGED
data/lib/dm-imap-adapter.rb
CHANGED
@@ -5,13 +5,13 @@ require File.dirname(__FILE__) + '/dm-imap-adapter/types'
|
|
5
5
|
|
6
6
|
### Hack for frozen object problem
|
7
7
|
|
8
|
-
module DataMapper
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
end
|
8
|
+
# module DataMapper
|
9
|
+
# module Resource
|
10
|
+
# def original_attributes
|
11
|
+
# @original_attributes || {} # Fix for frozen crap
|
12
|
+
# end
|
13
|
+
# end
|
14
|
+
# end
|
15
15
|
|
16
16
|
###
|
17
17
|
|