rhoconnect 4.0.2 → 4.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.
- checksums.yaml +8 -8
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +25 -25
- data/bench/benchapp/tmp/pids/passenger.9292.pid.lock +0 -0
- data/bench/benchapp/tmp/restart.txt +0 -0
- data/bench/blobapp/settings/license.key.bak +2 -0
- data/bench/blobapp/tmp/restart.txt +0 -0
- data/bench/lib/testdata/1-data.txt +0 -0
- data/bench/lib/testdata/10-data.txt +0 -0
- data/bench/lib/testdata/2-data.txt +0 -0
- data/bench/lib/testdata/250-data.txt +0 -0
- data/bench/lib/testdata/5-blob_data.txt +0 -0
- data/bench/lib/testdata/5-data.txt +0 -0
- data/bench/lib/testdata/50-data.txt +0 -0
- data/bench/lib/testdata/500-data.txt +0 -0
- data/doc/protocol.html +1993 -0
- data/lib/rhoconnect/handler/changes/engine.rb +79 -69
- data/lib/rhoconnect/store.rb +124 -123
- data/lib/rhoconnect/version.rb +1 -1
- data/spec/coverage/rcov/assets/0.2.3/jquery-1.3.2.min.js +19 -0
- data/spec/coverage/rcov/assets/0.2.3/jquery.tablesorter.min.js +15 -0
- data/spec/coverage/rcov/assets/0.2.3/print.css +12 -0
- data/spec/coverage/rcov/assets/0.2.3/rcov.js +42 -0
- data/spec/coverage/rcov/assets/0.2.3/screen.css +270 -0
- data/spec/coverage/rcov/index.html +88 -0
- data/spec/source_sync_spec.rb +27 -4
- metadata +573 -548
data/spec/source_sync_spec.rb
CHANGED
|
@@ -495,10 +495,33 @@ describe "SourceSync" do
|
|
|
495
495
|
end
|
|
496
496
|
|
|
497
497
|
it "should do process_cud" do
|
|
498
|
-
@
|
|
499
|
-
@
|
|
500
|
-
@
|
|
501
|
-
@
|
|
498
|
+
@create_queue_name = :create
|
|
499
|
+
@update_queue_name = :update
|
|
500
|
+
@u2_fields = {:login => 'anotheruser'}
|
|
501
|
+
@u2 = User.create(@u2_fields)
|
|
502
|
+
@u2.password = 'testpass'
|
|
503
|
+
@c2_fields = {
|
|
504
|
+
:device_type => 'Android',
|
|
505
|
+
:device_pin => 'efgh',
|
|
506
|
+
:device_port => '4444',
|
|
507
|
+
:user_id => @u2.id,
|
|
508
|
+
:app_id => @a.id
|
|
509
|
+
}
|
|
510
|
+
@c2 = Client.create(@c2_fields,{:source_name => @s_fields[:name]})
|
|
511
|
+
@a.users << @u2.id
|
|
512
|
+
create_doc1 = { 'name' => 'abc', 'link' => '1', 'an_attribute' => "My attrib 2" }
|
|
513
|
+
create_doc2 = { 'name' => 'name0', 'link' => '1' }
|
|
514
|
+
create_doc3 = { 'name' => 'name7', 'link' => '7' }
|
|
515
|
+
set_source_queue_state(@s, {@create_queue_name => [[@s.name, [['4', create_doc1]]]]},@c.id,true)
|
|
516
|
+
set_source_queue_state(@s, {@create_queue_name => [[@s.name, [['5', create_doc2]]]]},@c2.id,true)
|
|
517
|
+
set_source_queue_state(@s, {@create_queue_name => [[@s.name, [['6', create_doc3]]]]},@c.id,true)
|
|
518
|
+
set_doc_state(@c, :cd => {'10'=> {'name' => 'Apple'}})
|
|
519
|
+
set_source_queue_state(@s, {@update_queue_name => [[@s.name, [['10', { 'name' => 'Android' }]]]]},@c.id,true)
|
|
520
|
+
# should receive login/logoff pair twice for create and once for update
|
|
521
|
+
@sscud.should_receive(:auth_method).exactly(6).times.and_return(true)
|
|
522
|
+
@sscud.should_receive(:_process_create).exactly(3).times
|
|
523
|
+
@sscud.should_receive(:_process_update).once
|
|
524
|
+
@sscud.should_not_receive(:_process_delete)
|
|
502
525
|
@sscud.do_cud
|
|
503
526
|
end
|
|
504
527
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rhoconnect
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.
|
|
4
|
+
version: 4.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rhomobile
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2014-03-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -181,8 +181,8 @@ dependencies:
|
|
|
181
181
|
description: RhoConnect App Integration Server and related command-line utilities
|
|
182
182
|
email: dev@rhomobile.com
|
|
183
183
|
executables:
|
|
184
|
-
- rhoconnect-benchmark
|
|
185
184
|
- rhoconnect
|
|
185
|
+
- rhoconnect-benchmark
|
|
186
186
|
extensions: []
|
|
187
187
|
extra_rdoc_files:
|
|
188
188
|
- LICENSE
|
|
@@ -192,537 +192,556 @@ files:
|
|
|
192
192
|
- CREDITS
|
|
193
193
|
- Gemfile
|
|
194
194
|
- Gemfile.lock
|
|
195
|
-
-
|
|
195
|
+
- LICENSE
|
|
196
196
|
- README.md
|
|
197
197
|
- Rakefile
|
|
198
|
-
-
|
|
199
|
-
- rhoconnect.gemspec
|
|
200
|
-
- bench/run_blob_script.sh
|
|
201
|
-
- bench/run_cud_script.sh
|
|
202
|
-
- bench/run_query_script.sh
|
|
203
|
-
- bench/blobapp/Gemfile
|
|
204
|
-
- bench/blobapp/settings/settings.yml
|
|
205
|
-
- bench/blobapp/settings/license.key
|
|
206
|
-
- bench/blobapp/models/ruby/blob_adapter.rb
|
|
207
|
-
- bench/blobapp/spec/spec_helper.rb
|
|
208
|
-
- bench/blobapp/spec/models/ruby/blob_adapter_spec.rb
|
|
209
|
-
- bench/blobapp/config.ru
|
|
210
|
-
- bench/blobapp/controllers/ruby/application_controller.rb
|
|
211
|
-
- bench/blobapp/controllers/ruby/blob_adapter_controller.rb
|
|
212
|
-
- bench/blobapp/Rakefile
|
|
198
|
+
- bench/bench
|
|
213
199
|
- bench/bench_runner.rb
|
|
214
|
-
- bench/run_query_only_script.sh
|
|
215
|
-
- bench/scripts/cud_script.rb
|
|
216
|
-
- bench/scripts/test_source_script.rb
|
|
217
|
-
- bench/scripts/query_md_script.rb
|
|
218
|
-
- bench/scripts/query_script.rb
|
|
219
|
-
- bench/scripts/query_only_script.rb
|
|
220
|
-
- bench/scripts/helpers.rb
|
|
221
|
-
- bench/scripts/test_query_script.rb
|
|
222
|
-
- bench/scripts/blob_cud_script.rb
|
|
223
200
|
- bench/benchapp/Gemfile
|
|
224
|
-
- bench/benchapp/
|
|
225
|
-
- bench/benchapp/settings/license.key
|
|
226
|
-
- bench/benchapp/models/ruby/mock_adapter.rb
|
|
227
|
-
- bench/benchapp/models/ruby/queue_mock_adapter.rb
|
|
228
|
-
- bench/benchapp/spec/spec_helper.rb
|
|
229
|
-
- bench/benchapp/spec/models/ruby/mock_adapter_spec.rb
|
|
230
|
-
- bench/benchapp/spec/models/ruby/queue_mock_adapter_spec.rb
|
|
201
|
+
- bench/benchapp/Rakefile
|
|
231
202
|
- bench/benchapp/config.ru
|
|
203
|
+
- bench/benchapp/controllers/ruby/application.rb
|
|
232
204
|
- bench/benchapp/controllers/ruby/application_controller.rb
|
|
233
205
|
- bench/benchapp/controllers/ruby/mock_adapter_controller.rb
|
|
234
|
-
- bench/benchapp/controllers/ruby/application.rb
|
|
235
206
|
- bench/benchapp/controllers/ruby/queue_mock_adapter_controller.rb
|
|
236
|
-
- bench/benchapp/
|
|
237
|
-
- bench/
|
|
238
|
-
- bench/
|
|
239
|
-
- bench/
|
|
240
|
-
- bench/spec/mock_adapter_spec.rb
|
|
241
|
-
- bench/spec/
|
|
242
|
-
- bench/spec/
|
|
243
|
-
- bench/
|
|
244
|
-
- bench/
|
|
245
|
-
- bench/
|
|
246
|
-
- bench/
|
|
247
|
-
- bench/
|
|
248
|
-
- bench/
|
|
249
|
-
- bench/
|
|
250
|
-
- bench/
|
|
251
|
-
- bench/
|
|
252
|
-
- bench/
|
|
253
|
-
- bench/
|
|
254
|
-
- bench/
|
|
207
|
+
- bench/benchapp/models/ruby/mock_adapter.rb
|
|
208
|
+
- bench/benchapp/models/ruby/queue_mock_adapter.rb
|
|
209
|
+
- bench/benchapp/settings/license.key
|
|
210
|
+
- bench/benchapp/settings/settings.yml
|
|
211
|
+
- bench/benchapp/spec/models/ruby/mock_adapter_spec.rb
|
|
212
|
+
- bench/benchapp/spec/models/ruby/queue_mock_adapter_spec.rb
|
|
213
|
+
- bench/benchapp/spec/spec_helper.rb
|
|
214
|
+
- bench/benchapp/tmp/pids/passenger.9292.pid.lock
|
|
215
|
+
- bench/benchapp/tmp/restart.txt
|
|
216
|
+
- bench/blobapp/Gemfile
|
|
217
|
+
- bench/blobapp/Rakefile
|
|
218
|
+
- bench/blobapp/config.ru
|
|
219
|
+
- bench/blobapp/controllers/ruby/application_controller.rb
|
|
220
|
+
- bench/blobapp/controllers/ruby/blob_adapter_controller.rb
|
|
221
|
+
- bench/blobapp/models/ruby/blob_adapter.rb
|
|
222
|
+
- bench/blobapp/settings/license.key
|
|
223
|
+
- bench/blobapp/settings/license.key.bak
|
|
224
|
+
- bench/blobapp/settings/settings.yml
|
|
225
|
+
- bench/blobapp/spec/models/ruby/blob_adapter_spec.rb
|
|
226
|
+
- bench/blobapp/spec/spec_helper.rb
|
|
227
|
+
- bench/blobapp/tmp/restart.txt
|
|
228
|
+
- bench/distr_bench/distr_bench
|
|
229
|
+
- bench/distr_bench/distr_bench_main
|
|
230
|
+
- bench/distr_bench/run_distr_client.sh
|
|
231
|
+
- bench/distr_bench/run_test_query_script.sh
|
|
255
232
|
- bench/lib/bench.rb
|
|
256
|
-
- bench/lib/bench/utils.rb
|
|
257
|
-
- bench/lib/bench/timer.rb
|
|
258
233
|
- bench/lib/bench/aws_utils.rb
|
|
259
234
|
- bench/lib/bench/bench_result_processor.rb
|
|
260
|
-
- bench/lib/bench/session.rb
|
|
261
|
-
- bench/lib/bench/statistics.rb
|
|
262
|
-
- bench/lib/bench/runner.rb
|
|
263
235
|
- bench/lib/bench/cli.rb
|
|
236
|
+
- bench/lib/bench/distr_runner.rb
|
|
237
|
+
- bench/lib/bench/logging.rb
|
|
264
238
|
- bench/lib/bench/mock_client.rb
|
|
265
239
|
- bench/lib/bench/result.rb
|
|
266
|
-
- bench/lib/bench/
|
|
240
|
+
- bench/lib/bench/runner.rb
|
|
241
|
+
- bench/lib/bench/session.rb
|
|
242
|
+
- bench/lib/bench/statistics.rb
|
|
267
243
|
- bench/lib/bench/test_data.rb
|
|
268
|
-
- bench/lib/bench/
|
|
269
|
-
- bench/
|
|
270
|
-
- bench/
|
|
271
|
-
- bench/
|
|
272
|
-
- bench/
|
|
273
|
-
- bench/
|
|
274
|
-
- bench/
|
|
244
|
+
- bench/lib/bench/timer.rb
|
|
245
|
+
- bench/lib/bench/utils.rb
|
|
246
|
+
- bench/lib/testdata/1-data.txt
|
|
247
|
+
- bench/lib/testdata/10-data.txt
|
|
248
|
+
- bench/lib/testdata/100-data.txt
|
|
249
|
+
- bench/lib/testdata/2-data.txt
|
|
250
|
+
- bench/lib/testdata/250-data.txt
|
|
251
|
+
- bench/lib/testdata/5-blob_data.txt
|
|
252
|
+
- bench/lib/testdata/5-data.txt
|
|
253
|
+
- bench/lib/testdata/50-data.txt
|
|
254
|
+
- bench/lib/testdata/500-data.txt
|
|
255
|
+
- bench/lib/testdata/images/icon.ico
|
|
256
|
+
- bench/lib/testdata/images/icon.png
|
|
257
|
+
- bench/lib/testdata/images/loading-Landscape.png
|
|
258
|
+
- bench/lib/testdata/images/loading-LandscapeLeft.png
|
|
259
|
+
- bench/lib/testdata/images/loading-LandscapeRight.png
|
|
260
|
+
- bench/lib/testdata/images/loading-Portrait.png
|
|
261
|
+
- bench/lib/testdata/images/loading-PortraitUpsideDown.png
|
|
262
|
+
- bench/lib/testdata/images/loading.png
|
|
263
|
+
- bench/lib/testdata/images/loading@2x.png
|
|
264
|
+
- bench/prepare_bench
|
|
275
265
|
- bench/run_bench.sh
|
|
266
|
+
- bench/run_blob_script.sh
|
|
267
|
+
- bench/run_cud_script.sh
|
|
276
268
|
- bench/run_query_md_script.sh
|
|
277
|
-
-
|
|
278
|
-
-
|
|
279
|
-
-
|
|
280
|
-
-
|
|
281
|
-
-
|
|
282
|
-
-
|
|
283
|
-
-
|
|
284
|
-
-
|
|
285
|
-
-
|
|
286
|
-
-
|
|
287
|
-
-
|
|
288
|
-
-
|
|
289
|
-
-
|
|
290
|
-
-
|
|
291
|
-
-
|
|
292
|
-
-
|
|
293
|
-
-
|
|
269
|
+
- bench/run_query_only_script.sh
|
|
270
|
+
- bench/run_query_script.sh
|
|
271
|
+
- bench/run_test_query_script.sh
|
|
272
|
+
- bench/run_test_source_script.sh
|
|
273
|
+
- bench/scripts/blob_cud_script.rb
|
|
274
|
+
- bench/scripts/cud_script.rb
|
|
275
|
+
- bench/scripts/helpers.rb
|
|
276
|
+
- bench/scripts/query_md_script.rb
|
|
277
|
+
- bench/scripts/query_only_script.rb
|
|
278
|
+
- bench/scripts/query_script.rb
|
|
279
|
+
- bench/scripts/test_query_script.rb
|
|
280
|
+
- bench/scripts/test_source_script.rb
|
|
281
|
+
- bench/spec/bench_spec_helper.rb
|
|
282
|
+
- bench/spec/logging_spec.rb
|
|
283
|
+
- bench/spec/mock_adapter_spec.rb
|
|
284
|
+
- bench/spec/mock_client_spec.rb
|
|
285
|
+
- bench/spec/result_spec.rb
|
|
286
|
+
- bench/spec/utils_spec.rb
|
|
287
|
+
- bin/rhoconnect
|
|
288
|
+
- bin/rhoconnect-benchmark
|
|
289
|
+
- commands/dtach/dtach_about.rb
|
|
290
|
+
- commands/dtach/dtach_install.rb
|
|
291
|
+
- commands/dtach/redis_attach.rb
|
|
294
292
|
- commands/generators/app.rb
|
|
295
293
|
- commands/generators/controller.rb
|
|
296
294
|
- commands/generators/model.rb
|
|
297
295
|
- commands/generators/source.rb
|
|
298
296
|
- commands/generators/update.rb
|
|
299
|
-
- commands/rhoconnect_war/war.rb
|
|
300
|
-
- commands/rhoconnect_console/console.rb
|
|
301
|
-
- commands/rhoconnect_console/console_helper.rb
|
|
302
297
|
- commands/parser.rb
|
|
298
|
+
- commands/redis/redis_about.rb
|
|
303
299
|
- commands/redis/redis_download.rb
|
|
300
|
+
- commands/redis/redis_install.rb
|
|
304
301
|
- commands/redis/redis_make.rb
|
|
305
302
|
- commands/redis/redis_restart.rb
|
|
306
|
-
- commands/redis/redis_install.rb
|
|
307
303
|
- commands/redis/redis_start.rb
|
|
308
|
-
- commands/redis/redis_stop.rb
|
|
309
|
-
- commands/redis/redis_about.rb
|
|
310
304
|
- commands/redis/redis_startbg.rb
|
|
311
305
|
- commands/redis/redis_status.rb
|
|
312
|
-
- commands/
|
|
313
|
-
- commands/
|
|
314
|
-
- commands/
|
|
315
|
-
-
|
|
306
|
+
- commands/redis/redis_stop.rb
|
|
307
|
+
- commands/rhoconnect/config.rb
|
|
308
|
+
- commands/rhoconnect/flushdb.rb
|
|
309
|
+
- commands/rhoconnect/get_token.rb
|
|
310
|
+
- commands/rhoconnect/restart.rb
|
|
311
|
+
- commands/rhoconnect/routes.rb
|
|
312
|
+
- commands/rhoconnect/secret.rb
|
|
313
|
+
- commands/rhoconnect/set_admin_password.rb
|
|
314
|
+
- commands/rhoconnect/start.rb
|
|
315
|
+
- commands/rhoconnect/startbg.rb
|
|
316
|
+
- commands/rhoconnect/startdebug.rb
|
|
317
|
+
- commands/rhoconnect/stop.rb
|
|
318
|
+
- commands/rhoconnect/version.rb
|
|
319
|
+
- commands/rhoconnect/web.rb
|
|
320
|
+
- commands/rhoconnect_attach/attach.rb
|
|
321
|
+
- commands/rhoconnect_console/console.rb
|
|
322
|
+
- commands/rhoconnect_console/console_helper.rb
|
|
323
|
+
- commands/rhoconnect_spec/spec.rb
|
|
324
|
+
- commands/rhoconnect_war/war.rb
|
|
325
|
+
- commands/utilities/blank_app.ru
|
|
326
|
+
- commands/utilities/redis_runner.rb
|
|
327
|
+
- doc/adapters-crm.txt
|
|
328
|
+
- doc/adapters-intro.txt
|
|
329
|
+
- doc/async-jobs.txt
|
|
330
|
+
- doc/authentication.txt
|
|
331
|
+
- doc/benchmarks-running.txt
|
|
332
|
+
- doc/benchmarks.txt
|
|
333
|
+
- doc/blob-sync.txt
|
|
334
|
+
- doc/bulk-sync.txt
|
|
335
|
+
- doc/client-java.txt
|
|
336
|
+
- doc/client-objc.txt
|
|
337
|
+
- doc/client.txt
|
|
316
338
|
- doc/command-line.txt
|
|
317
|
-
- doc/
|
|
318
|
-
- doc/
|
|
319
|
-
- doc/
|
|
339
|
+
- doc/cud-conflicts.txt
|
|
340
|
+
- doc/data-partitioning.txt
|
|
341
|
+
- doc/deploying.txt
|
|
342
|
+
- doc/extending-rhoconnect-server.txt
|
|
343
|
+
- doc/heroku-addon.txt
|
|
344
|
+
- doc/hosting-rhohub.txt
|
|
345
|
+
- doc/install.txt
|
|
346
|
+
- doc/introduction.txt
|
|
347
|
+
- doc/java-plugin.txt
|
|
348
|
+
- doc/licensing.txt
|
|
349
|
+
- doc/metadata.txt
|
|
350
|
+
- doc/migration.txt
|
|
351
|
+
- doc/net-plugin.txt
|
|
320
352
|
- doc/plugin-intro.txt
|
|
353
|
+
- doc/preparing-production.txt
|
|
354
|
+
- doc/protocol.html
|
|
355
|
+
- doc/public/cli.txt
|
|
321
356
|
- doc/public/css/print.css
|
|
322
357
|
- doc/public/css/screen.css
|
|
323
358
|
- doc/public/css/style.css
|
|
324
|
-
- doc/
|
|
325
|
-
- doc/client-
|
|
326
|
-
- doc/
|
|
359
|
+
- doc/push-backend-setup.txt
|
|
360
|
+
- doc/push-client-setup-android.txt
|
|
361
|
+
- doc/push-client-setup-ios.txt
|
|
362
|
+
- doc/push-client-setup-rps.txt
|
|
363
|
+
- doc/push-client-setup.txt
|
|
327
364
|
- doc/push-server-setup.txt
|
|
365
|
+
- doc/push-testing.txt
|
|
328
366
|
- doc/push.txt
|
|
367
|
+
- doc/rails-plugin.txt
|
|
368
|
+
- doc/rest-api.txt
|
|
329
369
|
- doc/rhoconnect-calculator.txt
|
|
330
|
-
- doc/cud-conflicts.txt
|
|
331
|
-
- doc/hosting-rhohub.txt
|
|
332
|
-
- doc/push-client-setup-rps.txt
|
|
333
|
-
- doc/settings.txt
|
|
334
370
|
- doc/rhoconnect-redis-stack.txt
|
|
335
|
-
- doc/
|
|
336
|
-
- doc/
|
|
337
|
-
- doc/rest-api.txt
|
|
338
|
-
- doc/push-testing.txt
|
|
339
|
-
- doc/push-client-setup-android.txt
|
|
340
|
-
- doc/supported-platforms.txt
|
|
371
|
+
- doc/session-and-configuration.txt
|
|
372
|
+
- doc/settings.txt
|
|
341
373
|
- doc/source-adapters-intro.txt
|
|
342
|
-
- doc/
|
|
343
|
-
- doc/
|
|
344
|
-
- doc/
|
|
345
|
-
- doc/
|
|
346
|
-
- doc/
|
|
347
|
-
- doc/licensing.txt
|
|
348
|
-
- doc/net-plugin.txt
|
|
349
|
-
- doc/client-java.txt
|
|
350
|
-
- doc/extending-rhoconnect-server.txt
|
|
351
|
-
- doc/preparing-production.txt
|
|
352
|
-
- doc/push-backend-setup.txt
|
|
353
|
-
- doc/client.txt
|
|
354
|
-
- doc/benchmarks.txt
|
|
374
|
+
- doc/source-adapters-js.txt
|
|
375
|
+
- doc/source-adapters.txt
|
|
376
|
+
- doc/stats-middleware.txt
|
|
377
|
+
- doc/supported-platforms.txt
|
|
378
|
+
- doc/testing.txt
|
|
355
379
|
- doc/tutorial.txt
|
|
356
|
-
- doc/
|
|
357
|
-
- doc/data-partitioning.txt
|
|
358
|
-
- doc/install.txt
|
|
359
|
-
- doc/push-client-setup.txt
|
|
360
|
-
- doc/metadata.txt
|
|
361
|
-
- doc/rails-plugin.txt
|
|
362
|
-
- doc/java-plugin.txt
|
|
363
|
-
- doc/source-adapters-js.txt
|
|
364
|
-
- doc/adapters-intro.txt
|
|
365
|
-
- doc/migration.txt
|
|
366
|
-
- doc/stats-middleware.txt
|
|
367
|
-
- doc/adapters-crm.txt
|
|
368
|
-
- examples/simple/my_server.rb
|
|
380
|
+
- doc/web-console.txt
|
|
369
381
|
- examples/simple/Gemfile
|
|
382
|
+
- examples/simple/Rakefile
|
|
370
383
|
- examples/simple/application.rb
|
|
371
|
-
- examples/simple/
|
|
384
|
+
- examples/simple/config.ru
|
|
385
|
+
- examples/simple/my_server.rb
|
|
386
|
+
- examples/simple/settings/license.key
|
|
387
|
+
- examples/simple/settings/settings.yml
|
|
372
388
|
- examples/simple/sources/product.rb
|
|
389
|
+
- examples/simple/sources/sample_adapter.rb
|
|
373
390
|
- examples/simple/sources/simple_adapter.rb
|
|
374
|
-
- examples/simple/settings/settings.yml
|
|
375
|
-
- examples/simple/settings/license.key
|
|
376
|
-
- examples/simple/config.ru
|
|
377
|
-
- examples/simple/Rakefile
|
|
378
391
|
- generators/rhoconnect.rb
|
|
379
|
-
- generators/templates/application/package.json
|
|
380
392
|
- generators/templates/application/Gemfile
|
|
381
|
-
- generators/templates/application/
|
|
393
|
+
- generators/templates/application/Rakefile
|
|
394
|
+
- generators/templates/application/config.ru
|
|
395
|
+
- generators/templates/application/controllers/js/application_controller.js
|
|
396
|
+
- generators/templates/application/controllers/ruby/application_controller.rb
|
|
382
397
|
- generators/templates/application/gitignore
|
|
383
|
-
- generators/templates/application/
|
|
398
|
+
- generators/templates/application/package.json
|
|
399
|
+
- generators/templates/application/rcgemfile
|
|
384
400
|
- generators/templates/application/settings/license.key
|
|
401
|
+
- generators/templates/application/settings/settings.yml
|
|
402
|
+
- generators/templates/application/spec/application_controller_spec.rb
|
|
385
403
|
- generators/templates/application/spec/js_spec.rb
|
|
386
404
|
- generators/templates/application/spec/spec_helper.rb
|
|
387
|
-
- generators/templates/application/spec/application_controller_spec.rb
|
|
388
|
-
- generators/templates/application/config.ru
|
|
389
|
-
- generators/templates/application/controllers/js/application_controller.js
|
|
390
|
-
- generators/templates/application/controllers/ruby/application_controller.rb
|
|
391
|
-
- generators/templates/application/Rakefile
|
|
392
|
-
- generators/templates/source/models/js/model.js
|
|
393
|
-
- generators/templates/source/models/ruby/model.rb
|
|
394
|
-
- generators/templates/source/models/ruby/model_spec.rb
|
|
395
405
|
- generators/templates/source/controllers/js/controller.js
|
|
396
406
|
- generators/templates/source/controllers/ruby/controller.rb
|
|
397
407
|
- generators/templates/source/controllers/ruby/controller_spec.rb
|
|
408
|
+
- generators/templates/source/models/js/model.js
|
|
409
|
+
- generators/templates/source/models/ruby/model.rb
|
|
410
|
+
- generators/templates/source/models/ruby/model_spec.rb
|
|
411
|
+
- install.sh
|
|
412
|
+
- installer/unix-like/create_texts.rb
|
|
413
|
+
- installer/unix-like/post_install.sh
|
|
414
|
+
- installer/unix-like/post_uninstall.sh
|
|
415
|
+
- installer/unix-like/pre_install.sh
|
|
416
|
+
- installer/unix-like/pre_uninstall.sh
|
|
417
|
+
- installer/unix-like/rho_connect_install_checkers.rb
|
|
418
|
+
- installer/unix-like/rho_connect_install_constants.rb
|
|
419
|
+
- installer/unix-like/rho_connect_install_debian.rb
|
|
420
|
+
- installer/unix-like/rho_connect_install_dnd.rb
|
|
421
|
+
- installer/unix-like/rho_connect_install_get_params.rb
|
|
422
|
+
- installer/unix-like/rho_connect_install_installers.rb
|
|
423
|
+
- installer/unix-like/rho_connect_install_utilities.rb
|
|
424
|
+
- installer/unix-like/rho_connect_install_yum.rb
|
|
425
|
+
- installer/unix-like/rhoinstaller.rb
|
|
398
426
|
- installer/utils/constants.rb
|
|
399
|
-
- installer/utils/package_upload/s3_upload.rb
|
|
400
|
-
- installer/utils/package_upload/repos.rake
|
|
401
|
-
- installer/utils/package_upload/s3_single_file.rb
|
|
402
|
-
- installer/utils/nix_install_test.rb
|
|
403
427
|
- installer/utils/create_sha1.rb
|
|
404
428
|
- installer/utils/delete_from_s3.rb
|
|
405
|
-
- installer/utils/verify_checksum.rb
|
|
406
|
-
- installer/utils/nix_installation.rake
|
|
407
429
|
- installer/utils/download_from_s3.rb
|
|
408
|
-
- installer/
|
|
409
|
-
- installer/
|
|
430
|
+
- installer/utils/nix_install_test.rb
|
|
431
|
+
- installer/utils/nix_installation.rake
|
|
432
|
+
- installer/utils/package_upload/repos.rake
|
|
433
|
+
- installer/utils/package_upload/s3_single_file.rb
|
|
434
|
+
- installer/utils/package_upload/s3_upload.rb
|
|
435
|
+
- installer/utils/verify_checksum.rb
|
|
410
436
|
- installer/windows/EnvVarUpdate.nsh
|
|
411
437
|
- installer/windows/ServiceLib.nsh
|
|
412
438
|
- installer/windows/configUi.ini
|
|
439
|
+
- installer/windows/icon.ico
|
|
413
440
|
- installer/windows/rhosync.nsi
|
|
414
|
-
- installer/
|
|
415
|
-
-
|
|
416
|
-
-
|
|
417
|
-
-
|
|
418
|
-
-
|
|
419
|
-
-
|
|
420
|
-
-
|
|
421
|
-
-
|
|
422
|
-
-
|
|
423
|
-
-
|
|
424
|
-
-
|
|
425
|
-
-
|
|
426
|
-
- installer/unix-like/post_install.sh
|
|
427
|
-
- installer/unix-like/pre_install.sh
|
|
428
|
-
- lib/rhoconnect/jobs/source_job.rb
|
|
429
|
-
- lib/rhoconnect/jobs/bulk_data_job.rb
|
|
430
|
-
- lib/rhoconnect/jobs/ping_job.rb
|
|
441
|
+
- installer/windows/uninstall.bat
|
|
442
|
+
- js-adapters/ballroom.js
|
|
443
|
+
- js-adapters/exceptions.js
|
|
444
|
+
- js-adapters/node.rb
|
|
445
|
+
- js-adapters/node_channel.rb
|
|
446
|
+
- js-adapters/request.js
|
|
447
|
+
- js-adapters/response.js
|
|
448
|
+
- js-adapters/rhoconnect_helpers.js
|
|
449
|
+
- js-adapters/router.js
|
|
450
|
+
- js-adapters/server.js
|
|
451
|
+
- lib/rhoconnect.rb
|
|
452
|
+
- lib/rhoconnect/api_token.rb
|
|
431
453
|
- lib/rhoconnect/app.rb
|
|
454
|
+
- lib/rhoconnect/application/init.rb
|
|
455
|
+
- lib/rhoconnect/async.rb
|
|
456
|
+
- lib/rhoconnect/bulk_data.rb
|
|
457
|
+
- lib/rhoconnect/bulk_data/bulk_data.rb
|
|
458
|
+
- lib/rhoconnect/bulk_data/syncdb.index.schema
|
|
459
|
+
- lib/rhoconnect/bulk_data/syncdb.schema
|
|
460
|
+
- lib/rhoconnect/client.rb
|
|
461
|
+
- lib/rhoconnect/condition/add_parameter.rb
|
|
462
|
+
- lib/rhoconnect/condition/admin_required.rb
|
|
463
|
+
- lib/rhoconnect/condition/client_required.rb
|
|
464
|
+
- lib/rhoconnect/condition/login_required.rb
|
|
465
|
+
- lib/rhoconnect/condition/source_required.rb
|
|
466
|
+
- lib/rhoconnect/condition/verbs.rb
|
|
467
|
+
- lib/rhoconnect/condition/verify_success.rb
|
|
468
|
+
- lib/rhoconnect/console.rb
|
|
469
|
+
- lib/rhoconnect/console/server.rb
|
|
470
|
+
- lib/rhoconnect/controller/app_base.rb
|
|
471
|
+
- lib/rhoconnect/controller/base.rb
|
|
472
|
+
- lib/rhoconnect/controller/clients_controller.rb
|
|
473
|
+
- lib/rhoconnect/controller/dynamic_adapter_controller.rb
|
|
474
|
+
- lib/rhoconnect/controller/js_base.rb
|
|
475
|
+
- lib/rhoconnect/controller/read_state_controller.rb
|
|
476
|
+
- lib/rhoconnect/controller/source_adapter_base.rb
|
|
477
|
+
- lib/rhoconnect/controller/sources_controller.rb
|
|
478
|
+
- lib/rhoconnect/controller/store_controller.rb
|
|
479
|
+
- lib/rhoconnect/controller/system_controller.rb
|
|
480
|
+
- lib/rhoconnect/controller/users_controller.rb
|
|
432
481
|
- lib/rhoconnect/credential.rb
|
|
433
482
|
- lib/rhoconnect/db_adapter.rb
|
|
434
|
-
- lib/rhoconnect/
|
|
435
|
-
- lib/rhoconnect/
|
|
436
|
-
- lib/rhoconnect/
|
|
437
|
-
- lib/rhoconnect/handler/
|
|
438
|
-
- lib/rhoconnect/handler/helpers/source_job.rb
|
|
439
|
-
- lib/rhoconnect/handler/helpers/auth_method.rb
|
|
440
|
-
- lib/rhoconnect/handler/helpers/bulk_data.rb
|
|
441
|
-
- lib/rhoconnect/handler/helpers/binding.rb
|
|
442
|
-
- lib/rhoconnect/handler/sync.rb
|
|
443
|
-
- lib/rhoconnect/handler/query.rb
|
|
444
|
-
- lib/rhoconnect/handler/search.rb
|
|
445
|
-
- lib/rhoconnect/handler/query/pass_through_runner.rb
|
|
446
|
-
- lib/rhoconnect/handler/query/execute_methods.rb
|
|
447
|
-
- lib/rhoconnect/handler/query/runner.rb
|
|
448
|
-
- lib/rhoconnect/handler/query/engine.rb
|
|
449
|
-
- lib/rhoconnect/handler/plugin_callbacks/execute_methods.rb
|
|
450
|
-
- lib/rhoconnect/handler/plugin_callbacks/runner.rb
|
|
451
|
-
- lib/rhoconnect/handler/bulk_data.rb
|
|
483
|
+
- lib/rhoconnect/document.rb
|
|
484
|
+
- lib/rhoconnect/generator.rb
|
|
485
|
+
- lib/rhoconnect/graph_helper.rb
|
|
486
|
+
- lib/rhoconnect/handler/authenticate.rb
|
|
452
487
|
- lib/rhoconnect/handler/authenticate/execute_methods.rb
|
|
453
488
|
- lib/rhoconnect/handler/authenticate/runner.rb
|
|
454
|
-
- lib/rhoconnect/handler/
|
|
455
|
-
- lib/rhoconnect/handler/authenticate.rb
|
|
456
|
-
- lib/rhoconnect/handler/helpers.rb
|
|
489
|
+
- lib/rhoconnect/handler/bulk_data.rb
|
|
457
490
|
- lib/rhoconnect/handler/changes.rb
|
|
458
|
-
- lib/rhoconnect/handler/changes/
|
|
491
|
+
- lib/rhoconnect/handler/changes/engine.rb
|
|
459
492
|
- lib/rhoconnect/handler/changes/execute_methods.rb
|
|
460
|
-
- lib/rhoconnect/handler/changes/runner.rb
|
|
461
493
|
- lib/rhoconnect/handler/changes/hooks.rb
|
|
462
|
-
- lib/rhoconnect/handler/changes/
|
|
463
|
-
- lib/rhoconnect/
|
|
464
|
-
- lib/rhoconnect/
|
|
465
|
-
- lib/rhoconnect/
|
|
466
|
-
- lib/rhoconnect/
|
|
467
|
-
- lib/rhoconnect/
|
|
494
|
+
- lib/rhoconnect/handler/changes/pass_through_runner.rb
|
|
495
|
+
- lib/rhoconnect/handler/changes/runner.rb
|
|
496
|
+
- lib/rhoconnect/handler/helpers.rb
|
|
497
|
+
- lib/rhoconnect/handler/helpers/auth_method.rb
|
|
498
|
+
- lib/rhoconnect/handler/helpers/binding.rb
|
|
499
|
+
- lib/rhoconnect/handler/helpers/bulk_data.rb
|
|
500
|
+
- lib/rhoconnect/handler/helpers/source_job.rb
|
|
501
|
+
- lib/rhoconnect/handler/plugin_callbacks.rb
|
|
502
|
+
- lib/rhoconnect/handler/plugin_callbacks/execute_methods.rb
|
|
503
|
+
- lib/rhoconnect/handler/plugin_callbacks/runner.rb
|
|
504
|
+
- lib/rhoconnect/handler/query.rb
|
|
505
|
+
- lib/rhoconnect/handler/query/engine.rb
|
|
506
|
+
- lib/rhoconnect/handler/query/execute_methods.rb
|
|
507
|
+
- lib/rhoconnect/handler/query/pass_through_runner.rb
|
|
508
|
+
- lib/rhoconnect/handler/query/runner.rb
|
|
509
|
+
- lib/rhoconnect/handler/search.rb
|
|
510
|
+
- lib/rhoconnect/handler/search/engine.rb
|
|
511
|
+
- lib/rhoconnect/handler/search/execute_methods.rb
|
|
512
|
+
- lib/rhoconnect/handler/search/pass_through_runner.rb
|
|
513
|
+
- lib/rhoconnect/handler/search/runner.rb
|
|
514
|
+
- lib/rhoconnect/handler/sync.rb
|
|
515
|
+
- lib/rhoconnect/jobs/bulk_data_job.rb
|
|
516
|
+
- lib/rhoconnect/jobs/ping_job.rb
|
|
517
|
+
- lib/rhoconnect/jobs/source_job.rb
|
|
468
518
|
- lib/rhoconnect/license.rb
|
|
469
|
-
- lib/rhoconnect/
|
|
470
|
-
- lib/rhoconnect/model/helpers/find_duplicates_on_update.rb
|
|
471
|
-
- lib/rhoconnect/model/dynamic_adapter_model.rb
|
|
472
|
-
- lib/rhoconnect/model/base.rb
|
|
473
|
-
- lib/rhoconnect/model/js_base.rb
|
|
474
|
-
- lib/rhoconnect/model/helpers.rb
|
|
475
|
-
- lib/rhoconnect/server.rb
|
|
519
|
+
- lib/rhoconnect/lock_ops.rb
|
|
476
520
|
- lib/rhoconnect/middleware/body_content_type_parser.rb
|
|
477
521
|
- lib/rhoconnect/middleware/cors.rb
|
|
522
|
+
- lib/rhoconnect/middleware/current_app.rb
|
|
478
523
|
- lib/rhoconnect/middleware/current_user.rb
|
|
479
524
|
- lib/rhoconnect/middleware/helpers.rb
|
|
480
525
|
- lib/rhoconnect/middleware/stats.rb
|
|
481
|
-
- lib/rhoconnect/middleware/current_app.rb
|
|
482
526
|
- lib/rhoconnect/middleware/x_domain_session_wrapper.rb
|
|
483
|
-
- lib/rhoconnect/
|
|
527
|
+
- lib/rhoconnect/model/base.rb
|
|
528
|
+
- lib/rhoconnect/model/dynamic_adapter_model.rb
|
|
529
|
+
- lib/rhoconnect/model/helpers.rb
|
|
530
|
+
- lib/rhoconnect/model/helpers/find_duplicates_on_update.rb
|
|
531
|
+
- lib/rhoconnect/model/js_base.rb
|
|
532
|
+
- lib/rhoconnect/ping.rb
|
|
533
|
+
- lib/rhoconnect/ping/apple.rb
|
|
534
|
+
- lib/rhoconnect/ping/gcm.rb
|
|
535
|
+
- lib/rhoconnect/ping/rhoconnect_push.rb
|
|
536
|
+
- lib/rhoconnect/predefined_adapters/bench_adapter.rb
|
|
537
|
+
- lib/rhoconnect/predefined_adapters/controllers/js/rho_internal_js_bench_adapter_controller.js
|
|
538
|
+
- lib/rhoconnect/predefined_adapters/models/js/rho_internal_js_bench_adapter.js
|
|
539
|
+
- lib/rhoconnect/read_state.rb
|
|
484
540
|
- lib/rhoconnect/rho_indifferent_access.rb
|
|
485
|
-
- lib/rhoconnect/
|
|
486
|
-
- lib/rhoconnect/
|
|
487
|
-
- lib/rhoconnect/
|
|
488
|
-
- lib/rhoconnect/
|
|
489
|
-
- lib/rhoconnect/
|
|
490
|
-
- lib/rhoconnect/
|
|
491
|
-
- lib/rhoconnect/
|
|
492
|
-
- lib/rhoconnect/
|
|
493
|
-
- lib/rhoconnect/
|
|
494
|
-
- lib/rhoconnect/
|
|
495
|
-
- lib/rhoconnect/
|
|
496
|
-
- lib/rhoconnect/console.
|
|
497
|
-
- lib/rhoconnect/
|
|
498
|
-
- lib/rhoconnect/
|
|
499
|
-
- lib/rhoconnect/
|
|
500
|
-
- lib/rhoconnect/
|
|
501
|
-
- lib/rhoconnect/
|
|
502
|
-
- lib/rhoconnect/
|
|
503
|
-
- lib/rhoconnect/condition/admin_required.rb
|
|
504
|
-
- lib/rhoconnect/condition/client_required.rb
|
|
505
|
-
- lib/rhoconnect/condition/source_required.rb
|
|
506
|
-
- lib/rhoconnect/condition/login_required.rb
|
|
507
|
-
- lib/rhoconnect/async.rb
|
|
508
|
-
- lib/rhoconnect/application/init.rb
|
|
509
|
-
- lib/rhoconnect/web-console/public/jqplot/jquery.jqplot.min.js
|
|
510
|
-
- lib/rhoconnect/web-console/public/jqplot/jqplot.cursor.js
|
|
511
|
-
- lib/rhoconnect/web-console/public/jqplot/jquery.jqplot.min.css
|
|
512
|
-
- lib/rhoconnect/web-console/public/jqplot/jqplot.dateAxisRenderer.min.js
|
|
513
|
-
- lib/rhoconnect/web-console/public/jqplot/jqplot.categoryAxisRenderer.min.js
|
|
514
|
-
- lib/rhoconnect/web-console/public/jqplot/jqplot.canvasAxisLabelRenderer.js
|
|
515
|
-
- lib/rhoconnect/web-console/public/jqplot/jqplot.barRenderer.min.js
|
|
516
|
-
- lib/rhoconnect/web-console/public/jqplot/jqplot.pointLabels.min.js
|
|
517
|
-
- lib/rhoconnect/web-console/public/jqplot/jquery-1.4.2.min.js
|
|
518
|
-
- lib/rhoconnect/web-console/public/jqplot/jqplot.canvasAxisTickRenderer.js
|
|
519
|
-
- lib/rhoconnect/web-console/public/jqplot/jqplot.canvasTextRenderer.js
|
|
520
|
-
- lib/rhoconnect/web-console/public/jqplot/jqplot.dateAxisRenderer.js
|
|
521
|
-
- lib/rhoconnect/web-console/public/jqplot/excanvas.min.js
|
|
522
|
-
- lib/rhoconnect/web-console/public/rhoconnect-web.js
|
|
523
|
-
- lib/rhoconnect/web-console/public/underscore.js
|
|
524
|
-
- lib/rhoconnect/web-console/public/bootstrap.css
|
|
525
|
-
- lib/rhoconnect/web-console/public/logo.png
|
|
541
|
+
- lib/rhoconnect/server.rb
|
|
542
|
+
- lib/rhoconnect/source.rb
|
|
543
|
+
- lib/rhoconnect/stats/record.rb
|
|
544
|
+
- lib/rhoconnect/store.rb
|
|
545
|
+
- lib/rhoconnect/store_orm.rb
|
|
546
|
+
- lib/rhoconnect/test_methods.rb
|
|
547
|
+
- lib/rhoconnect/user.rb
|
|
548
|
+
- lib/rhoconnect/utilities.rb
|
|
549
|
+
- lib/rhoconnect/version.rb
|
|
550
|
+
- lib/rhoconnect/web-console/controllers/admins.js
|
|
551
|
+
- lib/rhoconnect/web-console/models/adapter.js
|
|
552
|
+
- lib/rhoconnect/web-console/models/client.js
|
|
553
|
+
- lib/rhoconnect/web-console/models/doc.js
|
|
554
|
+
- lib/rhoconnect/web-console/models/session.js
|
|
555
|
+
- lib/rhoconnect/web-console/models/source.js
|
|
556
|
+
- lib/rhoconnect/web-console/models/stats.js
|
|
557
|
+
- lib/rhoconnect/web-console/models/user.js
|
|
558
|
+
- lib/rhoconnect/web-console/public/UNVR67bold.ttf
|
|
526
559
|
- lib/rhoconnect/web-console/public/backbone.js
|
|
527
|
-
- lib/rhoconnect/web-console/public/jquery-1.7.1.min.js
|
|
528
560
|
- lib/rhoconnect/web-console/public/bootstrap-collapse.js
|
|
529
|
-
- lib/rhoconnect/web-console/public/
|
|
530
|
-
- lib/rhoconnect/web-console/
|
|
531
|
-
- lib/rhoconnect/web-console/
|
|
561
|
+
- lib/rhoconnect/web-console/public/bootstrap.css
|
|
562
|
+
- lib/rhoconnect/web-console/public/jqplot/excanvas.min.js
|
|
563
|
+
- lib/rhoconnect/web-console/public/jqplot/jqplot.barRenderer.min.js
|
|
564
|
+
- lib/rhoconnect/web-console/public/jqplot/jqplot.canvasAxisLabelRenderer.js
|
|
565
|
+
- lib/rhoconnect/web-console/public/jqplot/jqplot.canvasAxisTickRenderer.js
|
|
566
|
+
- lib/rhoconnect/web-console/public/jqplot/jqplot.canvasTextRenderer.js
|
|
567
|
+
- lib/rhoconnect/web-console/public/jqplot/jqplot.categoryAxisRenderer.min.js
|
|
568
|
+
- lib/rhoconnect/web-console/public/jqplot/jqplot.cursor.js
|
|
569
|
+
- lib/rhoconnect/web-console/public/jqplot/jqplot.dateAxisRenderer.js
|
|
570
|
+
- lib/rhoconnect/web-console/public/jqplot/jqplot.dateAxisRenderer.min.js
|
|
571
|
+
- lib/rhoconnect/web-console/public/jqplot/jqplot.pointLabels.min.js
|
|
572
|
+
- lib/rhoconnect/web-console/public/jqplot/jquery-1.4.2.min.js
|
|
573
|
+
- lib/rhoconnect/web-console/public/jqplot/jquery.jqplot.min.css
|
|
574
|
+
- lib/rhoconnect/web-console/public/jqplot/jquery.jqplot.min.js
|
|
575
|
+
- lib/rhoconnect/web-console/public/jquery-1.7.1.min.js
|
|
576
|
+
- lib/rhoconnect/web-console/public/logo.png
|
|
577
|
+
- lib/rhoconnect/web-console/public/rhoconnect-web.js
|
|
578
|
+
- lib/rhoconnect/web-console/public/underscore.js
|
|
579
|
+
- lib/rhoconnect/web-console/server.rb
|
|
580
|
+
- lib/rhoconnect/web-console/templates/index.erb
|
|
581
|
+
- lib/rhoconnect/web-console/templates/jqplot.erb
|
|
582
|
+
- lib/rhoconnect/web-console/views/api_token.js
|
|
583
|
+
- lib/rhoconnect/web-console/views/doc.js
|
|
584
|
+
- lib/rhoconnect/web-console/views/edit_user.js
|
|
532
585
|
- lib/rhoconnect/web-console/views/home.js
|
|
533
|
-
- lib/rhoconnect/web-console/views/set_adapter.js
|
|
534
586
|
- lib/rhoconnect/web-console/views/index.js
|
|
535
|
-
- lib/rhoconnect/web-console/views/
|
|
536
|
-
- lib/rhoconnect/web-console/views/
|
|
537
|
-
- lib/rhoconnect/web-console/views/
|
|
538
|
-
- lib/rhoconnect/web-console/views/
|
|
587
|
+
- lib/rhoconnect/web-console/views/new_ping.js
|
|
588
|
+
- lib/rhoconnect/web-console/views/new_user.js
|
|
589
|
+
- lib/rhoconnect/web-console/views/server_doc.js
|
|
590
|
+
- lib/rhoconnect/web-console/views/set_adapter.js
|
|
539
591
|
- lib/rhoconnect/web-console/views/settings.js
|
|
540
|
-
- lib/rhoconnect/web-console/views/edit_user.js
|
|
541
|
-
- lib/rhoconnect/web-console/views/source_docs.js
|
|
542
592
|
- lib/rhoconnect/web-console/views/show_device.js
|
|
543
|
-
- lib/rhoconnect/web-console/views/
|
|
544
|
-
- lib/rhoconnect/web-console/views/
|
|
545
|
-
- lib/rhoconnect/web-console/
|
|
546
|
-
- lib/rhoconnect/web-console/
|
|
547
|
-
-
|
|
548
|
-
- lib/rhoconnect/web-console/models/stats.js
|
|
549
|
-
- lib/rhoconnect/web-console/models/doc.js
|
|
550
|
-
- lib/rhoconnect/web-console/models/adapter.js
|
|
551
|
-
- lib/rhoconnect/web-console/models/source.js
|
|
552
|
-
- lib/rhoconnect/web-console/models/session.js
|
|
553
|
-
- lib/rhoconnect/web-console/controllers/admins.js
|
|
554
|
-
- lib/rhoconnect/web-console/templates/index.erb
|
|
555
|
-
- lib/rhoconnect/web-console/templates/jqplot.erb
|
|
556
|
-
- lib/rhoconnect/read_state.rb
|
|
557
|
-
- lib/rhoconnect/predefined_adapters/bench_adapter.rb
|
|
558
|
-
- lib/rhoconnect/predefined_adapters/models/js/rho_internal_js_bench_adapter.js
|
|
559
|
-
- lib/rhoconnect/predefined_adapters/controllers/js/rho_internal_js_bench_adapter_controller.js
|
|
560
|
-
- lib/rhoconnect/ping.rb
|
|
561
|
-
- lib/rhoconnect/bulk_data.rb
|
|
562
|
-
- lib/rhoconnect/source.rb
|
|
563
|
-
- lib/rhoconnect/console/server.rb
|
|
564
|
-
- lib/rhoconnect/store_orm.rb
|
|
565
|
-
- lib/rhoconnect/version.rb
|
|
566
|
-
- lib/rhoconnect/user.rb
|
|
567
|
-
- lib/rhoconnect/stats/record.rb
|
|
568
|
-
- lib/rhoconnect/api_token.rb
|
|
569
|
-
- lib/rhoconnect/generator.rb
|
|
570
|
-
- lib/rhoconnect/ping/rhoconnect_push.rb
|
|
571
|
-
- lib/rhoconnect/ping/gcm.rb
|
|
572
|
-
- lib/rhoconnect/ping/apple.rb
|
|
573
|
-
- lib/rhoconnect.rb
|
|
574
|
-
- js-adapters/node.rb
|
|
575
|
-
- js-adapters/ballroom.js
|
|
576
|
-
- js-adapters/router.js
|
|
577
|
-
- js-adapters/node_channel.rb
|
|
578
|
-
- js-adapters/server.js
|
|
579
|
-
- js-adapters/rhoconnect_helpers.js
|
|
580
|
-
- js-adapters/request.js
|
|
581
|
-
- js-adapters/response.js
|
|
582
|
-
- js-adapters/exceptions.js
|
|
583
|
-
- tasks/jasmine.rake
|
|
584
|
-
- tasks/redis.rake
|
|
585
|
-
- spec/jobs/source_job_spec.rb
|
|
586
|
-
- spec/jobs/ping_job_spec.rb
|
|
587
|
-
- spec/jobs/bulk_data_job_spec.rb
|
|
588
|
-
- spec/node_spec.rb
|
|
589
|
-
- spec/read_state_spec.rb
|
|
590
|
-
- spec/client_sync_spec.rb
|
|
591
|
-
- spec/app_spec.rb
|
|
592
|
-
- spec/factories/factories.rb
|
|
593
|
-
- spec/testdata/5-data.txt
|
|
594
|
-
- spec/testdata/10000-data.txt
|
|
595
|
-
- spec/testdata/5000-data.txt
|
|
596
|
-
- spec/testdata/compressed/compress-data.txt
|
|
597
|
-
- spec/testdata/1000-data.txt
|
|
598
|
-
- spec/testdata/upload1.txt
|
|
599
|
-
- spec/testdata/upload2.txt
|
|
600
|
-
- spec/async_spec.rb
|
|
601
|
-
- spec/client_spec.rb
|
|
602
|
-
- spec/store_spec.rb
|
|
603
|
-
- spec/sync_states_spec.rb
|
|
604
|
-
- spec/api_token_spec.rb
|
|
605
|
-
- spec/cli/cli_spec.rb
|
|
606
|
-
- spec/doc/header.html
|
|
607
|
-
- spec/doc/base.html
|
|
608
|
-
- spec/doc/footer.html
|
|
609
|
-
- spec/doc/doc_spec.rb
|
|
610
|
-
- spec/bulk_data/bulk_data_spec.rb
|
|
611
|
-
- spec/support/shared_examples.rb
|
|
612
|
-
- spec/spec_helper.rb
|
|
613
|
-
- spec/source_spec.rb
|
|
614
|
-
- spec/generator/generator_spec_helper.rb
|
|
615
|
-
- spec/generator/generator_spec.rb
|
|
616
|
-
- spec/source_sync_spec.rb
|
|
617
|
-
- spec/perf/bulk_data_perf_spec.rb
|
|
618
|
-
- spec/perf/perf_spec_helper.rb
|
|
619
|
-
- spec/perf/store_perf_spec.rb
|
|
620
|
-
- spec/rhoconnect_spec.rb
|
|
621
|
-
- spec/user_spec.rb
|
|
622
|
-
- spec/predefined_adapters/rho_internal_js_bench_adapter_js_spec.rb
|
|
623
|
-
- spec/predefined_adapters/rho_internal_bench_adapter_controller_js_spec.rb
|
|
624
|
-
- spec/models/js_base_spec.rb
|
|
625
|
-
- spec/server/cors_spec.rb
|
|
626
|
-
- spec/server/x_domain_session_wrapper_spec.rb
|
|
627
|
-
- spec/server/stats_spec.rb
|
|
628
|
-
- spec/server/server_spec.rb
|
|
629
|
-
- spec/dynamic_adapter_spec.rb
|
|
630
|
-
- spec/stats/record_spec.rb
|
|
593
|
+
- lib/rhoconnect/web-console/views/show_user.js
|
|
594
|
+
- lib/rhoconnect/web-console/views/source_docs.js
|
|
595
|
+
- lib/rhoconnect/web-console/views/stats.js
|
|
596
|
+
- lib/rhoconnect/web-console/views/users.js
|
|
597
|
+
- rhoconnect.gemspec
|
|
631
598
|
- spec/api/api_helper.rb
|
|
632
|
-
- spec/api/
|
|
633
|
-
- spec/api/
|
|
634
|
-
- spec/api/
|
|
635
|
-
- spec/api/
|
|
636
|
-
- spec/api/
|
|
637
|
-
- spec/api/
|
|
638
|
-
- spec/api/user/list_users_spec.rb
|
|
639
|
-
- spec/api/user/list_clients_spec.rb
|
|
640
|
-
- spec/api/user/show_user_spec.rb
|
|
641
|
-
- spec/api/user/delete_client_spec.rb
|
|
642
|
-
- spec/api/user/ping_spec.rb
|
|
643
|
-
- spec/api/user/list_source_docs_spec.rb
|
|
644
|
-
- spec/api/user/delete_user_spec.rb
|
|
645
|
-
- spec/api/user/user_set_db_doc_spec.rb
|
|
646
|
-
- spec/api/user/user_get_db_doc_spec.rb
|
|
647
|
-
- spec/api/user/create_user_spec.rb
|
|
599
|
+
- spec/api/app/fast_delete_spec.rb
|
|
600
|
+
- spec/api/app/fast_insert_spec.rb
|
|
601
|
+
- spec/api/app/fast_update_spec.rb
|
|
602
|
+
- spec/api/app/push_deletes_spec.rb
|
|
603
|
+
- spec/api/app/push_objects_spec.rb
|
|
604
|
+
- spec/api/client/client_get_db_doc_spec.rb
|
|
648
605
|
- spec/api/client/client_set_db_doc_spec.rb
|
|
649
606
|
- spec/api/client/get_client_params_spec.rb
|
|
650
|
-
- spec/api/client/client_get_db_doc_spec.rb
|
|
651
|
-
- spec/api/client/reset_spec.rb
|
|
652
607
|
- spec/api/client/list_client_docs_spec.rb
|
|
653
|
-
- spec/api/
|
|
654
|
-
- spec/api/app/push_objects_spec.rb
|
|
655
|
-
- spec/api/app/push_deletes_spec.rb
|
|
656
|
-
- spec/api/app/fast_delete_spec.rb
|
|
657
|
-
- spec/api/app/fast_update_spec.rb
|
|
608
|
+
- spec/api/client/reset_spec.rb
|
|
658
609
|
- spec/api/readstate/set_refresh_time_spec.rb
|
|
659
610
|
- spec/api/source/get_source_params_spec.rb
|
|
660
|
-
- spec/api/source/update_source_params_spec.rb
|
|
661
611
|
- spec/api/source/list_sources_spec.rb
|
|
612
|
+
- spec/api/source/update_source_params_spec.rb
|
|
662
613
|
- spec/api/store/get_db_doc_spec.rb
|
|
663
614
|
- spec/api/store/set_db_doc_spec.rb
|
|
615
|
+
- spec/api/system/adapter_spec.rb
|
|
616
|
+
- spec/api/system/get_license_info_spec.rb
|
|
617
|
+
- spec/api/system/login_spec.rb
|
|
618
|
+
- spec/api/system/reset_spec.rb
|
|
619
|
+
- spec/api/system/stats_spec.rb
|
|
620
|
+
- spec/api/user/create_user_spec.rb
|
|
621
|
+
- spec/api/user/delete_client_spec.rb
|
|
622
|
+
- spec/api/user/delete_user_spec.rb
|
|
623
|
+
- spec/api/user/list_clients_spec.rb
|
|
624
|
+
- spec/api/user/list_source_docs_spec.rb
|
|
625
|
+
- spec/api/user/list_users_spec.rb
|
|
626
|
+
- spec/api/user/ping_spec.rb
|
|
627
|
+
- spec/api/user/show_user_spec.rb
|
|
628
|
+
- spec/api/user/update_user_spec.rb
|
|
629
|
+
- spec/api/user/user_get_db_doc_spec.rb
|
|
630
|
+
- spec/api/user/user_set_db_doc_spec.rb
|
|
631
|
+
- spec/api_token_spec.rb
|
|
632
|
+
- spec/app_spec.rb
|
|
633
|
+
- spec/apps/emptyapp/application.rb
|
|
634
|
+
- spec/apps/emptyapp/settings/license.key
|
|
635
|
+
- spec/apps/emptyapp/settings/settings.yml
|
|
636
|
+
- spec/apps/jstestapp/Rakefile
|
|
637
|
+
- spec/apps/jstestapp/config.ru
|
|
638
|
+
- spec/apps/jstestapp/controllers/js/application_controller.js
|
|
639
|
+
- spec/apps/jstestapp/settings/license.key
|
|
640
|
+
- spec/apps/jstestapp/settings/settings.yml
|
|
641
|
+
- spec/apps/rhotestapp/Rakefile
|
|
642
|
+
- spec/apps/rhotestapp/config.ru
|
|
643
|
+
- spec/apps/rhotestapp/controllers/js/js_sample_controller.js
|
|
644
|
+
- spec/apps/rhotestapp/controllers/js/sample2_controller.js
|
|
645
|
+
- spec/apps/rhotestapp/controllers/ruby/application_controller.rb
|
|
646
|
+
- spec/apps/rhotestapp/controllers/ruby/sample_adapter_controller.rb
|
|
647
|
+
- spec/apps/rhotestapp/models/js/js_sample.js
|
|
648
|
+
- spec/apps/rhotestapp/models/js/sample2.js
|
|
649
|
+
- spec/apps/rhotestapp/models/ruby/base_adapter.rb
|
|
650
|
+
- spec/apps/rhotestapp/models/ruby/fixed_schema_adapter.rb
|
|
651
|
+
- spec/apps/rhotestapp/models/ruby/other_adapter.rb
|
|
652
|
+
- spec/apps/rhotestapp/models/ruby/sample_adapter.rb
|
|
653
|
+
- spec/apps/rhotestapp/models/ruby/simple_adapter.rb
|
|
654
|
+
- spec/apps/rhotestapp/models/ruby/sub_adapter.rb
|
|
655
|
+
- spec/apps/rhotestapp/settings/apple_fake_cert.pem
|
|
656
|
+
- spec/apps/rhotestapp/settings/license.key
|
|
657
|
+
- spec/apps/rhotestapp/settings/settings.yml
|
|
658
|
+
- spec/apps/rhotestapp/vendor/mygem-0.1.0/lib/mygem.rb
|
|
659
|
+
- spec/apps/rhotestapp/vendor/mygem-0.1.0/lib/mygem/mygem.rb
|
|
660
|
+
- spec/async_spec.rb
|
|
661
|
+
- spec/bulk_data/bulk_data_spec.rb
|
|
662
|
+
- spec/cli/cli_spec.rb
|
|
663
|
+
- spec/client_spec.rb
|
|
664
|
+
- spec/client_sync_spec.rb
|
|
665
|
+
- spec/controllers/js_base_spec.rb
|
|
666
|
+
- spec/coverage/rcov/assets/0.2.3/jquery-1.3.2.min.js
|
|
667
|
+
- spec/coverage/rcov/assets/0.2.3/jquery.tablesorter.min.js
|
|
668
|
+
- spec/coverage/rcov/assets/0.2.3/print.css
|
|
669
|
+
- spec/coverage/rcov/assets/0.2.3/rcov.js
|
|
670
|
+
- spec/coverage/rcov/assets/0.2.3/screen.css
|
|
671
|
+
- spec/coverage/rcov/index.html
|
|
672
|
+
- spec/doc/base.html
|
|
673
|
+
- spec/doc/doc_spec.rb
|
|
674
|
+
- spec/doc/footer.html
|
|
675
|
+
- spec/doc/header.html
|
|
676
|
+
- spec/document_spec.rb
|
|
677
|
+
- spec/dynamic_adapter_spec.rb
|
|
678
|
+
- spec/factories/factories.rb
|
|
679
|
+
- spec/generator/generator_spec.rb
|
|
680
|
+
- spec/generator/generator_spec_helper.rb
|
|
664
681
|
- spec/javascripts/PlayerSpec.js
|
|
682
|
+
- spec/javascripts/admins_routes_spec.js
|
|
683
|
+
- spec/javascripts/admins_spec.js
|
|
665
684
|
- spec/javascripts/doc_view_spec.js
|
|
666
|
-
- spec/javascripts/
|
|
667
|
-
- spec/javascripts/helpers/sinon-1.3.2.js
|
|
685
|
+
- spec/javascripts/edit_user_view_spec.js
|
|
668
686
|
- spec/javascripts/helpers/SpecHelper.js
|
|
669
687
|
- spec/javascripts/helpers/jasmine-jquery.js
|
|
670
688
|
- spec/javascripts/helpers/jasmine-sinon.js
|
|
671
|
-
- spec/javascripts/
|
|
689
|
+
- spec/javascripts/helpers/sinon-1.3.2.js
|
|
690
|
+
- spec/javascripts/home_view_spec.js
|
|
672
691
|
- spec/javascripts/index_view_spec.js
|
|
673
|
-
- spec/javascripts/show_device_view_spec.js
|
|
674
|
-
- spec/javascripts/admins_spec.js
|
|
675
|
-
- spec/javascripts/server_doc_view_spec.js
|
|
676
|
-
- spec/javascripts/new_user_view_spec.js
|
|
677
692
|
- spec/javascripts/new_ping_view_spec.js
|
|
678
|
-
- spec/javascripts/
|
|
679
|
-
- spec/javascripts/
|
|
680
|
-
- spec/javascripts/support/jasmine.yml
|
|
693
|
+
- spec/javascripts/new_user_view_spec.js
|
|
694
|
+
- spec/javascripts/server_doc_view_spec.js
|
|
681
695
|
- spec/javascripts/session_spec.js
|
|
696
|
+
- spec/javascripts/set_adapter_view_spec.js
|
|
697
|
+
- spec/javascripts/show_device_view_spec.js
|
|
682
698
|
- spec/javascripts/show_user_view_spec.js
|
|
683
|
-
- spec/javascripts/admins_routes_spec.js
|
|
684
|
-
- spec/javascripts/edit_user_view_spec.js
|
|
685
699
|
- spec/javascripts/source_docs_view_spec.js
|
|
700
|
+
- spec/javascripts/support/jasmine.yml
|
|
701
|
+
- spec/javascripts/support/jasmine_config.rb
|
|
702
|
+
- spec/javascripts/support/jasmine_runner.rb
|
|
686
703
|
- spec/javascripts/users_view_spec.js
|
|
687
|
-
- spec/
|
|
688
|
-
- spec/
|
|
689
|
-
- spec/
|
|
690
|
-
- spec/
|
|
691
|
-
- spec/
|
|
692
|
-
- spec/
|
|
693
|
-
- spec/
|
|
704
|
+
- spec/jobs/bulk_data_job_spec.rb
|
|
705
|
+
- spec/jobs/ping_job_spec.rb
|
|
706
|
+
- spec/jobs/source_job_spec.rb
|
|
707
|
+
- spec/license_spec.rb
|
|
708
|
+
- spec/models/js_base_spec.rb
|
|
709
|
+
- spec/node_spec.rb
|
|
710
|
+
- spec/perf/bulk_data_perf_spec.rb
|
|
711
|
+
- spec/perf/perf_spec_helper.rb
|
|
712
|
+
- spec/perf/store_perf_spec.rb
|
|
694
713
|
- spec/ping/apple_spec.rb
|
|
695
714
|
- spec/ping/gcm_spec.rb
|
|
696
|
-
- spec/
|
|
697
|
-
- spec/
|
|
698
|
-
- spec/
|
|
699
|
-
- spec/
|
|
700
|
-
- spec/
|
|
701
|
-
- spec/
|
|
702
|
-
- spec/
|
|
703
|
-
- spec/
|
|
704
|
-
- spec/
|
|
705
|
-
- spec/
|
|
706
|
-
- spec/
|
|
707
|
-
- spec/
|
|
708
|
-
- spec/
|
|
709
|
-
- spec/
|
|
710
|
-
- spec/
|
|
711
|
-
- spec/
|
|
712
|
-
- spec/
|
|
713
|
-
- spec/
|
|
714
|
-
- spec/
|
|
715
|
-
- spec/
|
|
716
|
-
- spec/
|
|
717
|
-
- spec/
|
|
718
|
-
- spec/
|
|
719
|
-
- spec/
|
|
720
|
-
- spec/
|
|
721
|
-
- spec/
|
|
722
|
-
- spec/
|
|
723
|
-
- spec/
|
|
724
|
-
-
|
|
725
|
-
-
|
|
715
|
+
- spec/ping/rhoconnect_push_spec.rb
|
|
716
|
+
- spec/predefined_adapters/rho_internal_bench_adapter_controller_js_spec.rb
|
|
717
|
+
- spec/predefined_adapters/rho_internal_js_bench_adapter_js_spec.rb
|
|
718
|
+
- spec/read_state_spec.rb
|
|
719
|
+
- spec/rhoconnect_spec.rb
|
|
720
|
+
- spec/server/cors_spec.rb
|
|
721
|
+
- spec/server/server_spec.rb
|
|
722
|
+
- spec/server/stats_spec.rb
|
|
723
|
+
- spec/server/x_domain_session_wrapper_spec.rb
|
|
724
|
+
- spec/source_adapter_spec.rb
|
|
725
|
+
- spec/source_spec.rb
|
|
726
|
+
- spec/source_sync_spec.rb
|
|
727
|
+
- spec/spec.opts
|
|
728
|
+
- spec/spec_helper.rb
|
|
729
|
+
- spec/stats/record_spec.rb
|
|
730
|
+
- spec/store_orm_spec.rb
|
|
731
|
+
- spec/store_spec.rb
|
|
732
|
+
- spec/support/shared_examples.rb
|
|
733
|
+
- spec/sync_states_spec.rb
|
|
734
|
+
- spec/test_methods_spec.rb
|
|
735
|
+
- spec/testdata/1000-data.txt
|
|
736
|
+
- spec/testdata/10000-data.txt
|
|
737
|
+
- spec/testdata/5-data.txt
|
|
738
|
+
- spec/testdata/5000-data.txt
|
|
739
|
+
- spec/testdata/compressed/compress-data.txt
|
|
740
|
+
- spec/testdata/upload1.txt
|
|
741
|
+
- spec/testdata/upload2.txt
|
|
742
|
+
- spec/user_spec.rb
|
|
743
|
+
- tasks/jasmine.rake
|
|
744
|
+
- tasks/redis.rake
|
|
726
745
|
homepage: http://rhomobile.com/products/rhoconnect
|
|
727
746
|
licenses: []
|
|
728
747
|
metadata: {}
|
|
@@ -742,147 +761,153 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
742
761
|
version: '0'
|
|
743
762
|
requirements: []
|
|
744
763
|
rubyforge_project:
|
|
745
|
-
rubygems_version: 2.
|
|
764
|
+
rubygems_version: 2.2.2
|
|
746
765
|
signing_key:
|
|
747
766
|
specification_version: 4
|
|
748
767
|
summary: RhoConnect App Integration Server
|
|
749
768
|
test_files:
|
|
750
|
-
- spec/jobs/source_job_spec.rb
|
|
751
|
-
- spec/jobs/ping_job_spec.rb
|
|
752
|
-
- spec/jobs/bulk_data_job_spec.rb
|
|
753
|
-
- spec/node_spec.rb
|
|
754
|
-
- spec/read_state_spec.rb
|
|
755
|
-
- spec/client_sync_spec.rb
|
|
756
|
-
- spec/app_spec.rb
|
|
757
|
-
- spec/factories/factories.rb
|
|
758
|
-
- spec/testdata/5-data.txt
|
|
759
|
-
- spec/testdata/10000-data.txt
|
|
760
|
-
- spec/testdata/5000-data.txt
|
|
761
|
-
- spec/testdata/compressed/compress-data.txt
|
|
762
|
-
- spec/testdata/1000-data.txt
|
|
763
|
-
- spec/testdata/upload1.txt
|
|
764
|
-
- spec/testdata/upload2.txt
|
|
765
|
-
- spec/async_spec.rb
|
|
766
|
-
- spec/client_spec.rb
|
|
767
|
-
- spec/store_spec.rb
|
|
768
|
-
- spec/sync_states_spec.rb
|
|
769
|
-
- spec/api_token_spec.rb
|
|
770
|
-
- spec/cli/cli_spec.rb
|
|
771
|
-
- spec/doc/header.html
|
|
772
|
-
- spec/doc/base.html
|
|
773
|
-
- spec/doc/footer.html
|
|
774
|
-
- spec/doc/doc_spec.rb
|
|
775
|
-
- spec/bulk_data/bulk_data_spec.rb
|
|
776
|
-
- spec/support/shared_examples.rb
|
|
777
|
-
- spec/spec_helper.rb
|
|
778
|
-
- spec/source_spec.rb
|
|
779
|
-
- spec/generator/generator_spec_helper.rb
|
|
780
|
-
- spec/generator/generator_spec.rb
|
|
781
|
-
- spec/source_sync_spec.rb
|
|
782
|
-
- spec/perf/bulk_data_perf_spec.rb
|
|
783
|
-
- spec/perf/perf_spec_helper.rb
|
|
784
|
-
- spec/perf/store_perf_spec.rb
|
|
785
|
-
- spec/rhoconnect_spec.rb
|
|
786
|
-
- spec/user_spec.rb
|
|
787
|
-
- spec/predefined_adapters/rho_internal_js_bench_adapter_js_spec.rb
|
|
788
|
-
- spec/predefined_adapters/rho_internal_bench_adapter_controller_js_spec.rb
|
|
789
|
-
- spec/models/js_base_spec.rb
|
|
790
|
-
- spec/server/cors_spec.rb
|
|
791
|
-
- spec/server/x_domain_session_wrapper_spec.rb
|
|
792
|
-
- spec/server/stats_spec.rb
|
|
793
|
-
- spec/server/server_spec.rb
|
|
794
|
-
- spec/dynamic_adapter_spec.rb
|
|
795
|
-
- spec/stats/record_spec.rb
|
|
796
769
|
- spec/api/api_helper.rb
|
|
797
|
-
- spec/api/
|
|
798
|
-
- spec/api/
|
|
799
|
-
- spec/api/
|
|
800
|
-
- spec/api/
|
|
801
|
-
- spec/api/
|
|
802
|
-
- spec/api/
|
|
803
|
-
- spec/api/user/list_users_spec.rb
|
|
804
|
-
- spec/api/user/list_clients_spec.rb
|
|
805
|
-
- spec/api/user/show_user_spec.rb
|
|
806
|
-
- spec/api/user/delete_client_spec.rb
|
|
807
|
-
- spec/api/user/ping_spec.rb
|
|
808
|
-
- spec/api/user/list_source_docs_spec.rb
|
|
809
|
-
- spec/api/user/delete_user_spec.rb
|
|
810
|
-
- spec/api/user/user_set_db_doc_spec.rb
|
|
811
|
-
- spec/api/user/user_get_db_doc_spec.rb
|
|
812
|
-
- spec/api/user/create_user_spec.rb
|
|
770
|
+
- spec/api/app/fast_delete_spec.rb
|
|
771
|
+
- spec/api/app/fast_insert_spec.rb
|
|
772
|
+
- spec/api/app/fast_update_spec.rb
|
|
773
|
+
- spec/api/app/push_deletes_spec.rb
|
|
774
|
+
- spec/api/app/push_objects_spec.rb
|
|
775
|
+
- spec/api/client/client_get_db_doc_spec.rb
|
|
813
776
|
- spec/api/client/client_set_db_doc_spec.rb
|
|
814
777
|
- spec/api/client/get_client_params_spec.rb
|
|
815
|
-
- spec/api/client/client_get_db_doc_spec.rb
|
|
816
|
-
- spec/api/client/reset_spec.rb
|
|
817
778
|
- spec/api/client/list_client_docs_spec.rb
|
|
818
|
-
- spec/api/
|
|
819
|
-
- spec/api/app/push_objects_spec.rb
|
|
820
|
-
- spec/api/app/push_deletes_spec.rb
|
|
821
|
-
- spec/api/app/fast_delete_spec.rb
|
|
822
|
-
- spec/api/app/fast_update_spec.rb
|
|
779
|
+
- spec/api/client/reset_spec.rb
|
|
823
780
|
- spec/api/readstate/set_refresh_time_spec.rb
|
|
824
781
|
- spec/api/source/get_source_params_spec.rb
|
|
825
|
-
- spec/api/source/update_source_params_spec.rb
|
|
826
782
|
- spec/api/source/list_sources_spec.rb
|
|
783
|
+
- spec/api/source/update_source_params_spec.rb
|
|
827
784
|
- spec/api/store/get_db_doc_spec.rb
|
|
828
785
|
- spec/api/store/set_db_doc_spec.rb
|
|
829
|
-
- spec/
|
|
786
|
+
- spec/api/system/adapter_spec.rb
|
|
787
|
+
- spec/api/system/get_license_info_spec.rb
|
|
788
|
+
- spec/api/system/login_spec.rb
|
|
789
|
+
- spec/api/system/reset_spec.rb
|
|
790
|
+
- spec/api/system/stats_spec.rb
|
|
791
|
+
- spec/api/user/create_user_spec.rb
|
|
792
|
+
- spec/api/user/delete_client_spec.rb
|
|
793
|
+
- spec/api/user/delete_user_spec.rb
|
|
794
|
+
- spec/api/user/list_clients_spec.rb
|
|
795
|
+
- spec/api/user/list_source_docs_spec.rb
|
|
796
|
+
- spec/api/user/list_users_spec.rb
|
|
797
|
+
- spec/api/user/ping_spec.rb
|
|
798
|
+
- spec/api/user/show_user_spec.rb
|
|
799
|
+
- spec/api/user/update_user_spec.rb
|
|
800
|
+
- spec/api/user/user_get_db_doc_spec.rb
|
|
801
|
+
- spec/api/user/user_set_db_doc_spec.rb
|
|
802
|
+
- spec/api_token_spec.rb
|
|
803
|
+
- spec/app_spec.rb
|
|
804
|
+
- spec/apps/emptyapp/application.rb
|
|
805
|
+
- spec/apps/emptyapp/settings/license.key
|
|
806
|
+
- spec/apps/emptyapp/settings/settings.yml
|
|
807
|
+
- spec/apps/jstestapp/config.ru
|
|
808
|
+
- spec/apps/jstestapp/controllers/js/application_controller.js
|
|
809
|
+
- spec/apps/jstestapp/Rakefile
|
|
810
|
+
- spec/apps/jstestapp/settings/license.key
|
|
811
|
+
- spec/apps/jstestapp/settings/settings.yml
|
|
812
|
+
- spec/apps/rhotestapp/config.ru
|
|
813
|
+
- spec/apps/rhotestapp/controllers/js/js_sample_controller.js
|
|
814
|
+
- spec/apps/rhotestapp/controllers/js/sample2_controller.js
|
|
815
|
+
- spec/apps/rhotestapp/controllers/ruby/application_controller.rb
|
|
816
|
+
- spec/apps/rhotestapp/controllers/ruby/sample_adapter_controller.rb
|
|
817
|
+
- spec/apps/rhotestapp/models/js/js_sample.js
|
|
818
|
+
- spec/apps/rhotestapp/models/js/sample2.js
|
|
819
|
+
- spec/apps/rhotestapp/models/ruby/base_adapter.rb
|
|
820
|
+
- spec/apps/rhotestapp/models/ruby/fixed_schema_adapter.rb
|
|
821
|
+
- spec/apps/rhotestapp/models/ruby/other_adapter.rb
|
|
822
|
+
- spec/apps/rhotestapp/models/ruby/sample_adapter.rb
|
|
823
|
+
- spec/apps/rhotestapp/models/ruby/simple_adapter.rb
|
|
824
|
+
- spec/apps/rhotestapp/models/ruby/sub_adapter.rb
|
|
825
|
+
- spec/apps/rhotestapp/Rakefile
|
|
826
|
+
- spec/apps/rhotestapp/settings/apple_fake_cert.pem
|
|
827
|
+
- spec/apps/rhotestapp/settings/license.key
|
|
828
|
+
- spec/apps/rhotestapp/settings/settings.yml
|
|
829
|
+
- spec/apps/rhotestapp/vendor/mygem-0.1.0/lib/mygem/mygem.rb
|
|
830
|
+
- spec/apps/rhotestapp/vendor/mygem-0.1.0/lib/mygem.rb
|
|
831
|
+
- spec/async_spec.rb
|
|
832
|
+
- spec/bulk_data/bulk_data_spec.rb
|
|
833
|
+
- spec/cli/cli_spec.rb
|
|
834
|
+
- spec/client_spec.rb
|
|
835
|
+
- spec/client_sync_spec.rb
|
|
836
|
+
- spec/controllers/js_base_spec.rb
|
|
837
|
+
- spec/coverage/rcov/assets/0.2.3/jquery-1.3.2.min.js
|
|
838
|
+
- spec/coverage/rcov/assets/0.2.3/jquery.tablesorter.min.js
|
|
839
|
+
- spec/coverage/rcov/assets/0.2.3/print.css
|
|
840
|
+
- spec/coverage/rcov/assets/0.2.3/rcov.js
|
|
841
|
+
- spec/coverage/rcov/assets/0.2.3/screen.css
|
|
842
|
+
- spec/coverage/rcov/index.html
|
|
843
|
+
- spec/doc/base.html
|
|
844
|
+
- spec/doc/doc_spec.rb
|
|
845
|
+
- spec/doc/footer.html
|
|
846
|
+
- spec/doc/header.html
|
|
847
|
+
- spec/document_spec.rb
|
|
848
|
+
- spec/dynamic_adapter_spec.rb
|
|
849
|
+
- spec/factories/factories.rb
|
|
850
|
+
- spec/generator/generator_spec.rb
|
|
851
|
+
- spec/generator/generator_spec_helper.rb
|
|
852
|
+
- spec/javascripts/admins_routes_spec.js
|
|
853
|
+
- spec/javascripts/admins_spec.js
|
|
830
854
|
- spec/javascripts/doc_view_spec.js
|
|
831
|
-
- spec/javascripts/
|
|
832
|
-
- spec/javascripts/helpers/sinon-1.3.2.js
|
|
833
|
-
- spec/javascripts/helpers/SpecHelper.js
|
|
855
|
+
- spec/javascripts/edit_user_view_spec.js
|
|
834
856
|
- spec/javascripts/helpers/jasmine-jquery.js
|
|
835
857
|
- spec/javascripts/helpers/jasmine-sinon.js
|
|
836
|
-
- spec/javascripts/
|
|
858
|
+
- spec/javascripts/helpers/sinon-1.3.2.js
|
|
859
|
+
- spec/javascripts/helpers/SpecHelper.js
|
|
860
|
+
- spec/javascripts/home_view_spec.js
|
|
837
861
|
- spec/javascripts/index_view_spec.js
|
|
838
|
-
- spec/javascripts/show_device_view_spec.js
|
|
839
|
-
- spec/javascripts/admins_spec.js
|
|
840
|
-
- spec/javascripts/server_doc_view_spec.js
|
|
841
|
-
- spec/javascripts/new_user_view_spec.js
|
|
842
862
|
- spec/javascripts/new_ping_view_spec.js
|
|
843
|
-
- spec/javascripts/
|
|
844
|
-
- spec/javascripts/
|
|
845
|
-
- spec/javascripts/
|
|
863
|
+
- spec/javascripts/new_user_view_spec.js
|
|
864
|
+
- spec/javascripts/PlayerSpec.js
|
|
865
|
+
- spec/javascripts/server_doc_view_spec.js
|
|
846
866
|
- spec/javascripts/session_spec.js
|
|
867
|
+
- spec/javascripts/set_adapter_view_spec.js
|
|
868
|
+
- spec/javascripts/show_device_view_spec.js
|
|
847
869
|
- spec/javascripts/show_user_view_spec.js
|
|
848
|
-
- spec/javascripts/admins_routes_spec.js
|
|
849
|
-
- spec/javascripts/edit_user_view_spec.js
|
|
850
870
|
- spec/javascripts/source_docs_view_spec.js
|
|
871
|
+
- spec/javascripts/support/jasmine.yml
|
|
872
|
+
- spec/javascripts/support/jasmine_config.rb
|
|
873
|
+
- spec/javascripts/support/jasmine_runner.rb
|
|
851
874
|
- spec/javascripts/users_view_spec.js
|
|
852
|
-
- spec/
|
|
853
|
-
- spec/
|
|
875
|
+
- spec/jobs/bulk_data_job_spec.rb
|
|
876
|
+
- spec/jobs/ping_job_spec.rb
|
|
877
|
+
- spec/jobs/source_job_spec.rb
|
|
878
|
+
- spec/license_spec.rb
|
|
879
|
+
- spec/models/js_base_spec.rb
|
|
880
|
+
- spec/node_spec.rb
|
|
881
|
+
- spec/perf/bulk_data_perf_spec.rb
|
|
882
|
+
- spec/perf/perf_spec_helper.rb
|
|
883
|
+
- spec/perf/store_perf_spec.rb
|
|
884
|
+
- spec/ping/apple_spec.rb
|
|
885
|
+
- spec/ping/gcm_spec.rb
|
|
886
|
+
- spec/ping/rhoconnect_push_spec.rb
|
|
887
|
+
- spec/predefined_adapters/rho_internal_bench_adapter_controller_js_spec.rb
|
|
888
|
+
- spec/predefined_adapters/rho_internal_js_bench_adapter_js_spec.rb
|
|
889
|
+
- spec/read_state_spec.rb
|
|
890
|
+
- spec/rhoconnect_spec.rb
|
|
891
|
+
- spec/server/cors_spec.rb
|
|
892
|
+
- spec/server/server_spec.rb
|
|
893
|
+
- spec/server/stats_spec.rb
|
|
894
|
+
- spec/server/x_domain_session_wrapper_spec.rb
|
|
854
895
|
- spec/source_adapter_spec.rb
|
|
896
|
+
- spec/source_spec.rb
|
|
897
|
+
- spec/source_sync_spec.rb
|
|
898
|
+
- spec/spec.opts
|
|
899
|
+
- spec/spec_helper.rb
|
|
900
|
+
- spec/stats/record_spec.rb
|
|
855
901
|
- spec/store_orm_spec.rb
|
|
902
|
+
- spec/store_spec.rb
|
|
903
|
+
- spec/support/shared_examples.rb
|
|
904
|
+
- spec/sync_states_spec.rb
|
|
856
905
|
- spec/test_methods_spec.rb
|
|
857
|
-
- spec/
|
|
858
|
-
- spec/
|
|
859
|
-
- spec/
|
|
860
|
-
- spec/
|
|
861
|
-
- spec/
|
|
862
|
-
- spec/
|
|
863
|
-
- spec/
|
|
864
|
-
- spec/
|
|
865
|
-
- spec/apps/jstestapp/controllers/js/application_controller.js
|
|
866
|
-
- spec/apps/jstestapp/Rakefile
|
|
867
|
-
- spec/apps/emptyapp/application.rb
|
|
868
|
-
- spec/apps/emptyapp/settings/settings.yml
|
|
869
|
-
- spec/apps/emptyapp/settings/license.key
|
|
870
|
-
- spec/apps/rhotestapp/vendor/mygem-0.1.0/lib/mygem/mygem.rb
|
|
871
|
-
- spec/apps/rhotestapp/vendor/mygem-0.1.0/lib/mygem.rb
|
|
872
|
-
- spec/apps/rhotestapp/settings/settings.yml
|
|
873
|
-
- spec/apps/rhotestapp/settings/apple_fake_cert.pem
|
|
874
|
-
- spec/apps/rhotestapp/settings/license.key
|
|
875
|
-
- spec/apps/rhotestapp/models/js/sample2.js
|
|
876
|
-
- spec/apps/rhotestapp/models/js/js_sample.js
|
|
877
|
-
- spec/apps/rhotestapp/models/ruby/sample_adapter.rb
|
|
878
|
-
- spec/apps/rhotestapp/models/ruby/other_adapter.rb
|
|
879
|
-
- spec/apps/rhotestapp/models/ruby/fixed_schema_adapter.rb
|
|
880
|
-
- spec/apps/rhotestapp/models/ruby/base_adapter.rb
|
|
881
|
-
- spec/apps/rhotestapp/models/ruby/simple_adapter.rb
|
|
882
|
-
- spec/apps/rhotestapp/models/ruby/sub_adapter.rb
|
|
883
|
-
- spec/apps/rhotestapp/config.ru
|
|
884
|
-
- spec/apps/rhotestapp/controllers/js/sample2_controller.js
|
|
885
|
-
- spec/apps/rhotestapp/controllers/js/js_sample_controller.js
|
|
886
|
-
- spec/apps/rhotestapp/controllers/ruby/sample_adapter_controller.rb
|
|
887
|
-
- spec/apps/rhotestapp/controllers/ruby/application_controller.rb
|
|
888
|
-
- spec/apps/rhotestapp/Rakefile
|
|
906
|
+
- spec/testdata/1000-data.txt
|
|
907
|
+
- spec/testdata/10000-data.txt
|
|
908
|
+
- spec/testdata/5-data.txt
|
|
909
|
+
- spec/testdata/5000-data.txt
|
|
910
|
+
- spec/testdata/compressed/compress-data.txt
|
|
911
|
+
- spec/testdata/upload1.txt
|
|
912
|
+
- spec/testdata/upload2.txt
|
|
913
|
+
- spec/user_spec.rb
|