rexchange 0.3.2 → 0.3.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/RAKEFILE +1 -1
  3. data/lib/rexchange/folder.rb +1 -1
  4. metadata +2 -2
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ -- 0.3.3:
2
+ * Folder objects now default to using the Message class for enumeration
3
+ if no class is associated with the content_type of the Folder.
4
+
1
5
  -- 0.3.2:
2
6
  * Quick hack to make Message#move_to work
3
7
 
data/RAKEFILE CHANGED
@@ -8,7 +8,7 @@ require 'rake/gempackagetask'
8
8
  require 'rake/contrib/rubyforgepublisher'
9
9
  require 'pscp'
10
10
 
11
- PACKAGE_VERSION = '0.3.2'
11
+ PACKAGE_VERSION = '0.3.3'
12
12
 
13
13
  PACKAGE_FILES = FileList[
14
14
  'README',
@@ -19,7 +19,7 @@ module RExchange
19
19
 
20
20
  def initialize(credentials, parent, name, content_type)
21
21
  @credentials, @parent, @name = credentials, parent, name
22
- @content_type = CONTENT_TYPES[content_type]
22
+ @content_type = CONTENT_TYPES[content_type] || Message
23
23
  end
24
24
 
25
25
  # Used to access subfolders.
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.0
3
3
  specification_version: 1
4
4
  name: rexchange
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.3.2
7
- date: 2007-01-09 00:00:00 -06:00
6
+ version: 0.3.3
7
+ date: 2007-01-10 00:00:00 -06:00
8
8
  summary: A simple wrapper around Microsoft Exchange Server's WebDAV API
9
9
  require_paths:
10
10
  - lib