rubysync 0.0.2 → 0.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.
- data/.DS_Store +0 -0
- data/.project +17 -0
- data/COPYING +339 -0
- data/HISTORY.txt +8 -0
- data/Manifest.txt +218 -0
- data/README.txt +67 -0
- data/Rakefile +31 -0
- data/bin/.DS_Store +0 -0
- data/bin/rubysync +19 -12
- data/examples/.DS_Store +0 -0
- data/examples/ar_client_webapp/log/development.log +753 -0
- data/examples/ar_client_webapp/log/production.log +0 -0
- data/examples/ar_client_webapp/log/server.log +0 -0
- data/examples/ar_client_webapp/log/test.log +0 -0
- data/examples/ar_client_webapp/public/.htaccess +40 -0
- data/examples/ar_client_webapp/tmp/sessions/ruby_sess.e2e3c63a67baef6d +0 -0
- data/examples/ar_webapp/.DS_Store +0 -0
- data/examples/ar_webapp/app/.DS_Store +0 -0
- data/examples/ar_webapp/app/views/.DS_Store +0 -0
- data/examples/ar_webapp/app/views/people/.DS_Store +0 -0
- data/examples/ar_webapp/log/development.log +5518 -0
- data/examples/ar_webapp/log/production.log +0 -0
- data/examples/ar_webapp/log/server.log +0 -0
- data/examples/ar_webapp/log/test.log +2178 -0
- data/examples/ar_webapp/public/.htaccess +40 -0
- data/examples/ar_webapp/tmp/sessions/ruby_sess.2295696b0af5f6dd +0 -0
- data/examples/ar_webapp/tmp/sessions/ruby_sess.26687aeb19c87669 +0 -0
- data/examples/ar_webapp/tmp/sessions/ruby_sess.2855a3b0c8ea840b +0 -0
- data/examples/ar_webapp/tmp/sessions/ruby_sess.45d2d48a8330ff28 +0 -0
- data/examples/ar_webapp/tmp/sessions/ruby_sess.7366b840f4ce9f12 +0 -0
- data/examples/ar_webapp/tmp/sessions/ruby_sess.b2fc3f2e6d8ae555 +0 -0
- data/examples/ar_webapp/tmp/sessions/ruby_sess.b6bf8470a62c02b0 +0 -0
- data/examples/my_ims/.DS_Store +0 -0
- data/gemspec +48 -0
- data/lib/.DS_Store +0 -0
- data/lib/net/.DS_Store +0 -0
- data/lib/ruby_sync/connectors/active_record_association_handler.rb +66 -0
- data/lib/ruby_sync/connectors/active_record_connector.rb +14 -62
- data/lib/ruby_sync/connectors/active_record_event_handler.rb +47 -0
- data/lib/ruby_sync/connectors/base_connector.rb +139 -36
- data/lib/ruby_sync/connectors/connector_event_processing.rb +18 -0
- data/lib/ruby_sync/connectors/csv_file_connector.rb +3 -0
- data/lib/ruby_sync/connectors/file_connector.rb +1 -0
- data/lib/ruby_sync/connectors/memory_connector.rb +2 -104
- data/lib/ruby_sync/connectors/xml_connector.rb +98 -0
- data/lib/ruby_sync/event.rb +7 -1
- data/lib/ruby_sync/util/utilities.rb +27 -16
- data/lib/ruby_sync.rb +10 -1
- data/lib/rubysync.rb +19 -0
- data/nbproject/private/private.properties +3 -0
- data/nbproject/project.properties +8 -0
- data/nbproject/project.xml +16 -0
- data/rubysync.tmproj +348 -0
- data/test/.DS_Store +0 -0
- data/test/ruby_sync_test.rb +8 -1
- data/test/tc_xml_connectors.rb +47 -0
- data/test/test_active_record_vault.rb +17 -14
- data/test/test_base_connector.rb +38 -0
- data/test/test_ldap_changelog.rb +97 -0
- data/test/test_ldap_connector.rb +2 -48
- data/test/test_memory_connectors.rb +8 -3
- data/test/test_rubysync.rb +28 -0
- data/test/ts_rubysync.rb +5 -3
- metadata +129 -169
@@ -0,0 +1,28 @@
|
|
1
|
+
#!/usr/bin/env ruby -w
|
2
|
+
#
|
3
|
+
# Copyright (c) 2007 Ritchie Young. All rights reserved.
|
4
|
+
#
|
5
|
+
# This file is part of RubySync.
|
6
|
+
#
|
7
|
+
# RubySync is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License
|
8
|
+
# as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
|
9
|
+
#
|
10
|
+
# RubySync is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
11
|
+
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU General Public License along with RubySync; if not, write to the
|
14
|
+
# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
15
|
+
|
16
|
+
|
17
|
+
lib_path = File.dirname(__FILE__) + '/../lib'
|
18
|
+
$:.unshift lib_path unless $:.include?(lib_path) || $:.include?(File.expand_path(lib_path))
|
19
|
+
|
20
|
+
require 'ruby_sync'
|
21
|
+
require 'test/unit'
|
22
|
+
|
23
|
+
require 'test_csv_file_connector'
|
24
|
+
require 'test_memory_connectors'
|
25
|
+
require 'test_ldif'
|
26
|
+
require 'test_base_pipeline'
|
27
|
+
#require 'test_ldap_connector'
|
28
|
+
#require 'test_active_record_connector'
|
data/test/ts_rubysync.rb
CHANGED
@@ -14,7 +14,9 @@
|
|
14
14
|
# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
15
15
|
|
16
16
|
require 'test/unit'
|
17
|
+
#require 'test_csv_file_connector'
|
17
18
|
require 'test_memory_connectors'
|
18
|
-
require '
|
19
|
-
require '
|
20
|
-
require '
|
19
|
+
require 'test_ldif'
|
20
|
+
require 'test_base_pipeline'
|
21
|
+
#require 'test_ldap_connector'
|
22
|
+
#require 'test_active_record_connector'
|
metadata
CHANGED
@@ -3,17 +3,17 @@ rubygems_version: 0.9.0
|
|
3
3
|
specification_version: 1
|
4
4
|
name: rubysync
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.0.
|
7
|
-
date: 2007-
|
6
|
+
version: 0.0.3
|
7
|
+
date: 2007-08-27 00:00:00 +08:00
|
8
8
|
summary: Event driven identity synchronization engine
|
9
9
|
require_paths:
|
10
10
|
- lib
|
11
11
|
email: ritchiey@gmail.com
|
12
|
-
homepage:
|
12
|
+
homepage: " by Ritchie Young"
|
13
13
|
rubyforge_project: rubysync
|
14
|
-
description:
|
15
|
-
autorequire:
|
16
|
-
default_executable:
|
14
|
+
description: "You can configure RubySync to perform transformations on the data as it syncs. RubySync is designed both as a handy utility to pack into your directory management toolkit or as a fully-fledged provisioning system for your organisation. == FEATURES/PROBLEMS: * Add support for running continually * Test suites. Individual tests work but test suites have trouble ??? == SYNOPSIS: This sets up the skeleton of a configuration for importing comma delimeted text files into a database. Note, if the application happens to be a Rails app then it can also export changes."
|
15
|
+
autorequire:
|
16
|
+
default_executable:
|
17
17
|
bindir: bin
|
18
18
|
has_rdoc: true
|
19
19
|
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
@@ -29,146 +29,74 @@ post_install_message:
|
|
29
29
|
authors:
|
30
30
|
- Ritchie Young
|
31
31
|
files:
|
32
|
+
- .DS_Store
|
33
|
+
- .project
|
34
|
+
- COPYING
|
35
|
+
- HISTORY.txt
|
36
|
+
- Manifest.txt
|
37
|
+
- README.txt
|
38
|
+
- Rakefile
|
39
|
+
- bin/.DS_Store
|
32
40
|
- bin/rubysync
|
33
|
-
-
|
34
|
-
- lib/ruby_sync
|
35
|
-
- lib/ruby_sync.rb
|
36
|
-
- lib/net/ldif.rb
|
37
|
-
- lib/ruby_sync/connectors
|
38
|
-
- lib/ruby_sync/event.rb
|
39
|
-
- lib/ruby_sync/operation.rb
|
40
|
-
- lib/ruby_sync/pipelines
|
41
|
-
- lib/ruby_sync/util
|
42
|
-
- lib/ruby_sync/connectors/active_record_connector.rb
|
43
|
-
- lib/ruby_sync/connectors/base_connector.rb
|
44
|
-
- lib/ruby_sync/connectors/connector_event_processing.rb
|
45
|
-
- lib/ruby_sync/connectors/csv_file_connector.rb
|
46
|
-
- lib/ruby_sync/connectors/file_connector.rb
|
47
|
-
- lib/ruby_sync/connectors/ldap_connector.rb
|
48
|
-
- lib/ruby_sync/connectors/memory_connector.rb
|
49
|
-
- lib/ruby_sync/pipelines/base_pipeline.rb
|
50
|
-
- lib/ruby_sync/util/metaid.rb
|
51
|
-
- lib/ruby_sync/util/utilities.rb
|
52
|
-
- test/data
|
53
|
-
- test/hashlike_tests.rb
|
54
|
-
- test/ruby_sync_test.rb
|
55
|
-
- test/test_active_record_vault.rb
|
56
|
-
- test/test_base_pipeline.rb
|
57
|
-
- test/test_csv_file_connector.rb
|
58
|
-
- test/test_event.rb
|
59
|
-
- test/test_ldap_connector.rb
|
60
|
-
- test/test_ldap_vault.rb
|
61
|
-
- test/test_ldif.rb
|
62
|
-
- test/test_memory_connectors.rb
|
63
|
-
- test/test_utilities.rb
|
64
|
-
- test/ts_rubysync.rb
|
65
|
-
- test/data/example1.ldif
|
66
|
-
- test/data/example2.ldif
|
67
|
-
- test/data/example3.ldif
|
68
|
-
- test/data/example4.ldif
|
69
|
-
- test/data/example5.ldif
|
70
|
-
- test/data/example6.ldif
|
71
|
-
- test/data/example7.ldif
|
72
|
-
- examples/ar_client_webapp
|
73
|
-
- examples/ar_webapp
|
74
|
-
- examples/ims2
|
75
|
-
- examples/my_ims
|
76
|
-
- examples/ar_client_webapp/app
|
77
|
-
- examples/ar_client_webapp/components
|
78
|
-
- examples/ar_client_webapp/config
|
79
|
-
- examples/ar_client_webapp/db
|
80
|
-
- examples/ar_client_webapp/doc
|
81
|
-
- examples/ar_client_webapp/lib
|
82
|
-
- examples/ar_client_webapp/public
|
83
|
-
- examples/ar_client_webapp/Rakefile
|
41
|
+
- examples/.DS_Store
|
84
42
|
- examples/ar_client_webapp/README
|
85
|
-
- examples/ar_client_webapp/
|
86
|
-
- examples/ar_client_webapp/test
|
87
|
-
- examples/ar_client_webapp/vendor
|
88
|
-
- examples/ar_client_webapp/app/controllers
|
89
|
-
- examples/ar_client_webapp/app/helpers
|
90
|
-
- examples/ar_client_webapp/app/models
|
91
|
-
- examples/ar_client_webapp/app/views
|
43
|
+
- examples/ar_client_webapp/Rakefile
|
92
44
|
- examples/ar_client_webapp/app/controllers/application.rb
|
93
45
|
- examples/ar_client_webapp/app/controllers/user_controller.rb
|
94
46
|
- examples/ar_client_webapp/app/helpers/application_helper.rb
|
95
47
|
- examples/ar_client_webapp/app/helpers/user_helper.rb
|
96
48
|
- examples/ar_client_webapp/app/models/user.rb
|
97
|
-
- examples/ar_client_webapp/app/views/layouts
|
98
|
-
- examples/ar_client_webapp/app/views/user
|
99
49
|
- examples/ar_client_webapp/config/boot.rb
|
100
50
|
- examples/ar_client_webapp/config/database.yml
|
101
51
|
- examples/ar_client_webapp/config/environment.rb
|
102
|
-
- examples/ar_client_webapp/config/environments
|
103
|
-
- examples/ar_client_webapp/config/routes.rb
|
104
52
|
- examples/ar_client_webapp/config/environments/development.rb
|
105
53
|
- examples/ar_client_webapp/config/environments/production.rb
|
106
54
|
- examples/ar_client_webapp/config/environments/test.rb
|
107
|
-
- examples/ar_client_webapp/
|
108
|
-
- examples/ar_client_webapp/db/schema.rb
|
55
|
+
- examples/ar_client_webapp/config/routes.rb
|
109
56
|
- examples/ar_client_webapp/db/migrate/001_create_users.rb
|
57
|
+
- examples/ar_client_webapp/db/schema.rb
|
110
58
|
- examples/ar_client_webapp/doc/README_FOR_APP
|
111
|
-
- examples/ar_client_webapp/
|
59
|
+
- examples/ar_client_webapp/log/development.log
|
60
|
+
- examples/ar_client_webapp/log/production.log
|
61
|
+
- examples/ar_client_webapp/log/server.log
|
62
|
+
- examples/ar_client_webapp/log/test.log
|
63
|
+
- examples/ar_client_webapp/public/.htaccess
|
112
64
|
- examples/ar_client_webapp/public/404.html
|
113
65
|
- examples/ar_client_webapp/public/500.html
|
114
66
|
- examples/ar_client_webapp/public/dispatch.cgi
|
115
67
|
- examples/ar_client_webapp/public/dispatch.fcgi
|
116
68
|
- examples/ar_client_webapp/public/dispatch.rb
|
117
69
|
- examples/ar_client_webapp/public/favicon.ico
|
118
|
-
- examples/ar_client_webapp/public/images
|
119
|
-
- examples/ar_client_webapp/public/index.html
|
120
|
-
- examples/ar_client_webapp/public/javascripts
|
121
|
-
- examples/ar_client_webapp/public/robots.txt
|
122
|
-
- examples/ar_client_webapp/public/stylesheets
|
123
70
|
- examples/ar_client_webapp/public/images/rails.png
|
71
|
+
- examples/ar_client_webapp/public/index.html
|
124
72
|
- examples/ar_client_webapp/public/javascripts/application.js
|
125
73
|
- examples/ar_client_webapp/public/javascripts/controls.js
|
126
74
|
- examples/ar_client_webapp/public/javascripts/dragdrop.js
|
127
75
|
- examples/ar_client_webapp/public/javascripts/effects.js
|
128
76
|
- examples/ar_client_webapp/public/javascripts/prototype.js
|
77
|
+
- examples/ar_client_webapp/public/robots.txt
|
129
78
|
- examples/ar_client_webapp/script/about
|
130
79
|
- examples/ar_client_webapp/script/breakpointer
|
131
80
|
- examples/ar_client_webapp/script/console
|
132
81
|
- examples/ar_client_webapp/script/destroy
|
133
82
|
- examples/ar_client_webapp/script/generate
|
134
|
-
- examples/ar_client_webapp/script/performance
|
135
|
-
- examples/ar_client_webapp/script/plugin
|
136
|
-
- examples/ar_client_webapp/script/process
|
137
|
-
- examples/ar_client_webapp/script/runner
|
138
|
-
- examples/ar_client_webapp/script/server
|
139
83
|
- examples/ar_client_webapp/script/performance/benchmarker
|
140
84
|
- examples/ar_client_webapp/script/performance/profiler
|
85
|
+
- examples/ar_client_webapp/script/plugin
|
141
86
|
- examples/ar_client_webapp/script/process/inspector
|
142
87
|
- examples/ar_client_webapp/script/process/reaper
|
143
88
|
- examples/ar_client_webapp/script/process/spawner
|
144
|
-
- examples/ar_client_webapp/
|
145
|
-
- examples/ar_client_webapp/
|
146
|
-
- examples/ar_client_webapp/test/integration
|
147
|
-
- examples/ar_client_webapp/test/mocks
|
148
|
-
- examples/ar_client_webapp/test/test_helper.rb
|
149
|
-
- examples/ar_client_webapp/test/unit
|
89
|
+
- examples/ar_client_webapp/script/runner
|
90
|
+
- examples/ar_client_webapp/script/server
|
150
91
|
- examples/ar_client_webapp/test/fixtures/users.yml
|
151
92
|
- examples/ar_client_webapp/test/functional/user_controller_test.rb
|
152
|
-
- examples/ar_client_webapp/test/
|
153
|
-
- examples/ar_client_webapp/test/mocks/test
|
93
|
+
- examples/ar_client_webapp/test/test_helper.rb
|
154
94
|
- examples/ar_client_webapp/test/unit/user_test.rb
|
155
|
-
- examples/ar_client_webapp/
|
156
|
-
- examples/ar_webapp
|
157
|
-
- examples/ar_webapp/components
|
158
|
-
- examples/ar_webapp/config
|
159
|
-
- examples/ar_webapp/db
|
160
|
-
- examples/ar_webapp/doc
|
161
|
-
- examples/ar_webapp/lib
|
162
|
-
- examples/ar_webapp/public
|
163
|
-
- examples/ar_webapp/Rakefile
|
95
|
+
- examples/ar_client_webapp/tmp/sessions/ruby_sess.e2e3c63a67baef6d
|
96
|
+
- examples/ar_webapp/.DS_Store
|
164
97
|
- examples/ar_webapp/README
|
165
|
-
- examples/ar_webapp/
|
166
|
-
- examples/ar_webapp/
|
167
|
-
- examples/ar_webapp/vendor
|
168
|
-
- examples/ar_webapp/app/controllers
|
169
|
-
- examples/ar_webapp/app/helpers
|
170
|
-
- examples/ar_webapp/app/models
|
171
|
-
- examples/ar_webapp/app/views
|
98
|
+
- examples/ar_webapp/Rakefile
|
99
|
+
- examples/ar_webapp/app/.DS_Store
|
172
100
|
- examples/ar_webapp/app/controllers/application.rb
|
173
101
|
- examples/ar_webapp/app/controllers/hobbies_controller.rb
|
174
102
|
- examples/ar_webapp/app/controllers/interests_controller.rb
|
@@ -184,20 +112,17 @@ files:
|
|
184
112
|
- examples/ar_webapp/app/models/ruby_sync_operation.rb
|
185
113
|
- examples/ar_webapp/app/models/ruby_sync_state.rb
|
186
114
|
- examples/ar_webapp/app/models/ruby_sync_value.rb
|
187
|
-
- examples/ar_webapp/app/views
|
188
|
-
- examples/ar_webapp/app/views/people
|
115
|
+
- examples/ar_webapp/app/views/.DS_Store
|
189
116
|
- examples/ar_webapp/app/views/layouts/application.rhtml
|
117
|
+
- examples/ar_webapp/app/views/people/.DS_Store
|
190
118
|
- examples/ar_webapp/app/views/people/show.rhtml
|
191
119
|
- examples/ar_webapp/config/boot.rb
|
192
120
|
- examples/ar_webapp/config/database.yml
|
193
121
|
- examples/ar_webapp/config/environment.rb
|
194
|
-
- examples/ar_webapp/config/environments
|
195
|
-
- examples/ar_webapp/config/routes.rb
|
196
122
|
- examples/ar_webapp/config/environments/development.rb
|
197
123
|
- examples/ar_webapp/config/environments/production.rb
|
198
124
|
- examples/ar_webapp/config/environments/test.rb
|
199
|
-
- examples/ar_webapp/
|
200
|
-
- examples/ar_webapp/db/schema.rb
|
125
|
+
- examples/ar_webapp/config/routes.rb
|
201
126
|
- examples/ar_webapp/db/migrate/001_create_people.rb
|
202
127
|
- examples/ar_webapp/db/migrate/002_create_interests.rb
|
203
128
|
- examples/ar_webapp/db/migrate/003_create_hobbies.rb
|
@@ -207,46 +132,40 @@ files:
|
|
207
132
|
- examples/ar_webapp/db/migrate/007_create_ruby_sync_values.rb
|
208
133
|
- examples/ar_webapp/db/migrate/008_ruby_sync_tracking.rb
|
209
134
|
- examples/ar_webapp/db/migrate/009_create_ruby_sync_states.rb
|
135
|
+
- examples/ar_webapp/db/schema.rb
|
210
136
|
- examples/ar_webapp/doc/README_FOR_APP
|
211
|
-
- examples/ar_webapp/
|
137
|
+
- examples/ar_webapp/log/development.log
|
138
|
+
- examples/ar_webapp/log/production.log
|
139
|
+
- examples/ar_webapp/log/server.log
|
140
|
+
- examples/ar_webapp/log/test.log
|
141
|
+
- examples/ar_webapp/public/.htaccess
|
212
142
|
- examples/ar_webapp/public/404.html
|
213
143
|
- examples/ar_webapp/public/500.html
|
214
144
|
- examples/ar_webapp/public/dispatch.cgi
|
215
145
|
- examples/ar_webapp/public/dispatch.fcgi
|
216
146
|
- examples/ar_webapp/public/dispatch.rb
|
217
147
|
- examples/ar_webapp/public/favicon.ico
|
218
|
-
- examples/ar_webapp/public/images
|
219
|
-
- examples/ar_webapp/public/index.html
|
220
|
-
- examples/ar_webapp/public/javascripts
|
221
|
-
- examples/ar_webapp/public/robots.txt
|
222
|
-
- examples/ar_webapp/public/stylesheets
|
223
148
|
- examples/ar_webapp/public/images/rails.png
|
149
|
+
- examples/ar_webapp/public/index.html
|
224
150
|
- examples/ar_webapp/public/javascripts/application.js
|
225
151
|
- examples/ar_webapp/public/javascripts/controls.js
|
226
152
|
- examples/ar_webapp/public/javascripts/dragdrop.js
|
227
153
|
- examples/ar_webapp/public/javascripts/effects.js
|
228
154
|
- examples/ar_webapp/public/javascripts/prototype.js
|
155
|
+
- examples/ar_webapp/public/robots.txt
|
229
156
|
- examples/ar_webapp/script/about
|
230
157
|
- examples/ar_webapp/script/breakpointer
|
231
158
|
- examples/ar_webapp/script/console
|
232
159
|
- examples/ar_webapp/script/destroy
|
233
160
|
- examples/ar_webapp/script/generate
|
234
|
-
- examples/ar_webapp/script/performance
|
235
|
-
- examples/ar_webapp/script/plugin
|
236
|
-
- examples/ar_webapp/script/process
|
237
|
-
- examples/ar_webapp/script/runner
|
238
|
-
- examples/ar_webapp/script/server
|
239
161
|
- examples/ar_webapp/script/performance/benchmarker
|
240
162
|
- examples/ar_webapp/script/performance/profiler
|
163
|
+
- examples/ar_webapp/script/plugin
|
241
164
|
- examples/ar_webapp/script/process/inspector
|
242
165
|
- examples/ar_webapp/script/process/reaper
|
243
166
|
- examples/ar_webapp/script/process/spawner
|
244
|
-
- examples/ar_webapp/
|
245
|
-
- examples/ar_webapp/
|
246
|
-
- examples/ar_webapp/test/integration
|
247
|
-
- examples/ar_webapp/test/mocks
|
248
|
-
- examples/ar_webapp/test/test_helper.rb
|
249
|
-
- examples/ar_webapp/test/unit
|
167
|
+
- examples/ar_webapp/script/runner
|
168
|
+
- examples/ar_webapp/script/server
|
250
169
|
- examples/ar_webapp/test/fixtures/association_keys.yml
|
251
170
|
- examples/ar_webapp/test/fixtures/hobbies.yml
|
252
171
|
- examples/ar_webapp/test/fixtures/interests.yml
|
@@ -255,8 +174,7 @@ files:
|
|
255
174
|
- examples/ar_webapp/test/fixtures/ruby_sync_operations.yml
|
256
175
|
- examples/ar_webapp/test/fixtures/ruby_sync_states.yml
|
257
176
|
- examples/ar_webapp/test/fixtures/ruby_sync_values.yml
|
258
|
-
- examples/ar_webapp/test/
|
259
|
-
- examples/ar_webapp/test/mocks/test
|
177
|
+
- examples/ar_webapp/test/test_helper.rb
|
260
178
|
- examples/ar_webapp/test/unit/association_key_test.rb
|
261
179
|
- examples/ar_webapp/test/unit/hobby_test.rb
|
262
180
|
- examples/ar_webapp/test/unit/interest_test.rb
|
@@ -266,24 +184,93 @@ files:
|
|
266
184
|
- examples/ar_webapp/test/unit/ruby_sync_operation_test.rb
|
267
185
|
- examples/ar_webapp/test/unit/ruby_sync_state_test.rb
|
268
186
|
- examples/ar_webapp/test/unit/ruby_sync_value_test.rb
|
269
|
-
- examples/ar_webapp/
|
270
|
-
- examples/
|
271
|
-
- examples/
|
187
|
+
- examples/ar_webapp/tmp/sessions/ruby_sess.2295696b0af5f6dd
|
188
|
+
- examples/ar_webapp/tmp/sessions/ruby_sess.26687aeb19c87669
|
189
|
+
- examples/ar_webapp/tmp/sessions/ruby_sess.2855a3b0c8ea840b
|
190
|
+
- examples/ar_webapp/tmp/sessions/ruby_sess.45d2d48a8330ff28
|
191
|
+
- examples/ar_webapp/tmp/sessions/ruby_sess.7366b840f4ce9f12
|
192
|
+
- examples/ar_webapp/tmp/sessions/ruby_sess.b2fc3f2e6d8ae555
|
193
|
+
- examples/ar_webapp/tmp/sessions/ruby_sess.b6bf8470a62c02b0
|
272
194
|
- examples/ims2/connectors/hr_db_connector.rb
|
273
195
|
- examples/ims2/connectors/my_csv_connector.rb
|
274
196
|
- examples/ims2/pipelines/hr_import_pipeline.rb
|
275
|
-
- examples/my_ims
|
276
|
-
- examples/my_ims/pipelines
|
197
|
+
- examples/my_ims/.DS_Store
|
277
198
|
- examples/my_ims/connectors/my_csv_connector.rb
|
278
199
|
- examples/my_ims/connectors/my_db_connector.rb
|
279
200
|
- examples/my_ims/pipelines/my_pipeline.rb
|
280
|
-
|
201
|
+
- gemspec
|
202
|
+
- lib/.DS_Store
|
203
|
+
- lib/net/.DS_Store
|
204
|
+
- lib/net/ldif.rb
|
205
|
+
- lib/ruby_sync.rb
|
206
|
+
- lib/ruby_sync/connectors/active_record_association_handler.rb
|
207
|
+
- lib/ruby_sync/connectors/active_record_connector.rb
|
208
|
+
- lib/ruby_sync/connectors/active_record_event_handler.rb
|
209
|
+
- lib/ruby_sync/connectors/base_connector.rb
|
210
|
+
- lib/ruby_sync/connectors/connector_event_processing.rb
|
211
|
+
- lib/ruby_sync/connectors/csv_file_connector.rb
|
212
|
+
- lib/ruby_sync/connectors/file_connector.rb
|
213
|
+
- lib/ruby_sync/connectors/ldap_connector.rb
|
214
|
+
- lib/ruby_sync/connectors/memory_connector.rb
|
215
|
+
- lib/ruby_sync/connectors/xml_connector.rb
|
216
|
+
- lib/ruby_sync/event.rb
|
217
|
+
- lib/ruby_sync/operation.rb
|
218
|
+
- lib/ruby_sync/pipelines/base_pipeline.rb
|
219
|
+
- lib/ruby_sync/util/metaid.rb
|
220
|
+
- lib/ruby_sync/util/utilities.rb
|
221
|
+
- lib/rubysync.rb
|
222
|
+
- nbproject/private/private.properties
|
223
|
+
- nbproject/project.properties
|
224
|
+
- nbproject/project.xml
|
225
|
+
- rubysync.tmproj
|
226
|
+
- test/.DS_Store
|
227
|
+
- test/data/example1.ldif
|
228
|
+
- test/data/example2.ldif
|
229
|
+
- test/data/example3.ldif
|
230
|
+
- test/data/example4.ldif
|
231
|
+
- test/data/example5.ldif
|
232
|
+
- test/data/example6.ldif
|
233
|
+
- test/data/example7.ldif
|
234
|
+
- test/hashlike_tests.rb
|
235
|
+
- test/ruby_sync_test.rb
|
236
|
+
- test/tc_xml_connectors.rb
|
237
|
+
- test/test_active_record_vault.rb
|
238
|
+
- test/test_base_connector.rb
|
239
|
+
- test/test_base_pipeline.rb
|
240
|
+
- test/test_csv_file_connector.rb
|
241
|
+
- test/test_event.rb
|
242
|
+
- test/test_ldap_changelog.rb
|
243
|
+
- test/test_ldap_connector.rb
|
244
|
+
- test/test_ldap_vault.rb
|
245
|
+
- test/test_ldif.rb
|
246
|
+
- test/test_memory_connectors.rb
|
247
|
+
- test/test_rubysync.rb
|
248
|
+
- test/test_utilities.rb
|
281
249
|
- test/ts_rubysync.rb
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
250
|
+
test_files:
|
251
|
+
- test/test_active_record_vault.rb
|
252
|
+
- test/test_base_connector.rb
|
253
|
+
- test/test_base_pipeline.rb
|
254
|
+
- test/test_csv_file_connector.rb
|
255
|
+
- test/test_event.rb
|
256
|
+
- test/test_ldap_changelog.rb
|
257
|
+
- test/test_ldap_connector.rb
|
258
|
+
- test/test_ldap_vault.rb
|
259
|
+
- test/test_ldif.rb
|
260
|
+
- test/test_memory_connectors.rb
|
261
|
+
- test/test_rubysync.rb
|
262
|
+
- test/test_utilities.rb
|
263
|
+
rdoc_options:
|
264
|
+
- --main
|
265
|
+
- README.txt
|
266
|
+
extra_rdoc_files:
|
267
|
+
- HISTORY.txt
|
268
|
+
- Manifest.txt
|
269
|
+
- README.txt
|
270
|
+
- examples/ar_client_webapp/public/robots.txt
|
271
|
+
- examples/ar_webapp/public/robots.txt
|
286
272
|
executables:
|
273
|
+
- .DS_Store
|
287
274
|
- rubysync
|
288
275
|
extensions: []
|
289
276
|
|
@@ -291,38 +278,11 @@ requirements: []
|
|
291
278
|
|
292
279
|
dependencies:
|
293
280
|
- !ruby/object:Gem::Dependency
|
294
|
-
name:
|
295
|
-
version_requirement:
|
296
|
-
version_requirements: !ruby/object:Gem::Version::Requirement
|
297
|
-
requirements:
|
298
|
-
- - ">="
|
299
|
-
- !ruby/object:Gem::Version
|
300
|
-
version: 0.0.4
|
301
|
-
version:
|
302
|
-
- !ruby/object:Gem::Dependency
|
303
|
-
name: activesupport
|
304
|
-
version_requirement:
|
305
|
-
version_requirements: !ruby/object:Gem::Version::Requirement
|
306
|
-
requirements:
|
307
|
-
- - ">="
|
308
|
-
- !ruby/object:Gem::Version
|
309
|
-
version: 1.4.0
|
310
|
-
version:
|
311
|
-
- !ruby/object:Gem::Dependency
|
312
|
-
name: activerecord
|
313
|
-
version_requirement:
|
314
|
-
version_requirements: !ruby/object:Gem::Version::Requirement
|
315
|
-
requirements:
|
316
|
-
- - ">="
|
317
|
-
- !ruby/object:Gem::Version
|
318
|
-
version: 1.15.3
|
319
|
-
version:
|
320
|
-
- !ruby/object:Gem::Dependency
|
321
|
-
name: simpleconsole
|
281
|
+
name: hoe
|
322
282
|
version_requirement:
|
323
283
|
version_requirements: !ruby/object:Gem::Version::Requirement
|
324
284
|
requirements:
|
325
285
|
- - ">="
|
326
286
|
- !ruby/object:Gem::Version
|
327
|
-
version:
|
287
|
+
version: 1.3.0
|
328
288
|
version:
|