Skip to content

Commit 669fc27

Browse files
committed
Cleanup
1 parent 64ab993 commit 669fc27

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# v1.35.0 (WIP)
22

3-
- Abandoned support for Ruby 2.5 (eol)
3+
- Abandoned support for Ruby 2.5 (EOL)
44
- Tested in Ruby 3.1
55
- Add `Organization#create_or_update`
6+
- Bug-fixing
7+
- Improved documentation
68

79
# v1.34.0
810

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This Ruby gem is a generic wrapper around Zendesk's REST API. Follow this README
1010

1111
You can interact with all the resources defined in [`resources.rb`](lib/zendesk_api/resources.rb). Basically we have some cleaver code to convert Ruby objects into HTTP requests.
1212

13-
Please refer to our [API documentation](https://developer.zendesk.com) for the specific endpoints and once you understand the mapping between Ruby and the HTTP endpoints you should be able to call any endpoint.
13+
Please refer to our [API documentation](https://developer.zendesk.com/api-reference) for the specific endpoints and once you understand the mapping between Ruby and the HTTP endpoints you should be able to call any endpoint.
1414

1515
The Yard generated documentation is available in at [RubyDoc](https://www.rubydoc.info/gems/zendesk_api).
1616

lib/zendesk_api/collection.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,8 @@ def to_s
320320
end
321321
end
322322

323+
alias to_str to_s
324+
323325
def to_param
324326
map(&:to_param)
325327
end

lib/zendesk_api/resources.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,6 @@ def self.singular_resource_name
758758

759759
class Target < Resource; end
760760

761-
class Webhook < Resource; end
762761
class Invocation < Resource; end
763762
class Webhook < Resource
764763
has_many Invocation

0 commit comments

Comments
 (0)