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
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# General Apache options
|
2
|
+
AddHandler fastcgi-script .fcgi
|
3
|
+
AddHandler cgi-script .cgi
|
4
|
+
Options +FollowSymLinks +ExecCGI
|
5
|
+
|
6
|
+
# If you don't want Rails to look in certain directories,
|
7
|
+
# use the following rewrite rules so that Apache won't rewrite certain requests
|
8
|
+
#
|
9
|
+
# Example:
|
10
|
+
# RewriteCond %{REQUEST_URI} ^/notrails.*
|
11
|
+
# RewriteRule .* - [L]
|
12
|
+
|
13
|
+
# Redirect all requests not available on the filesystem to Rails
|
14
|
+
# By default the cgi dispatcher is used which is very slow
|
15
|
+
#
|
16
|
+
# For better performance replace the dispatcher with the fastcgi one
|
17
|
+
#
|
18
|
+
# Example:
|
19
|
+
# RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
|
20
|
+
RewriteEngine On
|
21
|
+
|
22
|
+
# If your Rails application is accessed via an Alias directive,
|
23
|
+
# then you MUST also set the RewriteBase in this htaccess file.
|
24
|
+
#
|
25
|
+
# Example:
|
26
|
+
# Alias /myrailsapp /path/to/myrailsapp/public
|
27
|
+
# RewriteBase /myrailsapp
|
28
|
+
|
29
|
+
RewriteRule ^$ index.html [QSA]
|
30
|
+
RewriteRule ^([^.]+)$ $1.html [QSA]
|
31
|
+
RewriteCond %{REQUEST_FILENAME} !-f
|
32
|
+
RewriteRule ^(.*)$ dispatch.cgi [QSA,L]
|
33
|
+
|
34
|
+
# In case Rails experiences terminal errors
|
35
|
+
# Instead of displaying this message you can supply a file here which will be rendered instead
|
36
|
+
#
|
37
|
+
# Example:
|
38
|
+
# ErrorDocument 500 /500.html
|
39
|
+
|
40
|
+
ErrorDocument 500 "<h2>Application error</h2>Rails application failed to start properly"
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|