Skip to content

Commit 6447a4c

Browse files
committed
Updated sources
1 parent 8107249 commit 6447a4c

5 files changed

Lines changed: 5 additions & 6 deletions

File tree

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
groupdocs_viewer_cloud (20.3)
4+
groupdocs_viewer_cloud (20.5)
55
addressable (~> 2.5.0, >= 2.5.0)
66
faraday (~> 0.14.0)
77
mimemagic (~> 0.3.2)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ gem install groupdocs_viewer_cloud
1212
To add dependency to your app copy following into your Gemfile and run `bundle install`:
1313

1414
```
15-
gem "groupdocs_viewer_cloud", "~> 20.3"
15+
gem "groupdocs_viewer_cloud", "~> 20.5"
1616
```
1717

1818
## Getting Started

lib/groupdocs_viewer_cloud/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@
2525
# --------------------------------------------------------------------------------------------------------------------
2626
#
2727
module GroupDocsViewerCloud
28-
VERSION = "20.3".freeze
28+
VERSION = "20.5".freeze
2929
end

test/api/test_viewer_create_view_api.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ def test_CreateViewWithProjectOptions
196196

197197
response = @view_api.create_view(request)
198198

199-
assert_equal 1, response.pages.size
199+
assert_operator response.pages.size, :>, 0
200200
end
201201

202202
def test_CreateViewWithFontsPathOption

test/api/test_viewer_get_info_api.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ def test_GetInfoWithHtmlViewFormat
9595

9696
assert_equal 1, response.pages.size
9797
assert_equal 1, response.pages[0].number
98-
assert_equal 0, response.pages[0].width
9998
end
10099

101100
def test_GetInfoWithImageViewFormat
@@ -193,7 +192,7 @@ def test_GetInfoWithProjectOptions
193192

194193
response = @info_api.get_info(request)
195194

196-
assert_equal 1, response.pages.size
195+
assert_operator response.pages.size, :>, 0
197196
end
198197

199198
def test_GetInfoWithImageOptions

0 commit comments

Comments
 (0)