You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ruby gem for communicating with the GroupDocs.Annotation Cloud API
4
4
5
-
[GroupDocs.Annotation Cloud SDK for Ruby](https://products.groupdocs.cloud/annotation/ruby) wraps GroupDocs.Annotation RESTful APIs so you may integrate Document Annotation features in your own apps with zero initial cost.
5
+
## Installation
6
6
7
-
The solution helps in applying annotations, sticky notes, watermark overlays, redactions, text replacements and markups to documents, presentations, emails, spreadsheets, PDF, images other file formats.
8
-
9
-
## Annotate Documents & Images in the Cloud
10
-
11
-
- Import document annotations.
12
-
- Add or remove annotations.
13
-
- Export annotated document back to its original format.
## Get Started with GroupDocs.Annotation Cloud SDK for Ruby
36
-
37
-
First create an account at [GroupDocs for Cloud](https://dashboard.groupdocs.cloud/) and get your application information. Next, follow the installation steps to get started.
38
-
39
-
### Installation
40
-
41
-
A GEM of GroupDocs.Annotation is available at [rubygems.org](https://rubygems.org/gems/groupdocs_annotation_cloud). You can install it with the help of the following command.
7
+
A gem of groupdocs_annotation_cloud is available at [rubygems.org](https://rubygems.org). You can install it with:
42
8
43
9
```shell
44
10
gem install groupdocs_annotation_cloud
45
11
```
46
12
47
-
Copy following into your Gemfile and run `bundle install`to add the dependency to your app.
13
+
To add dependency to your app copy following into your Gemfile and run `bundle install`:
48
14
49
15
```
50
-
gem "groupdocs_annotation_cloud", "~> 20.10"
16
+
gem "groupdocs_annotation_cloud", "~> 21.2"
51
17
```
52
18
53
-
## Get Supported File Formats for Annotation
19
+
## Getting Started
20
+
21
+
Please follow the [installation](#installation) procedure and then run the following code:
54
22
55
23
```ruby
56
24
# Load the gem
57
25
require'groupdocs_annotation_cloud'
58
26
59
-
# Get Client Id and Client Secret from https://dashboard.groupdocs.cloud
60
-
$my_client_id=""
61
-
$my_client_secret=""
27
+
# Get your app_sid and app_key at https://dashboard.groupdocs.cloud (free registration is required).
0 commit comments