rhoconnect 3.0.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +208 -0
- data/CREDITS +38 -0
- data/Gemfile +18 -0
- data/Gemfile.lock +97 -0
- data/LICENSE +75 -0
- data/README.md +10 -0
- data/Rakefile +82 -0
- data/bench/bench +7 -0
- data/bench/bench_runner.rb +112 -0
- data/bench/benchapp/Gemfile +21 -0
- data/bench/benchapp/Gemfile.lock +76 -0
- data/bench/benchapp/Rakefile +22 -0
- data/bench/benchapp/application.rb +39 -0
- data/bench/benchapp/config.ru +36 -0
- data/bench/benchapp/settings/license.key +1 -0
- data/bench/benchapp/settings/settings.yml +20 -0
- data/bench/benchapp/sources/mock_adapter.rb +55 -0
- data/bench/benchapp/sources/queue_mock_adapter.rb +2 -0
- data/bench/benchapp/spec/sources/mock_adapter_spec.rb +25 -0
- data/bench/benchapp/spec/sources/queue_mock_adapter_spec.rb +25 -0
- data/bench/benchapp/spec/spec_helper.rb +42 -0
- data/bench/blobapp/Gemfile +31 -0
- data/bench/blobapp/Gemfile.lock +103 -0
- data/bench/blobapp/Rakefile +25 -0
- data/bench/blobapp/application.rb +44 -0
- data/bench/blobapp/config.ru +36 -0
- data/bench/blobapp/settings/license.key +1 -0
- data/bench/blobapp/settings/settings.yml +16 -0
- data/bench/blobapp/sources/blob_adapter.rb +71 -0
- data/bench/blobapp/spec/sources/blob_adapter_spec.rb +25 -0
- data/bench/blobapp/spec/spec_helper.rb +42 -0
- data/bench/lib/bench/cli.rb +16 -0
- data/bench/lib/bench/logging.rb +13 -0
- data/bench/lib/bench/mock_client.rb +41 -0
- data/bench/lib/bench/result.rb +50 -0
- data/bench/lib/bench/runner.rb +107 -0
- data/bench/lib/bench/session.rb +67 -0
- data/bench/lib/bench/statistics.rb +56 -0
- data/bench/lib/bench/test_data.rb +98 -0
- data/bench/lib/bench/timer.rb +10 -0
- data/bench/lib/bench/utils.rb +49 -0
- data/bench/lib/bench.rb +129 -0
- data/bench/lib/testdata/100-data.txt +148 -0
- data/bench/lib/testdata/5-data.txt +9 -0
- data/bench/lib/testdata/images/icon.ico +0 -0
- data/bench/lib/testdata/images/icon.png +0 -0
- data/bench/lib/testdata/images/loading-Landscape.png +0 -0
- data/bench/lib/testdata/images/loading-LandscapeLeft.png +0 -0
- data/bench/lib/testdata/images/loading-LandscapeRight.png +0 -0
- data/bench/lib/testdata/images/loading-Portrait.png +0 -0
- data/bench/lib/testdata/images/loading-PortraitUpsideDown.png +0 -0
- data/bench/lib/testdata/images/loading.png +0 -0
- data/bench/lib/testdata/images/loading@2x.png +0 -0
- data/bench/run_bench.sh +42 -0
- data/bench/run_blob_script.sh +3 -0
- data/bench/run_cud_script.sh +3 -0
- data/bench/run_query_md_script.sh +3 -0
- data/bench/run_query_only_script.sh +3 -0
- data/bench/run_query_script.sh +3 -0
- data/bench/scripts/blob_cud_script.rb +98 -0
- data/bench/scripts/cud_script.rb +92 -0
- data/bench/scripts/helpers.rb +101 -0
- data/bench/scripts/query_md_script.rb +45 -0
- data/bench/scripts/query_only_script.rb +51 -0
- data/bench/scripts/query_script.rb +45 -0
- data/bench/spec/bench_spec_helper.rb +33 -0
- data/bench/spec/logging_spec.rb +15 -0
- data/bench/spec/mock_adapter_spec.rb +61 -0
- data/bench/spec/mock_client_spec.rb +65 -0
- data/bench/spec/result_spec.rb +61 -0
- data/bench/spec/utils_spec.rb +36 -0
- data/bin/rhoconnect +34 -0
- data/bin/rhoconnect-setup +84 -0
- data/doc/async-jobs.txt +69 -0
- data/doc/authentication.txt +76 -0
- data/doc/benchmarks.txt +168 -0
- data/doc/blob-sync.txt +130 -0
- data/doc/bulk-sync.txt +102 -0
- data/doc/client.txt +432 -0
- data/doc/command-line.txt +210 -0
- data/doc/contributing.txt +60 -0
- data/doc/deploying.txt +82 -0
- data/doc/install.txt +28 -0
- data/doc/introduction.txt +20 -0
- data/doc/licensing.txt +18 -0
- data/doc/metadata.txt +458 -0
- data/doc/migration.txt +182 -0
- data/doc/public/css/print.css +29 -0
- data/doc/public/css/screen.css +257 -0
- data/doc/public/css/style.css +20 -0
- data/doc/push.txt +135 -0
- data/doc/release.txt +41 -0
- data/doc/rest-api.txt +367 -0
- data/doc/source-adapters.txt +325 -0
- data/doc/stats-middleware.txt +69 -0
- data/doc/testing.txt +222 -0
- data/doc/tutorial.txt +315 -0
- data/doc/web-console.txt +35 -0
- data/examples/simple/Rakefile +14 -0
- data/examples/simple/application.rb +27 -0
- data/examples/simple/config.ru +49 -0
- data/examples/simple/settings/license.key +1 -0
- data/examples/simple/settings/settings.yml +23 -0
- data/examples/simple/sources/sample_adapter.rb +5 -0
- data/examples/simple/sources/simple_adapter.rb +5 -0
- data/generators/rhoconnect.rb +119 -0
- data/generators/templates/application/Gemfile +21 -0
- data/generators/templates/application/Rakefile +22 -0
- data/generators/templates/application/application.rb +39 -0
- data/generators/templates/application/config.ru +36 -0
- data/generators/templates/application/settings/license.key +1 -0
- data/generators/templates/application/settings/settings.yml +14 -0
- data/generators/templates/application/spec/spec_helper.rb +42 -0
- data/generators/templates/source/source_adapter.rb +47 -0
- data/generators/templates/source/source_spec.rb +25 -0
- data/install.sh +408 -0
- data/installer/unix-like/rho_connect_install_checkers.rb +140 -0
- data/installer/unix-like/rho_connect_install_constants.rb +51 -0
- data/installer/unix-like/rho_connect_install_debian.rb +63 -0
- data/installer/unix-like/rho_connect_install_dnd.rb +58 -0
- data/installer/unix-like/rho_connect_install_get_params.rb +30 -0
- data/installer/unix-like/rho_connect_install_installers.rb +142 -0
- data/installer/unix-like/rho_connect_install_utilities.rb +85 -0
- data/installer/unix-like/rho_connect_install_yum.rb +63 -0
- data/installer/unix-like/rhoinstaller.rb +89 -0
- data/installer/utils/create_texts.rb +366 -0
- data/installer/utils/install_test.rb +140 -0
- data/installer/windows/EnvVarUpdate.nsh +328 -0
- data/installer/windows/ServiceLib.nsh +369 -0
- data/installer/windows/configUi.ini +44 -0
- data/installer/windows/icon.ico +0 -0
- data/installer/windows/rhosync.nsi +418 -0
- data/installer/windows/uninstall.bat +7 -0
- data/lib/rhoconnect/api/admin/get_api_token.rb +14 -0
- data/lib/rhoconnect/api/admin/get_license_info.rb +8 -0
- data/lib/rhoconnect/api/admin/login.rb +6 -0
- data/lib/rhoconnect/api/admin/reset.rb +10 -0
- data/lib/rhoconnect/api/admin/stats.rb +21 -0
- data/lib/rhoconnect/api/application/bulk_data.rb +7 -0
- data/lib/rhoconnect/api/application/clientcreate.rb +8 -0
- data/lib/rhoconnect/api/application/clientlogin.rb +6 -0
- data/lib/rhoconnect/api/application/clientregister.rb +6 -0
- data/lib/rhoconnect/api/application/clientreset.rb +6 -0
- data/lib/rhoconnect/api/application/query.rb +7 -0
- data/lib/rhoconnect/api/application/queue_updates.rb +6 -0
- data/lib/rhoconnect/api/application/search.rb +6 -0
- data/lib/rhoconnect/api/client/create_client.rb +3 -0
- data/lib/rhoconnect/api/client/delete_client.rb +5 -0
- data/lib/rhoconnect/api/client/get_client_params.rb +3 -0
- data/lib/rhoconnect/api/client/list_client_docs.rb +12 -0
- data/lib/rhoconnect/api/client/list_clients.rb +3 -0
- data/lib/rhoconnect/api/client/ping.rb +7 -0
- data/lib/rhoconnect/api/source/get_adapter.rb +3 -0
- data/lib/rhoconnect/api/source/get_db_doc.rb +7 -0
- data/lib/rhoconnect/api/source/get_source_params.rb +3 -0
- data/lib/rhoconnect/api/source/list_source_docs.rb +10 -0
- data/lib/rhoconnect/api/source/list_sources.rb +15 -0
- data/lib/rhoconnect/api/source/push_deletes.rb +8 -0
- data/lib/rhoconnect/api/source/push_objects.rb +8 -0
- data/lib/rhoconnect/api/source/save_adapter.rb +3 -0
- data/lib/rhoconnect/api/source/set_db_doc.rb +8 -0
- data/lib/rhoconnect/api/source/set_refresh_time.rb +8 -0
- data/lib/rhoconnect/api/source/upload_file.rb +4 -0
- data/lib/rhoconnect/api/user/create_user.rb +7 -0
- data/lib/rhoconnect/api/user/delete_user.rb +9 -0
- data/lib/rhoconnect/api/user/list_users.rb +3 -0
- data/lib/rhoconnect/api/user/update_user.rb +4 -0
- data/lib/rhoconnect/api_token.rb +19 -0
- data/lib/rhoconnect/app.rb +76 -0
- data/lib/rhoconnect/bulk_data/bulk_data.rb +88 -0
- data/lib/rhoconnect/bulk_data/syncdb.index.schema +4 -0
- data/lib/rhoconnect/bulk_data/syncdb.schema +41 -0
- data/lib/rhoconnect/bulk_data.rb +2 -0
- data/lib/rhoconnect/client.rb +96 -0
- data/lib/rhoconnect/client_sync.rb +412 -0
- data/lib/rhoconnect/console/app/helpers/auth_helper.rb +22 -0
- data/lib/rhoconnect/console/app/helpers/extensions.rb +19 -0
- data/lib/rhoconnect/console/app/helpers/helpers.rb +57 -0
- data/lib/rhoconnect/console/app/public/ThickBox.css +649 -0
- data/lib/rhoconnect/console/app/public/home.css +438 -0
- data/lib/rhoconnect/console/app/public/images/foot_logo_rhoconnect.png +0 -0
- data/lib/rhoconnect/console/app/public/images/header_halo.jpg +0 -0
- data/lib/rhoconnect/console/app/public/images/land_separator.gif +0 -0
- data/lib/rhoconnect/console/app/public/images/landing_header.jpg +0 -0
- data/lib/rhoconnect/console/app/public/images/logo_rhoconnect.png +0 -0
- data/lib/rhoconnect/console/app/public/images/rhomobile_rhohub_logo.png +0 -0
- data/lib/rhoconnect/console/app/public/images/tabs_separator.png +0 -0
- data/lib/rhoconnect/console/app/public/jqplot/excanvas.min.js +35 -0
- data/lib/rhoconnect/console/app/public/jqplot/jqplot.barRenderer.min.js +34 -0
- data/lib/rhoconnect/console/app/public/jqplot/jqplot.canvasAxisLabelRenderer.js +187 -0
- data/lib/rhoconnect/console/app/public/jqplot/jqplot.canvasAxisTickRenderer.js +226 -0
- data/lib/rhoconnect/console/app/public/jqplot/jqplot.canvasTextRenderer.js +408 -0
- data/lib/rhoconnect/console/app/public/jqplot/jqplot.categoryAxisRenderer.min.js +34 -0
- data/lib/rhoconnect/console/app/public/jqplot/jqplot.cursor.js +952 -0
- data/lib/rhoconnect/console/app/public/jqplot/jqplot.dateAxisRenderer.js +313 -0
- data/lib/rhoconnect/console/app/public/jqplot/jqplot.dateAxisRenderer.min.js +34 -0
- data/lib/rhoconnect/console/app/public/jqplot/jqplot.pointLabels.min.js +34 -0
- data/lib/rhoconnect/console/app/public/jqplot/jquery-1.4.2.min.js +154 -0
- data/lib/rhoconnect/console/app/public/jqplot/jquery.jqplot.min.css +1 -0
- data/lib/rhoconnect/console/app/public/jqplot/jquery.jqplot.min.js +34 -0
- data/lib/rhoconnect/console/app/public/main.css +7 -0
- data/lib/rhoconnect/console/app/public/reset.css +76 -0
- data/lib/rhoconnect/console/app/public/style.css +2201 -0
- data/lib/rhoconnect/console/app/public/text.txt +0 -0
- data/lib/rhoconnect/console/app/routes/adapter.rb +28 -0
- data/lib/rhoconnect/console/app/routes/auth.rb +29 -0
- data/lib/rhoconnect/console/app/routes/client.rb +31 -0
- data/lib/rhoconnect/console/app/routes/docs.rb +145 -0
- data/lib/rhoconnect/console/app/routes/heroku.rb +19 -0
- data/lib/rhoconnect/console/app/routes/home.rb +63 -0
- data/lib/rhoconnect/console/app/routes/timing.rb +242 -0
- data/lib/rhoconnect/console/app/routes/user.rb +117 -0
- data/lib/rhoconnect/console/app/views/adapter.erb +16 -0
- data/lib/rhoconnect/console/app/views/client.erb +30 -0
- data/lib/rhoconnect/console/app/views/content.erb +14 -0
- data/lib/rhoconnect/console/app/views/doc.erb +8 -0
- data/lib/rhoconnect/console/app/views/docdata.erb +28 -0
- data/lib/rhoconnect/console/app/views/docs.erb +30 -0
- data/lib/rhoconnect/console/app/views/edituser.erb +13 -0
- data/lib/rhoconnect/console/app/views/headermenu.erb +40 -0
- data/lib/rhoconnect/console/app/views/home.erb +24 -0
- data/lib/rhoconnect/console/app/views/index.erb +58 -0
- data/lib/rhoconnect/console/app/views/jqplot.erb +52 -0
- data/lib/rhoconnect/console/app/views/layout.erb +165 -0
- data/lib/rhoconnect/console/app/views/login.erb +26 -0
- data/lib/rhoconnect/console/app/views/newuser.erb +17 -0
- data/lib/rhoconnect/console/app/views/ping.erb +28 -0
- data/lib/rhoconnect/console/app/views/result.erb +11 -0
- data/lib/rhoconnect/console/app/views/rightboxlinks.erb +15 -0
- data/lib/rhoconnect/console/app/views/select_doc.erb +17 -0
- data/lib/rhoconnect/console/app/views/upload_doc.erb +23 -0
- data/lib/rhoconnect/console/app/views/user.erb +29 -0
- data/lib/rhoconnect/console/app/views/users.erb +12 -0
- data/lib/rhoconnect/console/rhoconnect_api.rb +245 -0
- data/lib/rhoconnect/console/server.rb +32 -0
- data/lib/rhoconnect/console.rb +3 -0
- data/lib/rhoconnect/cors.rb +229 -0
- data/lib/rhoconnect/credential.rb +9 -0
- data/lib/rhoconnect/db_adapter.rb +46 -0
- data/lib/rhoconnect/document.rb +49 -0
- data/lib/rhoconnect/dynamic_adapter.rb +91 -0
- data/lib/rhoconnect/generator.rb +1 -0
- data/lib/rhoconnect/jobs/bulk_data_job.rb +203 -0
- data/lib/rhoconnect/jobs/ping_job.rb +46 -0
- data/lib/rhoconnect/jobs/source_job.rb +16 -0
- data/lib/rhoconnect/license.rb +86 -0
- data/lib/rhoconnect/lock_ops.rb +11 -0
- data/lib/rhoconnect/model.rb +414 -0
- data/lib/rhoconnect/ping/android.rb +56 -0
- data/lib/rhoconnect/ping/apple.rb +52 -0
- data/lib/rhoconnect/ping/blackberry.rb +56 -0
- data/lib/rhoconnect/ping.rb +3 -0
- data/lib/rhoconnect/read_state.rb +31 -0
- data/lib/rhoconnect/rho_indifferent_access.rb +88 -0
- data/lib/rhoconnect/server/views/index.erb +13 -0
- data/lib/rhoconnect/server.rb +286 -0
- data/lib/rhoconnect/source.rb +289 -0
- data/lib/rhoconnect/source_adapter.rb +123 -0
- data/lib/rhoconnect/source_sync.rb +302 -0
- data/lib/rhoconnect/stats/middleware.rb +20 -0
- data/lib/rhoconnect/stats/record.rb +108 -0
- data/lib/rhoconnect/store.rb +232 -0
- data/lib/rhoconnect/tasks.rb +350 -0
- data/lib/rhoconnect/test_methods.rb +220 -0
- data/lib/rhoconnect/user.rb +95 -0
- data/lib/rhoconnect/version.rb +3 -0
- data/lib/rhoconnect/x_domain_session_wrapper.rb +53 -0
- data/lib/rhoconnect.rb +285 -0
- data/rhoconnect.gemspec +67 -0
- data/spec/api/admin/api_token_spec.rb +14 -0
- data/spec/api/admin/get_api_token_spec.rb +36 -0
- data/spec/api/admin/get_license_info_spec.rb +38 -0
- data/spec/api/admin/reset_spec.rb +22 -0
- data/spec/api/admin/stats_spec.rb +66 -0
- data/spec/api/api_helper.rb +21 -0
- data/spec/api/application/rhoconnect_api_spec.rb +548 -0
- data/spec/api/client/create_client_spec.rb +13 -0
- data/spec/api/client/delete_client_spec.rb +13 -0
- data/spec/api/client/get_client_params_spec.rb +18 -0
- data/spec/api/client/list_client_docs_spec.rb +32 -0
- data/spec/api/client/list_clients_spec.rb +22 -0
- data/spec/api/client/ping_spec.rb +23 -0
- data/spec/api/rhosync_api_spec.rb.orig +606 -0
- data/spec/api/source/adapter_spec.rb +29 -0
- data/spec/api/source/get_db_doc_spec.rb +21 -0
- data/spec/api/source/get_source_params_spec.rb +32 -0
- data/spec/api/source/list_source_docs_spec.rb +25 -0
- data/spec/api/source/list_sources_spec.rb +26 -0
- data/spec/api/source/push_deletes_spec.rb +18 -0
- data/spec/api/source/push_objects_spec.rb +27 -0
- data/spec/api/source/set_db_doc_spec.rb +19 -0
- data/spec/api/source/set_refresh_time_spec.rb +43 -0
- data/spec/api/source/upload_file_spec.rb +26 -0
- data/spec/api/user/create_user_spec.rb +16 -0
- data/spec/api/user/delete_user_spec.rb +36 -0
- data/spec/api/user/list_users_spec.rb +30 -0
- data/spec/api/user/update_user_spec.rb +31 -0
- data/spec/api_token_spec.rb +14 -0
- data/spec/app_spec.rb +18 -0
- data/spec/apps/emptyapp/application.rb +27 -0
- data/spec/apps/emptyapp/settings/license.key +1 -0
- data/spec/apps/emptyapp/settings/settings.yml +14 -0
- data/spec/apps/rhotestapp/Rakefile +1 -0
- data/spec/apps/rhotestapp/application.rb +19 -0
- data/spec/apps/rhotestapp/config.ru +1 -0
- data/spec/apps/rhotestapp/settings/apple_fake_cert.pem +1 -0
- data/spec/apps/rhotestapp/settings/license.key +1 -0
- data/spec/apps/rhotestapp/settings/settings.yml +36 -0
- data/spec/apps/rhotestapp/sources/base_adapter.rb +9 -0
- data/spec/apps/rhotestapp/sources/fixed_schema_adapter.rb +28 -0
- data/spec/apps/rhotestapp/sources/sample_adapter.rb +71 -0
- data/spec/apps/rhotestapp/sources/simple_adapter.rb +41 -0
- data/spec/apps/rhotestapp/sources/sub_adapter.rb +7 -0
- data/spec/apps/rhotestapp/vendor/mygem-0.1.0/lib/mygem/mygem.rb +8 -0
- data/spec/apps/rhotestapp/vendor/mygem-0.1.0/lib/mygem.rb +1 -0
- data/spec/bulk_data/bulk_data_spec.rb +97 -0
- data/spec/client_spec.rb +124 -0
- data/spec/client_sync_spec.rb +774 -0
- data/spec/doc/base.html +72 -0
- data/spec/doc/doc_spec.rb +376 -0
- data/spec/doc/footer.html +4 -0
- data/spec/doc/header.html +30 -0
- data/spec/document_spec.rb +31 -0
- data/spec/dynamic_adapter_spec.rb +43 -0
- data/spec/factories/factories.rb +17 -0
- data/spec/generator/generator_spec.rb +58 -0
- data/spec/generator/generator_spec_helper.rb +9 -0
- data/spec/jobs/bulk_data_job_spec.rb +125 -0
- data/spec/jobs/ping_job_spec.rb +102 -0
- data/spec/jobs/source_job_spec.rb +29 -0
- data/spec/license_spec.rb +66 -0
- data/spec/model_spec.rb +273 -0
- data/spec/perf/bulk_data_perf_spec.rb +32 -0
- data/spec/perf/perf_spec_helper.rb +50 -0
- data/spec/perf/store_perf_spec.rb +27 -0
- data/spec/ping/android_spec.rb +91 -0
- data/spec/ping/apple_spec.rb +70 -0
- data/spec/ping/blackberry_spec.rb +62 -0
- data/spec/read_state_spec.rb +35 -0
- data/spec/rhosync_spec.rb +75 -0
- data/spec/server/cors_spec.rb +287 -0
- data/spec/server/server_spec.rb +470 -0
- data/spec/server/x_domain_session_wrapper_spec.rb +150 -0
- data/spec/source_adapter_spec.rb +125 -0
- data/spec/source_spec.rb +114 -0
- data/spec/source_sync_spec.rb +328 -0
- data/spec/spec.opts +4 -0
- data/spec/spec_helper.rb +231 -0
- data/spec/stats/middleware_spec.rb +53 -0
- data/spec/stats/record_spec.rb +92 -0
- data/spec/store_spec.rb +251 -0
- data/spec/support/shared_examples.rb +168 -0
- data/spec/sync_states_spec.rb +72 -0
- data/spec/test_methods_spec.rb +134 -0
- data/spec/testdata/1000-data.txt +1414 -0
- data/spec/testdata/compressed/compress-data.txt +1 -0
- data/spec/testdata/upload1.txt +1 -0
- data/spec/testdata/upload2.txt +1 -0
- data/spec/user_spec.rb +139 -0
- data/tasks/redis.rake +206 -0
- metadata +706 -0
metadata
ADDED
@@ -0,0 +1,706 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rhoconnect
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 62196417
|
5
|
+
prerelease: 6
|
6
|
+
segments:
|
7
|
+
- 3
|
8
|
+
- 0
|
9
|
+
- 0
|
10
|
+
- beta
|
11
|
+
- 1
|
12
|
+
version: 3.0.0.beta1
|
13
|
+
platform: ruby
|
14
|
+
authors:
|
15
|
+
- Rhomobile
|
16
|
+
autorequire:
|
17
|
+
bindir: bin
|
18
|
+
cert_chain: []
|
19
|
+
|
20
|
+
date: 2011-09-01 00:00:00 Z
|
21
|
+
dependencies:
|
22
|
+
- !ruby/object:Gem::Dependency
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
26
|
+
none: false
|
27
|
+
requirements:
|
28
|
+
- - ~>
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
hash: 15
|
31
|
+
segments:
|
32
|
+
- 1
|
33
|
+
- 0
|
34
|
+
version: "1.0"
|
35
|
+
version_requirements: *id001
|
36
|
+
name: bundler
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
type: :runtime
|
39
|
+
prerelease: false
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ~>
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
hash: 11
|
46
|
+
segments:
|
47
|
+
- 1
|
48
|
+
- 2
|
49
|
+
version: "1.2"
|
50
|
+
version_requirements: *id002
|
51
|
+
name: sinatra
|
52
|
+
- !ruby/object:Gem::Dependency
|
53
|
+
type: :runtime
|
54
|
+
prerelease: false
|
55
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
56
|
+
none: false
|
57
|
+
requirements:
|
58
|
+
- - "="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
hash: 63
|
61
|
+
segments:
|
62
|
+
- 0
|
63
|
+
- 9
|
64
|
+
- 2
|
65
|
+
version: 0.9.2
|
66
|
+
version_requirements: *id003
|
67
|
+
name: rake
|
68
|
+
- !ruby/object:Gem::Dependency
|
69
|
+
type: :runtime
|
70
|
+
prerelease: false
|
71
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
72
|
+
none: false
|
73
|
+
requirements:
|
74
|
+
- - ~>
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
hash: 3
|
77
|
+
segments:
|
78
|
+
- 1
|
79
|
+
- 5
|
80
|
+
- 0
|
81
|
+
version: 1.5.0
|
82
|
+
version_requirements: *id004
|
83
|
+
name: json
|
84
|
+
- !ruby/object:Gem::Dependency
|
85
|
+
type: :runtime
|
86
|
+
prerelease: false
|
87
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
88
|
+
none: false
|
89
|
+
requirements:
|
90
|
+
- - ~>
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
hash: 51
|
93
|
+
segments:
|
94
|
+
- 0
|
95
|
+
- 9
|
96
|
+
- 4
|
97
|
+
version: 0.9.4
|
98
|
+
version_requirements: *id005
|
99
|
+
name: rubyzip
|
100
|
+
- !ruby/object:Gem::Dependency
|
101
|
+
type: :runtime
|
102
|
+
prerelease: false
|
103
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
104
|
+
none: false
|
105
|
+
requirements:
|
106
|
+
- - ">="
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
hash: 9
|
109
|
+
segments:
|
110
|
+
- 2
|
111
|
+
- 1
|
112
|
+
- 1
|
113
|
+
version: 2.1.1
|
114
|
+
version_requirements: *id006
|
115
|
+
name: uuidtools
|
116
|
+
- !ruby/object:Gem::Dependency
|
117
|
+
type: :runtime
|
118
|
+
prerelease: false
|
119
|
+
requirement: &id007 !ruby/object:Gem::Requirement
|
120
|
+
none: false
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
hash: 7
|
125
|
+
segments:
|
126
|
+
- 2
|
127
|
+
- 2
|
128
|
+
- 0
|
129
|
+
version: 2.2.0
|
130
|
+
version_requirements: *id007
|
131
|
+
name: redis
|
132
|
+
- !ruby/object:Gem::Dependency
|
133
|
+
type: :runtime
|
134
|
+
prerelease: false
|
135
|
+
requirement: &id008 !ruby/object:Gem::Requirement
|
136
|
+
none: false
|
137
|
+
requirements:
|
138
|
+
- - ~>
|
139
|
+
- !ruby/object:Gem::Version
|
140
|
+
hash: 83
|
141
|
+
segments:
|
142
|
+
- 1
|
143
|
+
- 17
|
144
|
+
- 0
|
145
|
+
version: 1.17.0
|
146
|
+
version_requirements: *id008
|
147
|
+
name: resque
|
148
|
+
- !ruby/object:Gem::Dependency
|
149
|
+
type: :runtime
|
150
|
+
prerelease: false
|
151
|
+
requirement: &id009 !ruby/object:Gem::Requirement
|
152
|
+
none: false
|
153
|
+
requirements:
|
154
|
+
- - ~>
|
155
|
+
- !ruby/object:Gem::Version
|
156
|
+
hash: 13
|
157
|
+
segments:
|
158
|
+
- 1
|
159
|
+
- 6
|
160
|
+
- 1
|
161
|
+
version: 1.6.1
|
162
|
+
version_requirements: *id009
|
163
|
+
name: rest-client
|
164
|
+
- !ruby/object:Gem::Dependency
|
165
|
+
type: :runtime
|
166
|
+
prerelease: false
|
167
|
+
requirement: &id010 !ruby/object:Gem::Requirement
|
168
|
+
none: false
|
169
|
+
requirements:
|
170
|
+
- - ~>
|
171
|
+
- !ruby/object:Gem::Version
|
172
|
+
hash: 23
|
173
|
+
segments:
|
174
|
+
- 1
|
175
|
+
- 0
|
176
|
+
- 0
|
177
|
+
version: 1.0.0
|
178
|
+
version_requirements: *id010
|
179
|
+
name: templater
|
180
|
+
- !ruby/object:Gem::Dependency
|
181
|
+
type: :runtime
|
182
|
+
prerelease: false
|
183
|
+
requirement: &id011 !ruby/object:Gem::Requirement
|
184
|
+
none: false
|
185
|
+
requirements:
|
186
|
+
- - ">="
|
187
|
+
- !ruby/object:Gem::Version
|
188
|
+
hash: 29
|
189
|
+
segments:
|
190
|
+
- 1
|
191
|
+
- 3
|
192
|
+
- 3
|
193
|
+
version: 1.3.3
|
194
|
+
version_requirements: *id011
|
195
|
+
name: sqlite3
|
196
|
+
- !ruby/object:Gem::Dependency
|
197
|
+
type: :runtime
|
198
|
+
prerelease: false
|
199
|
+
requirement: &id012 !ruby/object:Gem::Requirement
|
200
|
+
none: false
|
201
|
+
requirements:
|
202
|
+
- - ~>
|
203
|
+
- !ruby/object:Gem::Version
|
204
|
+
hash: 25
|
205
|
+
segments:
|
206
|
+
- 1
|
207
|
+
- 2
|
208
|
+
- 3
|
209
|
+
version: 1.2.3
|
210
|
+
version_requirements: *id012
|
211
|
+
name: SystemTimer
|
212
|
+
description: RhoConnect Server Framework and related command-line utilities
|
213
|
+
email: dev@rhomobile.com
|
214
|
+
executables:
|
215
|
+
- rhoconnect
|
216
|
+
- rhoconnect-setup
|
217
|
+
extensions: []
|
218
|
+
|
219
|
+
extra_rdoc_files:
|
220
|
+
- LICENSE
|
221
|
+
- README.md
|
222
|
+
files:
|
223
|
+
- CHANGELOG
|
224
|
+
- CREDITS
|
225
|
+
- Gemfile
|
226
|
+
- Gemfile.lock
|
227
|
+
- install.sh
|
228
|
+
- README.md
|
229
|
+
- Rakefile
|
230
|
+
- LICENSE
|
231
|
+
- rhoconnect.gemspec
|
232
|
+
- bench/bench
|
233
|
+
- bench/bench_runner.rb
|
234
|
+
- bench/benchapp/application.rb
|
235
|
+
- bench/benchapp/config.ru
|
236
|
+
- bench/benchapp/Gemfile
|
237
|
+
- bench/benchapp/Gemfile.lock
|
238
|
+
- bench/benchapp/Rakefile
|
239
|
+
- bench/benchapp/settings/license.key
|
240
|
+
- bench/benchapp/settings/settings.yml
|
241
|
+
- bench/benchapp/sources/mock_adapter.rb
|
242
|
+
- bench/benchapp/sources/queue_mock_adapter.rb
|
243
|
+
- bench/benchapp/spec/sources/mock_adapter_spec.rb
|
244
|
+
- bench/benchapp/spec/sources/queue_mock_adapter_spec.rb
|
245
|
+
- bench/benchapp/spec/spec_helper.rb
|
246
|
+
- bench/blobapp/application.rb
|
247
|
+
- bench/blobapp/config.ru
|
248
|
+
- bench/blobapp/Gemfile
|
249
|
+
- bench/blobapp/Gemfile.lock
|
250
|
+
- bench/blobapp/Rakefile
|
251
|
+
- bench/blobapp/settings/license.key
|
252
|
+
- bench/blobapp/settings/settings.yml
|
253
|
+
- bench/blobapp/sources/blob_adapter.rb
|
254
|
+
- bench/blobapp/spec/sources/blob_adapter_spec.rb
|
255
|
+
- bench/blobapp/spec/spec_helper.rb
|
256
|
+
- bench/lib/bench/cli.rb
|
257
|
+
- bench/lib/bench/logging.rb
|
258
|
+
- bench/lib/bench/mock_client.rb
|
259
|
+
- bench/lib/bench/result.rb
|
260
|
+
- bench/lib/bench/runner.rb
|
261
|
+
- bench/lib/bench/session.rb
|
262
|
+
- bench/lib/bench/statistics.rb
|
263
|
+
- bench/lib/bench/test_data.rb
|
264
|
+
- bench/lib/bench/timer.rb
|
265
|
+
- bench/lib/bench/utils.rb
|
266
|
+
- bench/lib/bench.rb
|
267
|
+
- bench/lib/testdata/100-data.txt
|
268
|
+
- bench/lib/testdata/5-data.txt
|
269
|
+
- bench/lib/testdata/images/icon.ico
|
270
|
+
- bench/lib/testdata/images/icon.png
|
271
|
+
- bench/lib/testdata/images/loading-Landscape.png
|
272
|
+
- bench/lib/testdata/images/loading-LandscapeLeft.png
|
273
|
+
- bench/lib/testdata/images/loading-LandscapeRight.png
|
274
|
+
- bench/lib/testdata/images/loading-Portrait.png
|
275
|
+
- bench/lib/testdata/images/loading-PortraitUpsideDown.png
|
276
|
+
- bench/lib/testdata/images/loading.png
|
277
|
+
- bench/lib/testdata/images/loading@2x.png
|
278
|
+
- bench/run_bench.sh
|
279
|
+
- bench/run_blob_script.sh
|
280
|
+
- bench/run_cud_script.sh
|
281
|
+
- bench/run_query_md_script.sh
|
282
|
+
- bench/run_query_only_script.sh
|
283
|
+
- bench/run_query_script.sh
|
284
|
+
- bench/scripts/blob_cud_script.rb
|
285
|
+
- bench/scripts/cud_script.rb
|
286
|
+
- bench/scripts/helpers.rb
|
287
|
+
- bench/scripts/query_md_script.rb
|
288
|
+
- bench/scripts/query_only_script.rb
|
289
|
+
- bench/scripts/query_script.rb
|
290
|
+
- bench/spec/bench_spec_helper.rb
|
291
|
+
- bench/spec/logging_spec.rb
|
292
|
+
- bench/spec/mock_adapter_spec.rb
|
293
|
+
- bench/spec/mock_client_spec.rb
|
294
|
+
- bench/spec/result_spec.rb
|
295
|
+
- bench/spec/utils_spec.rb
|
296
|
+
- doc/async-jobs.txt
|
297
|
+
- doc/authentication.txt
|
298
|
+
- doc/benchmarks.txt
|
299
|
+
- doc/blob-sync.txt
|
300
|
+
- doc/bulk-sync.txt
|
301
|
+
- doc/client.txt
|
302
|
+
- doc/command-line.txt
|
303
|
+
- doc/contributing.txt
|
304
|
+
- doc/deploying.txt
|
305
|
+
- doc/install.txt
|
306
|
+
- doc/introduction.txt
|
307
|
+
- doc/licensing.txt
|
308
|
+
- doc/metadata.txt
|
309
|
+
- doc/migration.txt
|
310
|
+
- doc/public/css/print.css
|
311
|
+
- doc/public/css/screen.css
|
312
|
+
- doc/public/css/style.css
|
313
|
+
- doc/push.txt
|
314
|
+
- doc/release.txt
|
315
|
+
- doc/rest-api.txt
|
316
|
+
- doc/source-adapters.txt
|
317
|
+
- doc/stats-middleware.txt
|
318
|
+
- doc/testing.txt
|
319
|
+
- doc/tutorial.txt
|
320
|
+
- doc/web-console.txt
|
321
|
+
- examples/simple/application.rb
|
322
|
+
- examples/simple/config.ru
|
323
|
+
- examples/simple/Rakefile
|
324
|
+
- examples/simple/settings/license.key
|
325
|
+
- examples/simple/settings/settings.yml
|
326
|
+
- examples/simple/sources/sample_adapter.rb
|
327
|
+
- examples/simple/sources/simple_adapter.rb
|
328
|
+
- generators/rhoconnect.rb
|
329
|
+
- generators/templates/application/application.rb
|
330
|
+
- generators/templates/application/config.ru
|
331
|
+
- generators/templates/application/Gemfile
|
332
|
+
- generators/templates/application/Rakefile
|
333
|
+
- generators/templates/application/settings/license.key
|
334
|
+
- generators/templates/application/settings/settings.yml
|
335
|
+
- generators/templates/application/spec/spec_helper.rb
|
336
|
+
- generators/templates/source/source_adapter.rb
|
337
|
+
- generators/templates/source/source_spec.rb
|
338
|
+
- installer/unix-like/rho_connect_install_checkers.rb
|
339
|
+
- installer/unix-like/rho_connect_install_constants.rb
|
340
|
+
- installer/unix-like/rho_connect_install_debian.rb
|
341
|
+
- installer/unix-like/rho_connect_install_dnd.rb
|
342
|
+
- installer/unix-like/rho_connect_install_get_params.rb
|
343
|
+
- installer/unix-like/rho_connect_install_installers.rb
|
344
|
+
- installer/unix-like/rho_connect_install_utilities.rb
|
345
|
+
- installer/unix-like/rho_connect_install_yum.rb
|
346
|
+
- installer/unix-like/rhoinstaller.rb
|
347
|
+
- installer/utils/create_texts.rb
|
348
|
+
- installer/utils/install_test.rb
|
349
|
+
- installer/windows/configUi.ini
|
350
|
+
- installer/windows/EnvVarUpdate.nsh
|
351
|
+
- installer/windows/icon.ico
|
352
|
+
- installer/windows/rhosync.nsi
|
353
|
+
- installer/windows/ServiceLib.nsh
|
354
|
+
- installer/windows/uninstall.bat
|
355
|
+
- lib/rhoconnect/api/admin/get_api_token.rb
|
356
|
+
- lib/rhoconnect/api/admin/get_license_info.rb
|
357
|
+
- lib/rhoconnect/api/admin/login.rb
|
358
|
+
- lib/rhoconnect/api/admin/reset.rb
|
359
|
+
- lib/rhoconnect/api/admin/stats.rb
|
360
|
+
- lib/rhoconnect/api/application/bulk_data.rb
|
361
|
+
- lib/rhoconnect/api/application/clientcreate.rb
|
362
|
+
- lib/rhoconnect/api/application/clientlogin.rb
|
363
|
+
- lib/rhoconnect/api/application/clientregister.rb
|
364
|
+
- lib/rhoconnect/api/application/clientreset.rb
|
365
|
+
- lib/rhoconnect/api/application/query.rb
|
366
|
+
- lib/rhoconnect/api/application/queue_updates.rb
|
367
|
+
- lib/rhoconnect/api/application/search.rb
|
368
|
+
- lib/rhoconnect/api/client/create_client.rb
|
369
|
+
- lib/rhoconnect/api/client/delete_client.rb
|
370
|
+
- lib/rhoconnect/api/client/get_client_params.rb
|
371
|
+
- lib/rhoconnect/api/client/list_client_docs.rb
|
372
|
+
- lib/rhoconnect/api/client/list_clients.rb
|
373
|
+
- lib/rhoconnect/api/client/ping.rb
|
374
|
+
- lib/rhoconnect/api/source/get_adapter.rb
|
375
|
+
- lib/rhoconnect/api/source/get_db_doc.rb
|
376
|
+
- lib/rhoconnect/api/source/get_source_params.rb
|
377
|
+
- lib/rhoconnect/api/source/list_source_docs.rb
|
378
|
+
- lib/rhoconnect/api/source/list_sources.rb
|
379
|
+
- lib/rhoconnect/api/source/push_deletes.rb
|
380
|
+
- lib/rhoconnect/api/source/push_objects.rb
|
381
|
+
- lib/rhoconnect/api/source/save_adapter.rb
|
382
|
+
- lib/rhoconnect/api/source/set_db_doc.rb
|
383
|
+
- lib/rhoconnect/api/source/set_refresh_time.rb
|
384
|
+
- lib/rhoconnect/api/source/upload_file.rb
|
385
|
+
- lib/rhoconnect/api/user/create_user.rb
|
386
|
+
- lib/rhoconnect/api/user/delete_user.rb
|
387
|
+
- lib/rhoconnect/api/user/list_users.rb
|
388
|
+
- lib/rhoconnect/api/user/update_user.rb
|
389
|
+
- lib/rhoconnect/api_token.rb
|
390
|
+
- lib/rhoconnect/app.rb
|
391
|
+
- lib/rhoconnect/bulk_data/bulk_data.rb
|
392
|
+
- lib/rhoconnect/bulk_data/syncdb.index.schema
|
393
|
+
- lib/rhoconnect/bulk_data/syncdb.schema
|
394
|
+
- lib/rhoconnect/bulk_data.rb
|
395
|
+
- lib/rhoconnect/client.rb
|
396
|
+
- lib/rhoconnect/client_sync.rb
|
397
|
+
- lib/rhoconnect/console/app/helpers/auth_helper.rb
|
398
|
+
- lib/rhoconnect/console/app/helpers/extensions.rb
|
399
|
+
- lib/rhoconnect/console/app/helpers/helpers.rb
|
400
|
+
- lib/rhoconnect/console/app/public/home.css
|
401
|
+
- lib/rhoconnect/console/app/public/images/foot_logo_rhoconnect.png
|
402
|
+
- lib/rhoconnect/console/app/public/images/header_halo.jpg
|
403
|
+
- lib/rhoconnect/console/app/public/images/land_separator.gif
|
404
|
+
- lib/rhoconnect/console/app/public/images/landing_header.jpg
|
405
|
+
- lib/rhoconnect/console/app/public/images/logo_rhoconnect.png
|
406
|
+
- lib/rhoconnect/console/app/public/images/rhomobile_rhohub_logo.png
|
407
|
+
- lib/rhoconnect/console/app/public/images/tabs_separator.png
|
408
|
+
- lib/rhoconnect/console/app/public/jqplot/excanvas.min.js
|
409
|
+
- lib/rhoconnect/console/app/public/jqplot/jqplot.barRenderer.min.js
|
410
|
+
- lib/rhoconnect/console/app/public/jqplot/jqplot.canvasAxisLabelRenderer.js
|
411
|
+
- lib/rhoconnect/console/app/public/jqplot/jqplot.canvasAxisTickRenderer.js
|
412
|
+
- lib/rhoconnect/console/app/public/jqplot/jqplot.canvasTextRenderer.js
|
413
|
+
- lib/rhoconnect/console/app/public/jqplot/jqplot.categoryAxisRenderer.min.js
|
414
|
+
- lib/rhoconnect/console/app/public/jqplot/jqplot.cursor.js
|
415
|
+
- lib/rhoconnect/console/app/public/jqplot/jqplot.dateAxisRenderer.js
|
416
|
+
- lib/rhoconnect/console/app/public/jqplot/jqplot.dateAxisRenderer.min.js
|
417
|
+
- lib/rhoconnect/console/app/public/jqplot/jqplot.pointLabels.min.js
|
418
|
+
- lib/rhoconnect/console/app/public/jqplot/jquery-1.4.2.min.js
|
419
|
+
- lib/rhoconnect/console/app/public/jqplot/jquery.jqplot.min.css
|
420
|
+
- lib/rhoconnect/console/app/public/jqplot/jquery.jqplot.min.js
|
421
|
+
- lib/rhoconnect/console/app/public/main.css
|
422
|
+
- lib/rhoconnect/console/app/public/reset.css
|
423
|
+
- lib/rhoconnect/console/app/public/style.css
|
424
|
+
- lib/rhoconnect/console/app/public/text.txt
|
425
|
+
- lib/rhoconnect/console/app/public/ThickBox.css
|
426
|
+
- lib/rhoconnect/console/app/routes/adapter.rb
|
427
|
+
- lib/rhoconnect/console/app/routes/auth.rb
|
428
|
+
- lib/rhoconnect/console/app/routes/client.rb
|
429
|
+
- lib/rhoconnect/console/app/routes/docs.rb
|
430
|
+
- lib/rhoconnect/console/app/routes/heroku.rb
|
431
|
+
- lib/rhoconnect/console/app/routes/home.rb
|
432
|
+
- lib/rhoconnect/console/app/routes/timing.rb
|
433
|
+
- lib/rhoconnect/console/app/routes/user.rb
|
434
|
+
- lib/rhoconnect/console/app/views/adapter.erb
|
435
|
+
- lib/rhoconnect/console/app/views/client.erb
|
436
|
+
- lib/rhoconnect/console/app/views/content.erb
|
437
|
+
- lib/rhoconnect/console/app/views/doc.erb
|
438
|
+
- lib/rhoconnect/console/app/views/docdata.erb
|
439
|
+
- lib/rhoconnect/console/app/views/docs.erb
|
440
|
+
- lib/rhoconnect/console/app/views/edituser.erb
|
441
|
+
- lib/rhoconnect/console/app/views/headermenu.erb
|
442
|
+
- lib/rhoconnect/console/app/views/home.erb
|
443
|
+
- lib/rhoconnect/console/app/views/index.erb
|
444
|
+
- lib/rhoconnect/console/app/views/jqplot.erb
|
445
|
+
- lib/rhoconnect/console/app/views/layout.erb
|
446
|
+
- lib/rhoconnect/console/app/views/login.erb
|
447
|
+
- lib/rhoconnect/console/app/views/newuser.erb
|
448
|
+
- lib/rhoconnect/console/app/views/ping.erb
|
449
|
+
- lib/rhoconnect/console/app/views/result.erb
|
450
|
+
- lib/rhoconnect/console/app/views/rightboxlinks.erb
|
451
|
+
- lib/rhoconnect/console/app/views/select_doc.erb
|
452
|
+
- lib/rhoconnect/console/app/views/upload_doc.erb
|
453
|
+
- lib/rhoconnect/console/app/views/user.erb
|
454
|
+
- lib/rhoconnect/console/app/views/users.erb
|
455
|
+
- lib/rhoconnect/console/rhoconnect_api.rb
|
456
|
+
- lib/rhoconnect/console/server.rb
|
457
|
+
- lib/rhoconnect/console.rb
|
458
|
+
- lib/rhoconnect/cors.rb
|
459
|
+
- lib/rhoconnect/credential.rb
|
460
|
+
- lib/rhoconnect/db_adapter.rb
|
461
|
+
- lib/rhoconnect/document.rb
|
462
|
+
- lib/rhoconnect/dynamic_adapter.rb
|
463
|
+
- lib/rhoconnect/generator.rb
|
464
|
+
- lib/rhoconnect/jobs/bulk_data_job.rb
|
465
|
+
- lib/rhoconnect/jobs/ping_job.rb
|
466
|
+
- lib/rhoconnect/jobs/source_job.rb
|
467
|
+
- lib/rhoconnect/license.rb
|
468
|
+
- lib/rhoconnect/lock_ops.rb
|
469
|
+
- lib/rhoconnect/model.rb
|
470
|
+
- lib/rhoconnect/ping/android.rb
|
471
|
+
- lib/rhoconnect/ping/apple.rb
|
472
|
+
- lib/rhoconnect/ping/blackberry.rb
|
473
|
+
- lib/rhoconnect/ping.rb
|
474
|
+
- lib/rhoconnect/read_state.rb
|
475
|
+
- lib/rhoconnect/rho_indifferent_access.rb
|
476
|
+
- lib/rhoconnect/server/views/index.erb
|
477
|
+
- lib/rhoconnect/server.rb
|
478
|
+
- lib/rhoconnect/source.rb
|
479
|
+
- lib/rhoconnect/source_adapter.rb
|
480
|
+
- lib/rhoconnect/source_sync.rb
|
481
|
+
- lib/rhoconnect/stats/middleware.rb
|
482
|
+
- lib/rhoconnect/stats/record.rb
|
483
|
+
- lib/rhoconnect/store.rb
|
484
|
+
- lib/rhoconnect/tasks.rb
|
485
|
+
- lib/rhoconnect/test_methods.rb
|
486
|
+
- lib/rhoconnect/user.rb
|
487
|
+
- lib/rhoconnect/version.rb
|
488
|
+
- lib/rhoconnect/x_domain_session_wrapper.rb
|
489
|
+
- lib/rhoconnect.rb
|
490
|
+
- tasks/redis.rake
|
491
|
+
- spec/api/admin/api_token_spec.rb
|
492
|
+
- spec/api/admin/get_api_token_spec.rb
|
493
|
+
- spec/api/admin/get_license_info_spec.rb
|
494
|
+
- spec/api/admin/reset_spec.rb
|
495
|
+
- spec/api/admin/stats_spec.rb
|
496
|
+
- spec/api/api_helper.rb
|
497
|
+
- spec/api/application/rhoconnect_api_spec.rb
|
498
|
+
- spec/api/client/create_client_spec.rb
|
499
|
+
- spec/api/client/delete_client_spec.rb
|
500
|
+
- spec/api/client/get_client_params_spec.rb
|
501
|
+
- spec/api/client/list_client_docs_spec.rb
|
502
|
+
- spec/api/client/list_clients_spec.rb
|
503
|
+
- spec/api/client/ping_spec.rb
|
504
|
+
- spec/api/rhosync_api_spec.rb.orig
|
505
|
+
- spec/api/source/adapter_spec.rb
|
506
|
+
- spec/api/source/get_db_doc_spec.rb
|
507
|
+
- spec/api/source/get_source_params_spec.rb
|
508
|
+
- spec/api/source/list_source_docs_spec.rb
|
509
|
+
- spec/api/source/list_sources_spec.rb
|
510
|
+
- spec/api/source/push_deletes_spec.rb
|
511
|
+
- spec/api/source/push_objects_spec.rb
|
512
|
+
- spec/api/source/set_db_doc_spec.rb
|
513
|
+
- spec/api/source/set_refresh_time_spec.rb
|
514
|
+
- spec/api/source/upload_file_spec.rb
|
515
|
+
- spec/api/user/create_user_spec.rb
|
516
|
+
- spec/api/user/delete_user_spec.rb
|
517
|
+
- spec/api/user/list_users_spec.rb
|
518
|
+
- spec/api/user/update_user_spec.rb
|
519
|
+
- spec/api_token_spec.rb
|
520
|
+
- spec/app_spec.rb
|
521
|
+
- spec/apps/emptyapp/application.rb
|
522
|
+
- spec/apps/emptyapp/settings/license.key
|
523
|
+
- spec/apps/emptyapp/settings/settings.yml
|
524
|
+
- spec/apps/rhotestapp/application.rb
|
525
|
+
- spec/apps/rhotestapp/config.ru
|
526
|
+
- spec/apps/rhotestapp/Rakefile
|
527
|
+
- spec/apps/rhotestapp/settings/apple_fake_cert.pem
|
528
|
+
- spec/apps/rhotestapp/settings/license.key
|
529
|
+
- spec/apps/rhotestapp/settings/settings.yml
|
530
|
+
- spec/apps/rhotestapp/sources/base_adapter.rb
|
531
|
+
- spec/apps/rhotestapp/sources/fixed_schema_adapter.rb
|
532
|
+
- spec/apps/rhotestapp/sources/sample_adapter.rb
|
533
|
+
- spec/apps/rhotestapp/sources/simple_adapter.rb
|
534
|
+
- spec/apps/rhotestapp/sources/sub_adapter.rb
|
535
|
+
- spec/apps/rhotestapp/vendor/mygem-0.1.0/lib/mygem/mygem.rb
|
536
|
+
- spec/apps/rhotestapp/vendor/mygem-0.1.0/lib/mygem.rb
|
537
|
+
- spec/bulk_data/bulk_data_spec.rb
|
538
|
+
- spec/client_spec.rb
|
539
|
+
- spec/client_sync_spec.rb
|
540
|
+
- spec/doc/base.html
|
541
|
+
- spec/doc/doc_spec.rb
|
542
|
+
- spec/doc/footer.html
|
543
|
+
- spec/doc/header.html
|
544
|
+
- spec/document_spec.rb
|
545
|
+
- spec/dynamic_adapter_spec.rb
|
546
|
+
- spec/factories/factories.rb
|
547
|
+
- spec/generator/generator_spec.rb
|
548
|
+
- spec/generator/generator_spec_helper.rb
|
549
|
+
- spec/jobs/bulk_data_job_spec.rb
|
550
|
+
- spec/jobs/ping_job_spec.rb
|
551
|
+
- spec/jobs/source_job_spec.rb
|
552
|
+
- spec/license_spec.rb
|
553
|
+
- spec/model_spec.rb
|
554
|
+
- spec/perf/bulk_data_perf_spec.rb
|
555
|
+
- spec/perf/perf_spec_helper.rb
|
556
|
+
- spec/perf/store_perf_spec.rb
|
557
|
+
- spec/ping/android_spec.rb
|
558
|
+
- spec/ping/apple_spec.rb
|
559
|
+
- spec/ping/blackberry_spec.rb
|
560
|
+
- spec/read_state_spec.rb
|
561
|
+
- spec/rhosync_spec.rb
|
562
|
+
- spec/server/cors_spec.rb
|
563
|
+
- spec/server/server_spec.rb
|
564
|
+
- spec/server/x_domain_session_wrapper_spec.rb
|
565
|
+
- spec/source_adapter_spec.rb
|
566
|
+
- spec/source_spec.rb
|
567
|
+
- spec/source_sync_spec.rb
|
568
|
+
- spec/spec.opts
|
569
|
+
- spec/spec_helper.rb
|
570
|
+
- spec/stats/middleware_spec.rb
|
571
|
+
- spec/stats/record_spec.rb
|
572
|
+
- spec/store_spec.rb
|
573
|
+
- spec/support/shared_examples.rb
|
574
|
+
- spec/sync_states_spec.rb
|
575
|
+
- spec/test_methods_spec.rb
|
576
|
+
- spec/testdata/1000-data.txt
|
577
|
+
- spec/testdata/compressed/compress-data.txt
|
578
|
+
- spec/testdata/upload1.txt
|
579
|
+
- spec/testdata/upload2.txt
|
580
|
+
- spec/user_spec.rb
|
581
|
+
- bin/rhoconnect
|
582
|
+
- bin/rhoconnect-setup
|
583
|
+
homepage: http://rhomobile.com/products/rhoconnect
|
584
|
+
licenses: []
|
585
|
+
|
586
|
+
post_install_message:
|
587
|
+
rdoc_options: []
|
588
|
+
|
589
|
+
require_paths:
|
590
|
+
- lib
|
591
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
592
|
+
none: false
|
593
|
+
requirements:
|
594
|
+
- - ">="
|
595
|
+
- !ruby/object:Gem::Version
|
596
|
+
hash: 3
|
597
|
+
segments:
|
598
|
+
- 0
|
599
|
+
version: "0"
|
600
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
601
|
+
none: false
|
602
|
+
requirements:
|
603
|
+
- - ">="
|
604
|
+
- !ruby/object:Gem::Version
|
605
|
+
hash: 3
|
606
|
+
segments:
|
607
|
+
- 0
|
608
|
+
version: "0"
|
609
|
+
requirements: []
|
610
|
+
|
611
|
+
rubyforge_project:
|
612
|
+
rubygems_version: 1.8.8
|
613
|
+
signing_key:
|
614
|
+
specification_version: 3
|
615
|
+
summary: RhoConnect Server Framework
|
616
|
+
test_files:
|
617
|
+
- spec/api/admin/api_token_spec.rb
|
618
|
+
- spec/api/admin/get_api_token_spec.rb
|
619
|
+
- spec/api/admin/get_license_info_spec.rb
|
620
|
+
- spec/api/admin/reset_spec.rb
|
621
|
+
- spec/api/admin/stats_spec.rb
|
622
|
+
- spec/api/api_helper.rb
|
623
|
+
- spec/api/application/rhoconnect_api_spec.rb
|
624
|
+
- spec/api/client/create_client_spec.rb
|
625
|
+
- spec/api/client/delete_client_spec.rb
|
626
|
+
- spec/api/client/get_client_params_spec.rb
|
627
|
+
- spec/api/client/list_client_docs_spec.rb
|
628
|
+
- spec/api/client/list_clients_spec.rb
|
629
|
+
- spec/api/client/ping_spec.rb
|
630
|
+
- spec/api/rhosync_api_spec.rb.orig
|
631
|
+
- spec/api/source/adapter_spec.rb
|
632
|
+
- spec/api/source/get_db_doc_spec.rb
|
633
|
+
- spec/api/source/get_source_params_spec.rb
|
634
|
+
- spec/api/source/list_source_docs_spec.rb
|
635
|
+
- spec/api/source/list_sources_spec.rb
|
636
|
+
- spec/api/source/push_deletes_spec.rb
|
637
|
+
- spec/api/source/push_objects_spec.rb
|
638
|
+
- spec/api/source/set_db_doc_spec.rb
|
639
|
+
- spec/api/source/set_refresh_time_spec.rb
|
640
|
+
- spec/api/source/upload_file_spec.rb
|
641
|
+
- spec/api/user/create_user_spec.rb
|
642
|
+
- spec/api/user/delete_user_spec.rb
|
643
|
+
- spec/api/user/list_users_spec.rb
|
644
|
+
- spec/api/user/update_user_spec.rb
|
645
|
+
- spec/api_token_spec.rb
|
646
|
+
- spec/app_spec.rb
|
647
|
+
- spec/apps/emptyapp/application.rb
|
648
|
+
- spec/apps/emptyapp/settings/license.key
|
649
|
+
- spec/apps/emptyapp/settings/settings.yml
|
650
|
+
- spec/apps/rhotestapp/application.rb
|
651
|
+
- spec/apps/rhotestapp/config.ru
|
652
|
+
- spec/apps/rhotestapp/Rakefile
|
653
|
+
- spec/apps/rhotestapp/settings/apple_fake_cert.pem
|
654
|
+
- spec/apps/rhotestapp/settings/license.key
|
655
|
+
- spec/apps/rhotestapp/settings/settings.yml
|
656
|
+
- spec/apps/rhotestapp/sources/base_adapter.rb
|
657
|
+
- spec/apps/rhotestapp/sources/fixed_schema_adapter.rb
|
658
|
+
- spec/apps/rhotestapp/sources/sample_adapter.rb
|
659
|
+
- spec/apps/rhotestapp/sources/simple_adapter.rb
|
660
|
+
- spec/apps/rhotestapp/sources/sub_adapter.rb
|
661
|
+
- spec/apps/rhotestapp/vendor/mygem-0.1.0/lib/mygem/mygem.rb
|
662
|
+
- spec/apps/rhotestapp/vendor/mygem-0.1.0/lib/mygem.rb
|
663
|
+
- spec/bulk_data/bulk_data_spec.rb
|
664
|
+
- spec/client_spec.rb
|
665
|
+
- spec/client_sync_spec.rb
|
666
|
+
- spec/doc/base.html
|
667
|
+
- spec/doc/doc_spec.rb
|
668
|
+
- spec/doc/footer.html
|
669
|
+
- spec/doc/header.html
|
670
|
+
- spec/document_spec.rb
|
671
|
+
- spec/dynamic_adapter_spec.rb
|
672
|
+
- spec/factories/factories.rb
|
673
|
+
- spec/generator/generator_spec.rb
|
674
|
+
- spec/generator/generator_spec_helper.rb
|
675
|
+
- spec/jobs/bulk_data_job_spec.rb
|
676
|
+
- spec/jobs/ping_job_spec.rb
|
677
|
+
- spec/jobs/source_job_spec.rb
|
678
|
+
- spec/license_spec.rb
|
679
|
+
- spec/model_spec.rb
|
680
|
+
- spec/perf/bulk_data_perf_spec.rb
|
681
|
+
- spec/perf/perf_spec_helper.rb
|
682
|
+
- spec/perf/store_perf_spec.rb
|
683
|
+
- spec/ping/android_spec.rb
|
684
|
+
- spec/ping/apple_spec.rb
|
685
|
+
- spec/ping/blackberry_spec.rb
|
686
|
+
- spec/read_state_spec.rb
|
687
|
+
- spec/rhosync_spec.rb
|
688
|
+
- spec/server/cors_spec.rb
|
689
|
+
- spec/server/server_spec.rb
|
690
|
+
- spec/server/x_domain_session_wrapper_spec.rb
|
691
|
+
- spec/source_adapter_spec.rb
|
692
|
+
- spec/source_spec.rb
|
693
|
+
- spec/source_sync_spec.rb
|
694
|
+
- spec/spec.opts
|
695
|
+
- spec/spec_helper.rb
|
696
|
+
- spec/stats/middleware_spec.rb
|
697
|
+
- spec/stats/record_spec.rb
|
698
|
+
- spec/store_spec.rb
|
699
|
+
- spec/support/shared_examples.rb
|
700
|
+
- spec/sync_states_spec.rb
|
701
|
+
- spec/test_methods_spec.rb
|
702
|
+
- spec/testdata/1000-data.txt
|
703
|
+
- spec/testdata/compressed/compress-data.txt
|
704
|
+
- spec/testdata/upload1.txt
|
705
|
+
- spec/testdata/upload2.txt
|
706
|
+
- spec/user_spec.rb
|