groupdocs 1.5.5 → 1.5.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. checksums.yaml +8 -8
  2. data/lib/groupdocs/datasource.rb +66 -1
  3. data/lib/groupdocs/document.rb +21 -31
  4. data/lib/groupdocs/document/annotation.rb +8 -5
  5. data/lib/groupdocs/job.rb +4 -3
  6. data/lib/groupdocs/post.rb +4 -12
  7. data/lib/groupdocs/questionnaire.rb +40 -44
  8. data/lib/groupdocs/signature.rb +47 -30
  9. data/lib/groupdocs/signature/envelope.rb +35 -7
  10. data/lib/groupdocs/signature/field.rb +1 -0
  11. data/lib/groupdocs/signature/field/location.rb +6 -0
  12. data/lib/groupdocs/signature/form.rb +33 -1
  13. data/lib/groupdocs/signature/shared/document_methods.rb +1 -0
  14. data/lib/groupdocs/storage/file.rb +19 -10
  15. data/lib/groupdocs/subscription.rb +3 -10
  16. data/lib/groupdocs/version.rb +1 -1
  17. data/spec/groupdocs/datasource_spec.rb +41 -0
  18. data/spec/groupdocs/document/annotation_spec.rb +38 -6
  19. data/spec/groupdocs/document_spec.rb +258 -25
  20. data/spec/groupdocs/job_spec.rb +52 -0
  21. data/spec/groupdocs/questionnaire_spec.rb +45 -9
  22. data/spec/groupdocs/signature_spec.rb +13 -0
  23. data/spec/groupdocs/storage/file_spec.rb +68 -0
  24. data/spec/groupdocs/subscription_spec.rb +119 -0
  25. data/spec/groupdocs/user_spec.rb +75 -3
  26. data/spec/support/json/annotation_collaborators_add.json +31 -0
  27. data/spec/support/json/annotation_collaborators_clear.json +22 -0
  28. data/spec/support/json/document_html_urls.json +12 -0
  29. data/spec/support/json/document_shared_documents_get.json +2 -1
  30. data/spec/support/json/job_resources_get.json +16 -0
  31. data/spec/support/json/jobs_documents.json +49 -30
  32. data/spec/support/json/subscription_billing_set.json +21 -0
  33. data/spec/support/json/subscription_countries_get.json +93 -0
  34. data/spec/support/json/subscription_get.json +23 -0
  35. data/spec/support/json/subscription_get_plan.json +48 -0
  36. data/spec/support/json/subscription_invoices_get.json +18 -0
  37. data/spec/support/json/subscription_states_get.json +93 -0
  38. data/spec/support/json/subscription_wizard_get.json +8 -0
  39. metadata +13 -2
@@ -0,0 +1,8 @@
1
+ {
2
+ "result": {
3
+ "url": "https://groupdocs.billing.dynabic.com/billing/hostedpage/888e11b9121c3153f9742ff0fc35be2f-9f0842913be915ed52959ada8635319e/ordercart"
4
+ },
5
+ "status": "Ok",
6
+ "error_message": null,
7
+ "composedOn": 1382099476952
8
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: groupdocs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.5
4
+ version: 1.5.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marketplace Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-10-15 00:00:00.000000000 Z
11
+ date: 2013-11-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client
@@ -407,6 +407,8 @@ files:
407
407
  - spec/support/files/resume.pdf
408
408
  - spec/support/files/signature.png
409
409
  - spec/support/json/annotation_access_set.json
410
+ - spec/support/json/annotation_collaborators_add.json
411
+ - spec/support/json/annotation_collaborators_clear.json
410
412
  - spec/support/json/annotation_collaborators_get.json
411
413
  - spec/support/json/annotation_collaborators_set.json
412
414
  - spec/support/json/annotation_create.json
@@ -438,6 +440,7 @@ files:
438
440
  - spec/support/json/document_editlock_remove.json
439
441
  - spec/support/json/document_fields.json
440
442
  - spec/support/json/document_formats.json
443
+ - spec/support/json/document_html_urls.json
441
444
  - spec/support/json/document_metadata.json
442
445
  - spec/support/json/document_page_html_urls_get.json
443
446
  - spec/support/json/document_page_images_get.json
@@ -477,6 +480,7 @@ files:
477
480
  - spec/support/json/job_documents.json
478
481
  - spec/support/json/job_file_add.json
479
482
  - spec/support/json/job_get.json
483
+ - spec/support/json/job_resources_get.json
480
484
  - spec/support/json/job_update.json
481
485
  - spec/support/json/job_xml_get.json
482
486
  - spec/support/json/jobs_documents.json
@@ -504,8 +508,15 @@ files:
504
508
  - spec/support/json/signature_roles_get.json
505
509
  - spec/support/json/signatures_get.json
506
510
  - spec/support/json/storage_info.json
511
+ - spec/support/json/subscription_billing_set.json
512
+ - spec/support/json/subscription_countries_get.json
513
+ - spec/support/json/subscription_get.json
514
+ - spec/support/json/subscription_get_plan.json
515
+ - spec/support/json/subscription_invoices_get.json
507
516
  - spec/support/json/subscription_plan_get.json
508
517
  - spec/support/json/subscription_plans_get.json
518
+ - spec/support/json/subscription_states_get.json
519
+ - spec/support/json/subscription_wizard_get.json
509
520
  - spec/support/json/template_get.json
510
521
  - spec/support/json/template_get_documents.json
511
522
  - spec/support/json/template_get_recipients.json