Skip to content

Commit 6752225

Browse files
authored
Merge pull request #19 from sue445/fix_yard
Tweak yard
2 parents 986acfe + cf6fd11 commit 6752225

File tree

5 files changed

+19
-0
lines changed

5 files changed

+19
-0
lines changed

lib/connpass_api_v2/client.rb

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# frozen_string_literal: true
22

33
module ConnpassApiV2
4+
# connpass API client
45
class Client
56
autoload :EventMethods, "connpass_api_v2/client/event_methods"
67
autoload :GroupMethods, "connpass_api_v2/client/group_methods"

lib/connpass_api_v2/client/event_methods.rb

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
module ConnpassApiV2
44
class Client
5+
# connpass event endpoints (`/api/v2/events`)
56
module EventMethods
67
# Search events
78
#

lib/connpass_api_v2/client/group_methods.rb

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
module ConnpassApiV2
44
class Client
5+
# connpass group endpoints (`/api/v2/groups`)
56
module GroupMethods
67
# Search groups
78
#

lib/connpass_api_v2/client/user_methods.rb

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
module ConnpassApiV2
44
class Client
5+
# connpass user endpoints (`/api/v2/users`)
56
module UserMethods
67
# Search users
78
#

lib/connpass_api_v2/response.rb

+15
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
# frozen_string_literal: true
22

3+
# @!parse
4+
# module Hashie
5+
# # @see https://www.rubydoc.info/gems/hashie/Hashie/Hash
6+
# class Hash < ::Hash
7+
# end
8+
#
9+
# # @see https://www.rubydoc.info/gems/hashie/Hashie/Mash
10+
# class Mash < Hash
11+
# end
12+
# end
13+
314
module ConnpassApiV2
15+
# connpass API response
16+
#
17+
# @see https://www.rubydoc.info/gems/hashie/Hashie/Hash
18+
# @see https://www.rubydoc.info/gems/hashie/Hashie/Mash
419
class Response < Hashie::Mash
520
disable_warnings # steep:ignore
621
end

0 commit comments

Comments
 (0)