memotoo 2.0.2 → 2.0.3

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.
@@ -4,7 +4,7 @@
4
4
 
5
5
  The memotoo-gem is a soap(savon)-wrapper to (easy) access your {memotoo}[https://www.memotoo.com/index-saleshype.php] contacts.
6
6
 
7
- Add, get, search, modify, sync and delete your memotoo contacts, bookmarks, notes, event and tasks.
7
+ Add, get, search, modify, sync and delete all your memotoo objects e.g. contacts, bookmarks, notes, event and tasks.
8
8
 
9
9
  <b>Works now an Ruby 1.8.7 and Ruby 1.9.2 !!!</b>
10
10
 
@@ -18,18 +18,30 @@ you need a memotoo-credential (username/passwd) to use this gem
18
18
 
19
19
  if you use <b>bundler</b> add
20
20
  gem 'memotoo'
21
- to your Gemfile run
21
+ to your Gemfile and run
22
22
  bundle install
23
- else put it in your <b>environment.rb</b> and run
23
+ else put
24
+ config.gem "memotoo"
25
+ in your <b>environment.rb</b> and run
24
26
  rake gems:install
25
27
 
28
+ or just
29
+ gem install memotoo
30
+
26
31
  ==Use
27
32
 
28
- give a first try in ./script/console
33
+ give it a first try in irb
34
+
35
+ ruby-1.8.7-p334 :001 > require 'rubygems'
36
+ => true
37
+ ruby-1.8.7-p334 :002 > require 'memotoo'
38
+ => true
39
+
40
+ or ./script/console (in your app-folder)
29
41
 
30
42
  @connect=Memotoo.new("myusername","mypassword")
31
43
 
32
- Changelog: (prev V 2.0 I wrapped it in a Module )
44
+ Changelog: (prev V 2.0 I wrapped it in a module )
33
45
  @connect=Memotoo::Connect.new("myusername","mypassword")
34
46
 
35
47
  add a contact:
@@ -99,7 +111,7 @@ get...Sync:: datetime, format YYYY-MM-DD HH:MM:SS - "2010-02-23 10:00:00"
99
111
  modify:: id of record, integer
100
112
  add and modify:: need always the object requirements
101
113
 
102
- Be careful with used dates:
114
+ Be careful with dateformats:
103
115
 
104
116
  Holiday::
105
117
  dateBegin:: "2011-01-01", Format: YYYY-MM-DD
@@ -145,6 +157,10 @@ and memotoo api-documentation
145
157
 
146
158
  https://www.memotoo.com/index.php?rub=api#SOAP-server.php
147
159
 
160
+ == Changelog V. 2.0.3
161
+
162
+ All tests pass now - everything works fine :-)
163
+
148
164
  == Changelog V. 2.0.2
149
165
 
150
166
  Easy configuring logging options
@@ -158,19 +174,6 @@ some code refactoring and support for ruby >=1.9.2
158
174
  I create all methods now dynamically. This reduced the code dramatically.
159
175
  I give up using a module to wrap the namespace. Now it's a class.
160
176
 
161
- == Hint
162
-
163
- Be careful with following methods due to a problem at memotoo's api:
164
-
165
- searchBookmarkFolder:: (possible workaround: search for all -> " " and then go ahead)
166
-
167
- getHoliday:: (possible workaround: search and use the result)
168
- getHolidaySync (no workaround known)
169
-
170
- All three methods seems not to be really important - just fyi
171
-
172
- I will remove this hint when the soap-api is repaired.
173
-
174
177
  == Contributing to memotoo-gem
175
178
 
176
179
  * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.0.2
1
+ 2.0.3
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{memotoo}
8
- s.version = "2.0.2"
8
+ s.version = "2.0.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Karsten Redmer"]
12
- s.date = %q{2011-06-16}
12
+ s.date = %q{2011-08-11}
13
13
  s.description = %q{Unofficial gem for connecting to memotoo.com with their soap-api and handle your contact needs. Memotoo lets your synchronize all your contacts, events and tasks with yahoo, gmail, facebook, xing, outlook, your mobile-phone and more. You can also get your e-mails in one place.Features of memotoo:
14
14
  New mobile? Transfer all your data to your new device!
15
15
  Synchronise your data with your mobile phone (with SyncML)
@@ -2,8 +2,6 @@ require File.expand_path('./test/helper')
2
2
 
3
3
  class TestMemotoo < Test::Unit::TestCase
4
4
 
5
- # api-problem in: BookmarkFolder, Holiday -> reportet to Thomas Pequet on 12.July 2011
6
-
7
5
  soapobjects = %w{Contact}
8
6
  # uncomment this to test all soapobjects
9
7
  #soapobjects = %w{Contact ContactGroup Bookmark Note CalendarCategory Event Task}
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: memotoo
3
3
  version: !ruby/object:Gem::Version
4
- hash: 11
4
+ hash: 9
5
5
  prerelease:
6
6
  segments:
7
7
  - 2
8
8
  - 0
9
- - 2
10
- version: 2.0.2
9
+ - 3
10
+ version: 2.0.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Karsten Redmer
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-06-16 00:00:00 +02:00
18
+ date: 2011-08-11 00:00:00 +02:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency