File tree 5 files changed +19
-0
lines changed
5 files changed +19
-0
lines changed Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
module ConnpassApiV2
4
+ # connpass API client
4
5
class Client
5
6
autoload :EventMethods , "connpass_api_v2/client/event_methods"
6
7
autoload :GroupMethods , "connpass_api_v2/client/group_methods"
Original file line number Diff line number Diff line change 2
2
3
3
module ConnpassApiV2
4
4
class Client
5
+ # connpass event endpoints (`/api/v2/events`)
5
6
module EventMethods
6
7
# Search events
7
8
#
Original file line number Diff line number Diff line change 2
2
3
3
module ConnpassApiV2
4
4
class Client
5
+ # connpass group endpoints (`/api/v2/groups`)
5
6
module GroupMethods
6
7
# Search groups
7
8
#
Original file line number Diff line number Diff line change 2
2
3
3
module ConnpassApiV2
4
4
class Client
5
+ # connpass user endpoints (`/api/v2/users`)
5
6
module UserMethods
6
7
# Search users
7
8
#
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
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
+
3
14
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
4
19
class Response < Hashie ::Mash
5
20
disable_warnings # steep:ignore
6
21
end
You can’t perform that action at this time.
0 commit comments