groupdocs 1.9.0 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +13 -0
- data/README.md +1 -1
- data/examples/api-samples/Gemfile +1 -1
- data/examples/api-samples/Gemfile.lock +29 -23
- data/examples/api-samples/public/css/style.css +10 -2
- data/examples/api-samples/public/docs/sample11.html +11 -7
- data/examples/api-samples/samples/sample11.rb +4 -6
- data/examples/api-samples/views/_others_samples.haml +231 -91
- data/examples/api-samples/views/index.haml +230 -92
- data/examples/api-samples/views/sample07.haml +1 -1
- data/examples/api-samples/web.rb +1 -0
- data/groupdocs.gemspec +2 -2
- data/lib/groupdocs/api.rb +1 -0
- data/lib/groupdocs/document.rb +12 -0
- data/lib/groupdocs/document/annotation.rb +5 -0
- data/lib/groupdocs/document/annotation/marker.rb +1 -1
- data/lib/groupdocs/document/editor.rb +13 -1
- data/lib/groupdocs/document/metadata.rb +6 -0
- data/lib/groupdocs/document/option.rb +9 -0
- data/lib/groupdocs/signature/form.rb +4 -6
- data/lib/groupdocs/storage/file.rb +1 -2
- data/lib/groupdocs/version.rb +1 -1
- data/spec/groupdocs/api/helpers/access_rights_helper_spec.rb +3 -3
- data/spec/groupdocs/api/helpers/byte_flag_helper_spec.rb +2 -2
- data/spec/groupdocs/datasource_spec.rb +5 -46
- data/spec/groupdocs/document/annotation/reply_spec.rb +5 -5
- data/spec/groupdocs/document/annotation/reviewer_spec.rb +2 -2
- data/spec/groupdocs/document/annotation_spec.rb +11 -43
- data/spec/groupdocs/document_spec.rb +61 -298
- data/spec/groupdocs/job_spec.rb +20 -74
- data/spec/groupdocs/questionnaire/collector_spec.rb +8 -8
- data/spec/groupdocs/questionnaire/execution_spec.rb +6 -6
- data/spec/groupdocs/questionnaire_spec.rb +28 -58
- data/spec/groupdocs/signature/contact_spec.rb +7 -7
- data/spec/groupdocs/signature/envelope_spec.rb +30 -34
- data/spec/groupdocs/signature/field_spec.rb +5 -5
- data/spec/groupdocs/signature/form_spec.rb +28 -16
- data/spec/groupdocs/signature/list_spec.rb +3 -3
- data/spec/groupdocs/signature/role_spec.rb +2 -2
- data/spec/groupdocs/signature/template_spec.rb +4 -4
- data/spec/groupdocs/signature_spec.rb +7 -20
- data/spec/groupdocs/storage/file_spec.rb +24 -80
- data/spec/groupdocs/storage/folder_spec.rb +14 -14
- data/spec/groupdocs/storage/package_spec.rb +2 -2
- data/spec/groupdocs/storage_spec.rb +1 -1
- data/spec/groupdocs/subscription_spec.rb +4 -123
- data/spec/groupdocs/user_spec.rb +14 -243
- data/spec/spec_helper.rb +4 -0
- data/spec/support/json/annotation_marker_move.json +11 -0
- data/spec/support/json/envelope_recipient_add.json +27 -0
- data/spec/support/json/job_documents.json +35 -103
- data/spec/support/shared_examples/signature/shared/document_methods.rb +4 -4
- data/spec/support/shared_examples/signature/shared/entity_methods.rb +10 -10
- data/spec/support/shared_examples/signature/shared/field_methods.rb +14 -18
- data/spec/support/shared_examples/signature/shared/recipient_methods.rb +3 -3
- data/spec/support/shared_examples/signature/shared/resource_methods.rb +2 -2
- metadata +13 -7
@@ -4,95 +4,233 @@
|
|
4
4
|
%script{:src=>'//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js'}
|
5
5
|
%body
|
6
6
|
%h1{:style => 'text-align:center;'} GroupDocs Ruby SDK Samples
|
7
|
-
%div{:style => 'padding:10px;'}
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
%
|
26
|
-
%
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
7
|
+
%div{:style => 'padding:10px;', :class => 'section'}
|
8
|
+
%ul{:class => 'tabs'}
|
9
|
+
%li{:class=>"current, samples"}
|
10
|
+
%a{:href =>'#', :class=>'links'} All samples
|
11
|
+
%li{:class=>"samples"}
|
12
|
+
%a{:href =>'#', :class=>'links'} Viewer samples
|
13
|
+
%li{:class=>"samples"}
|
14
|
+
%a{:href =>'#', :class=>'links'} Annotation samples
|
15
|
+
%li{:class=>"samples"}
|
16
|
+
%a{:href =>'#', :class=>'links'} Assembly samples
|
17
|
+
%li{:class=>"samples"}
|
18
|
+
%a{:href =>'#', :class=>'links'} Signature samples
|
19
|
+
%li{:class=>"samples"}
|
20
|
+
%a{:href =>'#', :class=>'links'} Comparison samples
|
21
|
+
%li{:class=>"samples"}
|
22
|
+
%a{:href =>'#', :class=>'links'} Conversion samples
|
23
|
+
%li{:class=>"samples"}
|
24
|
+
%a{:href =>'#', :class=>'links'} Others samples
|
25
|
+
%div{:class=>"box visible"}
|
26
|
+
%ul
|
27
|
+
%li
|
28
|
+
%a{:href => '/sample-1-how-to-login-to-groupdocs-using-the-api'} Sample 1 - How to login to GroupDocs using the API
|
29
|
+
%li
|
30
|
+
%a{:href => '/sample-2-how-to-list-files-within-groupdocs-storage-using-the-storage-api'} Sample 2 - How to list files within GroupDocs Storage using the Storage API
|
31
|
+
%li
|
32
|
+
%a{:href => '/sample-3-how-to-upload-a-file-to-groupdocs-using-the-storage-api'} Sample 3 - How to upload a file to GroupDocs using the Storage API
|
33
|
+
%li
|
34
|
+
%a{:href => '/sample-4-how-to-download-a-file-from-groupdocs-storage-using-the-storage-api'} Sample 4 - How to download a file from GroupDocs Storage using the Storage API
|
35
|
+
%li
|
36
|
+
%a{:href => '/sample-5-how-to-copy-move-a-file-using-the-groupdocs-storage-api'} Sample 5 - How to copy / move a file using the GroupDocs Storage API
|
37
|
+
%li
|
38
|
+
%a{:href => '/sample-6-how-to-add-a-signature-to-a-document-in-groupdocs-signature'} Sample 6 - How to add a Signature to a document in GroupDocs Signature
|
39
|
+
%li
|
40
|
+
%a{:href => '/sample-7-how-to-create-a-list-of-thumbnails-for-a-document'} Sample 7 - How to create a list of thumbnails for a document
|
41
|
+
%li
|
42
|
+
%a{:href => '/sample-8-how-to-return-a-url-representing-a-single-page-of-a-document'} Sample 8 - How to return a URL representing a single page of a Document
|
43
|
+
%li
|
44
|
+
%a{:href => '/sample-9-how-to-generate-an-embedded-viewer-annotation-url-for-a-document'} Sample 9 - How to generate an embedded Viewer URL for a Document
|
45
|
+
%li
|
46
|
+
%a{:href => '/sample-10-how-to-share-a-document-to-other-users'} Sample 10 - How to share a document to other users
|
47
|
+
%li
|
48
|
+
%a{:href => '/sample-11-how-programmatically-create-and-post-an-annotation-into-document'} Sample 11 - How to programmatically create and post an annotation into document. How to delete the annotation
|
49
|
+
%li
|
50
|
+
%a{:href => '/sample-12-how-to-list-all-annotations-from-document'} Sample 12 - How to list all annotations from document
|
51
|
+
%li
|
52
|
+
%a{:href => '/sample-13-how-to-add-collaborator-to-doc-with-annotations'} Sample 13 - How to add collaborator to doc with annotations
|
53
|
+
%li
|
54
|
+
%a{:href => '/sample-14-how-to-check-the-list-of-shares-for-a-folder'} Sample 14 - How to check the list of shares for a folder
|
55
|
+
%li
|
56
|
+
%a{:href => '/sample-15-how-to-check-the-number-of-document\'s-views'} Sample 15 - How to check the number of document's views
|
57
|
+
%li
|
58
|
+
%a{:href => '/sample-16-how-to-insert-Assembly-questionary-into-webpage'} Sample 16 - How to insert Assembly questionary into webpage
|
59
|
+
%li
|
60
|
+
%a{:href => '/sample-17-how-to-upload-a-file-into-the-storage-and-compress-it-into-zip-archive'} Sample 17 - How to upload a file into the storage and compress it into zip archive
|
61
|
+
%li
|
62
|
+
%a{:href => '/sample-18-how-to-convert-doc-to-docx-docx-to-doc-docx-to-pdf-and-ppt-to-pdf'} Sample 18 - How to convert Doc to Docx, Docx to Doc, Docx to PDF, PPT to PDF
|
63
|
+
%li
|
64
|
+
%a{:href => '/sample-19-how-to-compare-documents'} Sample 19 - How to Compare documents using Ruby SDK
|
65
|
+
%li
|
66
|
+
%a{:href => '/sample-20-how-to-get-compare-change-list-for-document'} Sample 20 - How to Get Compare Change list for document using Ruby SDK
|
67
|
+
%li
|
68
|
+
%a{:href => '/sample-21-how-to-create-and-upload-envelop-to-groupdocs-account'} Sample 21 - How to Create and Upload Envelop to GroupDocs account using Ruby SDK
|
69
|
+
%li
|
70
|
+
%a{:href => '/sample-22-how-to-create-or-update-user-and-add-him-to-collaborators'} Sample 22 - How to create or update user and add him to collaborators using Ruby SDK
|
71
|
+
%li
|
72
|
+
%a{:href => '/sample-23-how-to-view-document-pages-as-images'} Sample 23 - How to View Document pages as images using Ruby SDK
|
73
|
+
%li
|
74
|
+
%a{:href => '/sample-24-how-to-use-storageapi-to-upload-fil-from-url-to-groupdocs-account'} Sample 24 - How to use StorageApi to upload file from URL to GroupDocs account using Ruby SDK
|
75
|
+
%li
|
76
|
+
%a{:href => '/sample-25-how-to-merge-assemble-and-convert-documentt'} Sample 25 - How to merge and convert document using Ruby SDK
|
77
|
+
%li
|
78
|
+
%a{:href => '/sample-26-how-to-use-login-method-in-the-api'} Sample 26 - How to use login method in the API
|
79
|
+
%li
|
80
|
+
%a{:href => '/sample-27-how-to-create-your-own-questionnaire-using-forms-and-show-the-result-document'} Sample 27 - How to create your own questionnaire using forms and show the result document using Ruby SDK
|
81
|
+
%li
|
82
|
+
%a{:href => '/sample-28-how-to-delete-all-annotations-from-document'} Sample 28 - How to delete all annotations from document using Ruby SDK
|
83
|
+
%li
|
84
|
+
%a{:href => '/sample-29-how-to-use-filepicker-io-to-upload-document-and-get-it\'s-url'} Sample 29 - How to use Filepicker.io to upload document and get it's URL
|
85
|
+
%li
|
86
|
+
%a{:href => '/sample-30-how-to-delete-file-from-groupdocs-storage'} Sample 30 - How to delete file from GroupDocs Storage
|
87
|
+
%li
|
88
|
+
%a{:href => '/sample-31-how-to-dynamically-create-signature-form-using-data-from-html-form'} Sample 31 - How to dynamically create Signature Form using data from HTML form
|
89
|
+
%li
|
90
|
+
%a{:href => '/sample-32-how-to-create-signature-form-publish-it-and-configure-notification-when-it-was-signed'} Sample 32 - How to create signature form, publish it and configure notification via callback
|
91
|
+
%li
|
92
|
+
%a{:href => '/sample-33-how-to-convert-several-html-documents-to-pdf-and-merge-them-to-one-document'} Sample 33 - How to convert and merge/combine several HTML documents into one PDF Document
|
93
|
+
%li
|
94
|
+
%a{:href => '/sample-34-how-to-create-folder-in-the-groupdocs-account'} Sample 34 - How to create folder in the GroupDocs account
|
95
|
+
%li
|
96
|
+
%a{:href => '/sample-35-how-to-create-assembly-from-document-and-merge-fields'} Sample 35 - How to get fields and their data from PDF file
|
97
|
+
%li
|
98
|
+
%a{:href => '/sample-36-how-to-download-signed-documents-when-envelope-was-signed'} Sample 36 - How to download signed documents when envelope was signed using Ruby SDK
|
99
|
+
%li
|
100
|
+
%a{:href => '/sample-37-how-to-use-storage-api-to-create-and-upload-envelop-to-groupdocs-account-and-get-signed-document'} Sample 37 - How to create envelop and download signed document when envelop was signed using callback
|
101
|
+
%li
|
102
|
+
%a{:href => '/sample-38-how-to-create-new-user-and-add-him-as-collaborator-to-doc-with-annotations'} Sample 38 - How to create new user and add him as collaborator to doc with annotations
|
103
|
+
%li
|
104
|
+
%a{:href => '/sample-39-how-to-add-a-signature-to-a-document-and-redirect-after-signing-with-groupdocs-widget'} Sample 39 - How to add a Signature to a document and redirect after signing with GroupDocs widget
|
105
|
+
%li
|
106
|
+
%a{:href => '/sample-40-how-to-set-callback-for-signature-form-and-re-direct-when-it-was-signed'} Sample 40 - How to set callback for signature form and re-direct when it was signed
|
107
|
+
%li
|
108
|
+
%a{:href => '/sample-41-how-to-set-callback-for-annotation-and-manage-user-rights'} Sample 41 - How to set callback for Annotation and manage user rights using Ruby SDK
|
109
|
+
%li
|
110
|
+
%a{:href => '/sample-42-how-to-download-document-with-annotations-using-groupdocs'} Sample 42 - How to download document with annotations using GroupDocs Ruby SDK
|
111
|
+
%li
|
112
|
+
%a{:href => '/sample-43-how-to-add-numeration-in-the-doc-file'} Sample 43 - How to add numeration in the doc file using GroupDocs Ruby SDK
|
113
|
+
%li
|
114
|
+
%a{:href => '/sample-44-how-to-assemble-document-and-add-multiple-signatures-and-signers-to-a-document'} Sample 44 - How to assemble document and add multiple Signatures and Signers to a document using Ruby SDK
|
115
|
+
%li
|
116
|
+
%a{:href => '/sample-45-how-to-check-statistic-info-for-the-document'} Sample 45 - How to check statistic info for the document using Ruby SDK
|
117
|
+
%div{:class=>"box"}
|
118
|
+
%ul
|
119
|
+
%li
|
120
|
+
%a{:href => '/sample-8-how-to-return-a-url-representing-a-single-page-of-a-document'} Sample 8 - How to return a URL representing a single page of a Document
|
121
|
+
%li
|
122
|
+
%a{:href => '/sample-9-how-to-generate-an-embedded-viewer-annotation-url-for-a-document'} Sample 9 - How to generate an embedded Viewer URL for a Document
|
123
|
+
%li
|
124
|
+
%a{:href => '/sample-15-how-to-check-the-number-of-document\'s-views'} Sample 15 - How to check the number of document's views
|
125
|
+
%li
|
126
|
+
%a{:href => '/sample-23-how-to-view-document-pages-as-images'} Sample 23 - How to View Document pages as images using Ruby SDK
|
127
|
+
%div{:class=>"box"}
|
128
|
+
%ul
|
129
|
+
%li
|
130
|
+
%a{:href => '/sample-11-how-programmatically-create-and-post-an-annotation-into-document'} Sample 11 - How to programmatically create and post an annotation into document. How to delete the annotation
|
131
|
+
%li
|
132
|
+
%a{:href => '/sample-12-how-to-list-all-annotations-from-document'} Sample 12 - How to list all annotations from document
|
133
|
+
%li
|
134
|
+
%a{:href => '/sample-13-how-to-add-collaborator-to-doc-with-annotations'} Sample 13 - How to add collaborator to doc with annotations
|
135
|
+
%li
|
136
|
+
%a{:href => '/sample-22-how-to-create-or-update-user-and-add-him-to-collaborators'} Sample 22 - How to create or update user and add him to collaborators using Ruby SDK
|
137
|
+
%li
|
138
|
+
%a{:href => '/sample-28-how-to-delete-all-annotations-from-document'} Sample 28 - How to delete all annotations from document using Ruby SDK
|
139
|
+
%li
|
140
|
+
%a{:href => '/sample-38-how-to-create-new-user-and-add-him-as-collaborator-to-doc-with-annotations'} Sample 38 - How to create new user and add him as collaborator to doc with annotations
|
141
|
+
%li
|
142
|
+
%a{:href => '/sample-41-how-to-set-callback-for-annotation-and-manage-user-rights'} Sample 41 - How to set callback for Annotation and manage user rights using Ruby SDK
|
143
|
+
%div{:class=>"box"}
|
144
|
+
%ul
|
145
|
+
%li
|
146
|
+
%a{:href => '/sample-16-how-to-insert-Assembly-questionary-into-webpage'} Sample 16 - How to insert Assembly questionary into webpage
|
147
|
+
%li
|
148
|
+
%a{:href => '/sample-25-how-to-merge-assemble-and-convert-documentt'} Sample 25 - How to merge and convert document using Ruby SDK
|
149
|
+
%li
|
150
|
+
%a{:href => '/sample-27-how-to-create-your-own-questionnaire-using-forms-and-show-the-result-document'} Sample 27 - How to create your own questionnaire using forms and show the result document using Ruby SDK
|
151
|
+
%li
|
152
|
+
%a{:href => '/sample-35-how-to-create-assembly-from-document-and-merge-fields'} Sample 35 - How to get fields and their data from PDF file
|
153
|
+
%li
|
154
|
+
%a{:href => '/sample-44-how-to-assemble-document-and-add-multiple-signatures-and-signers-to-a-document'} Sample 44 - How to assemble document and add multiple Signatures and Signers to a document using Ruby SDK
|
155
|
+
%div{:class=>"box"}
|
156
|
+
%ul
|
157
|
+
%li
|
158
|
+
%a{:href => '/sample-6-how-to-add-a-signature-to-a-document-in-groupdocs-signature'} Sample 6 - How to add a Signature to a document in GroupDocs Signature
|
159
|
+
%li
|
160
|
+
%a{:href => '/sample-21-how-to-create-and-upload-envelop-to-groupdocs-account'} Sample 21 - How to Create and Upload Envelop to GroupDocs account using Ruby SDK
|
161
|
+
%li
|
162
|
+
%a{:href => '/sample-31-how-to-dynamically-create-signature-form-using-data-from-html-form'} Sample 31 - How to dynamically create Signature Form using data from HTML form
|
163
|
+
%li
|
164
|
+
%a{:href => '/sample-32-how-to-create-signature-form-publish-it-and-configure-notification-when-it-was-signed'} Sample 32 - How to create signature form, publish it and configure notification via callback
|
165
|
+
%li
|
166
|
+
%a{:href => '/sample-36-how-to-download-signed-documents-when-envelope-was-signed'} Sample 36 - How to download signed documents when envelope was signed using Ruby SDK
|
167
|
+
%li
|
168
|
+
%a{:href => '/sample-37-how-to-use-storage-api-to-create-and-upload-envelop-to-groupdocs-account-and-get-signed-document'} Sample 37 - How to create envelop and download signed document when envelop was signed using callback
|
169
|
+
%li
|
170
|
+
%a{:href => '/sample-39-how-to-add-a-signature-to-a-document-and-redirect-after-signing-with-groupdocs-widget'} Sample 39 - How to add a Signature to a document and redirect after signing with GroupDocs widget
|
171
|
+
%li
|
172
|
+
%a{:href => '/sample-40-how-to-set-callback-for-signature-form-and-re-direct-when-it-was-signed'} Sample 40 - How to set callback for signature form and re-direct when it was signed
|
173
|
+
%li
|
174
|
+
%a{:href => '/sample-44-how-to-assemble-document-and-add-multiple-signatures-and-signers-to-a-document'} Sample 44 - How to assemble document and add multiple Signatures and Signers to a document using Ruby SDK
|
175
|
+
%div{:class=>"box"}
|
176
|
+
%ul
|
177
|
+
%li
|
178
|
+
%a{:href => '/sample-19-how-to-compare-documents'} Sample 19 - How to Compare documents using Ruby SDK
|
179
|
+
%li
|
180
|
+
%a{:href => '/sample-20-how-to-get-compare-change-list-for-document'} Sample 20 - How to Get Compare Change list for document using Ruby SDK
|
181
|
+
%div{:class=>"box"}
|
182
|
+
%ul
|
183
|
+
%li
|
184
|
+
%a{:href => '/sample-18-how-to-convert-doc-to-docx-docx-to-doc-docx-to-pdf-and-ppt-to-pdf'} Sample 18 - How to convert Doc to Docx, Docx to Doc, Docx to PDF, PPT to PDF
|
185
|
+
%li
|
186
|
+
%a{:href => '/sample-25-how-to-merge-assemble-and-convert-documentt'} Sample 25 - How to merge and convert document using Ruby SDK
|
187
|
+
%li
|
188
|
+
%a{:href => '/sample-33-how-to-convert-several-html-documents-to-pdf-and-merge-them-to-one-document'} Sample 33 - How to convert and merge/combine several HTML documents into one PDF Document
|
189
|
+
%div{:class=>"box"}
|
190
|
+
%ul
|
191
|
+
%li
|
192
|
+
%a{:href => '/sample-1-how-to-login-to-groupdocs-using-the-api'} Sample 1 - How to login to GroupDocs using the API
|
193
|
+
%li
|
194
|
+
%a{:href => '/sample-2-how-to-list-files-within-groupdocs-storage-using-the-storage-api'} Sample 2 - How to list files within GroupDocs Storage using the Storage API
|
195
|
+
%li
|
196
|
+
%a{:href => '/sample-3-how-to-upload-a-file-to-groupdocs-using-the-storage-api'} Sample 3 - How to upload a file to GroupDocs using the Storage API
|
197
|
+
%li
|
198
|
+
%a{:href => '/sample-4-how-to-download-a-file-from-groupdocs-storage-using-the-storage-api'} Sample 4 - How to download a file from GroupDocs Storage using the Storage API
|
199
|
+
%li
|
200
|
+
%a{:href => '/sample-5-how-to-copy-move-a-file-using-the-groupdocs-storage-api'} Sample 5 - How to copy / move a file using the GroupDocs Storage API
|
201
|
+
%li
|
202
|
+
%a{:href => '/sample-7-how-to-create-a-list-of-thumbnails-for-a-document'} Sample 7 - How to create a list of thumbnails for a document
|
203
|
+
%li
|
204
|
+
%a{:href => '/sample-10-how-to-share-a-document-to-other-users'} Sample 10 - How to share a document to other users
|
205
|
+
%li
|
206
|
+
%a{:href => '/sample-14-how-to-check-the-list-of-shares-for-a-folder'} Sample 14 - How to check the list of shares for a folder
|
207
|
+
%li
|
208
|
+
%a{:href => '/sample-17-how-to-upload-a-file-into-the-storage-and-compress-it-into-zip-archive'} Sample 17 - How to upload a file into the storage and compress it into zip archive
|
209
|
+
%li
|
210
|
+
%a{:href => '/sample-24-how-to-use-storageapi-to-upload-fil-from-url-to-groupdocs-account'} Sample 24 - How to use StorageApi to upload file from URL to GroupDocs account using Ruby SDK
|
211
|
+
%li
|
212
|
+
%a{:href => '/sample-26-how-to-use-login-method-in-the-api'} Sample 26 - How to use login method in the API
|
213
|
+
%li
|
214
|
+
%a{:href => '/sample-29-how-to-use-filepicker-io-to-upload-document-and-get-it\'s-url'} Sample 29 - How to use Filepicker.io to upload document and get it's URL
|
215
|
+
%li
|
216
|
+
%a{:href => '/sample-30-how-to-delete-file-from-groupdocs-storage'} Sample 30 - How to delete file from GroupDocs Storage
|
217
|
+
%li
|
218
|
+
%a{:href => '/sample-34-how-to-create-folder-in-the-groupdocs-account'} Sample 34 - How to create folder in the GroupDocs account
|
219
|
+
%li
|
220
|
+
%a{:href => '/sample-42-how-to-download-document-with-annotations-using-groupdocs'} Sample 42 - How to download document with annotations using GroupDocs Ruby SDK
|
221
|
+
%li
|
222
|
+
%a{:href => '/sample-43-how-to-add-numeration-in-the-doc-file'} Sample 43 - How to add numeration in the doc file using GroupDocs Ruby SDK
|
223
|
+
%li
|
224
|
+
%a{:href => '/sample-45-how-to-check-statistic-info-for-the-document'} Sample 45 - How to check statistic info for the document using Ruby SDK
|
225
|
+
:javascript
|
226
|
+
|
227
|
+
(function($) {
|
228
|
+
$(function() {
|
229
|
+
|
230
|
+
$('ul.tabs').on('click', 'li:not(.current)', function() {
|
231
|
+
$(this).add()
|
232
|
+
$(this).addClass('current').siblings().removeClass('current')
|
233
|
+
.parents('div.section').find('div.box').eq($(this).index()).fadeIn(150).siblings('div.box').hide();
|
234
|
+
})
|
235
|
+
})
|
236
|
+
})(jQuery)
|
data/examples/api-samples/web.rb
CHANGED
data/groupdocs.gemspec
CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
|
|
8
8
|
s.email = 'marketplace@groupdocs.com'
|
9
9
|
s.homepage = 'https://github.com/groupdocs/groupdocs-ruby'
|
10
10
|
s.summary = 'Ruby SDK for GroupDocs REST API'
|
11
|
-
s.description = 'Ruby
|
11
|
+
s.description = 'Our SDKs seamlessly integrates with your existing Ruby web or mobile applications, enabling your users to perform online document viewing, online digital signature execution, online document conversion, online document annotation, online document comparison as well as online document automation & document assembly.'
|
12
12
|
|
13
13
|
s.license = 'MIT'
|
14
14
|
|
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
|
|
20
20
|
s.add_runtime_dependency 'rest-client' , '~> 1.6'
|
21
21
|
s.add_runtime_dependency 'json' , '~> 1.7'
|
22
22
|
s.add_runtime_dependency 'mime-types' , '~> 1.19'
|
23
|
-
s.add_runtime_dependency 'activesupport' , '
|
23
|
+
s.add_runtime_dependency 'activesupport' , '~> 4.2'
|
24
24
|
|
25
25
|
s.add_development_dependency 'rspec' , '~> 2.12'
|
26
26
|
s.add_development_dependency 'fuubar' , '~> 1.1'
|
data/lib/groupdocs/api.rb
CHANGED
data/lib/groupdocs/document.rb
CHANGED
@@ -165,6 +165,8 @@ module GroupDocs
|
|
165
165
|
json[:documents]
|
166
166
|
end
|
167
167
|
|
168
|
+
#
|
169
|
+
# Cnanged in release 2.0.0
|
168
170
|
#
|
169
171
|
# Returns a document metadata by given path.
|
170
172
|
#
|
@@ -186,6 +188,8 @@ module GroupDocs
|
|
186
188
|
metadata.guid = json[:guid]
|
187
189
|
metadata.page_count = json[:page_count]
|
188
190
|
metadata.views_count = json[:views_count]
|
191
|
+
metadata.type = json[:type]
|
192
|
+
metadata.url = json[:url]
|
189
193
|
if json[:last_view]
|
190
194
|
metadata.last_view = json[:last_view]
|
191
195
|
end
|
@@ -215,6 +219,10 @@ module GroupDocs
|
|
215
219
|
# @attr [Long] upload_time
|
216
220
|
attr_accessor :upload_time
|
217
221
|
|
222
|
+
#added in release 2.0.0
|
223
|
+
# @attr [String] documentDescription
|
224
|
+
attr_accessor :documentDescription
|
225
|
+
|
218
226
|
[
|
219
227
|
:news ,
|
220
228
|
:alerts ,
|
@@ -582,6 +590,8 @@ module GroupDocs
|
|
582
590
|
end
|
583
591
|
end
|
584
592
|
|
593
|
+
#
|
594
|
+
# Cnanged in release 2.0.0
|
585
595
|
#
|
586
596
|
# Returns document metadata.
|
587
597
|
#
|
@@ -602,6 +612,8 @@ module GroupDocs
|
|
602
612
|
metadata.guid = json[:guid]
|
603
613
|
metadata.page_count = json[:page_count]
|
604
614
|
metadata.views_count = json[:views_count]
|
615
|
+
metadata.type = json[:type]
|
616
|
+
metadata.url = json[:url]
|
605
617
|
if json[:last_view]
|
606
618
|
metadata.last_view = json[:last_view]
|
607
619
|
end
|
@@ -3,6 +3,7 @@ module GroupDocs
|
|
3
3
|
|
4
4
|
require 'groupdocs/document/annotation/reply'
|
5
5
|
require 'groupdocs/document/annotation/reviewer'
|
6
|
+
require 'groupdocs/document/annotation/marker'
|
6
7
|
|
7
8
|
include Api::Helpers::AccessMode
|
8
9
|
|
@@ -70,6 +71,10 @@ module GroupDocs
|
|
70
71
|
#@attr [Int] penWidth
|
71
72
|
attr_accessor :backgroundColor
|
72
73
|
|
74
|
+
#added in release 2.0.0
|
75
|
+
#@attr [String] text
|
76
|
+
attr_accessor :text
|
77
|
+
|
73
78
|
# Compatibility with response JSON
|
74
79
|
alias_method :annotationGuid=, :guid=
|
75
80
|
|
@@ -22,9 +22,21 @@ module GroupDocs
|
|
22
22
|
attr_accessor :style
|
23
23
|
# @attr [Boolean] isTableMarker
|
24
24
|
attr_accessor :isTableMarker
|
25
|
-
|
25
|
+
|
26
|
+
# changed in release 2.0.0
|
27
|
+
# @attr [GroupDocs::Document::FieldOption] options
|
26
28
|
attr_accessor :options
|
27
29
|
|
30
|
+
# added in release 2.0.0
|
31
|
+
# @attr [Int] tableNumber
|
32
|
+
attr_accessor :tableNumber
|
33
|
+
# @attr [Int] tableRow
|
34
|
+
attr_accessor :tableRow
|
35
|
+
# @attr [Int] tableColumn
|
36
|
+
attr_accessor :tableColumn
|
37
|
+
# @attr [Int] tableCell
|
38
|
+
attr_accessor :tableCell
|
39
|
+
|
28
40
|
#
|
29
41
|
# Converts passed hash to GroupDocs::Document::Rectangle object.
|
30
42
|
# @param [Hash] options
|