youcanbookme 0.0.1.alpha

Sign up to get free protection for your applications and to get access to all the features.
Files changed (73) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/gem-push.yml +37 -0
  3. data/.github/workflows/test.yml +21 -0
  4. data/.gitignore +10 -0
  5. data/.rubocom.yml +69 -0
  6. data/CHANGELOG.md +7 -0
  7. data/CODE_OF_CONDUCT.md +74 -0
  8. data/Gemfile +6 -0
  9. data/LICENSE.txt +21 -0
  10. data/README.md +119 -0
  11. data/Rakefile +12 -0
  12. data/bin/console +7 -0
  13. data/bin/setup +6 -0
  14. data/lib/youcanbookme.rb +22 -0
  15. data/lib/youcanbookme/client.rb +85 -0
  16. data/lib/youcanbookme/common_module.rb +32 -0
  17. data/lib/youcanbookme/configuration.rb +20 -0
  18. data/lib/youcanbookme/error.rb +15 -0
  19. data/lib/youcanbookme/http_command.rb +94 -0
  20. data/lib/youcanbookme/models/account.rb +125 -0
  21. data/lib/youcanbookme/models/action.rb +91 -0
  22. data/lib/youcanbookme/models/answer.rb +19 -0
  23. data/lib/youcanbookme/models/appointment_type.rb +7 -0
  24. data/lib/youcanbookme/models/booking.rb +167 -0
  25. data/lib/youcanbookme/models/booking_lobby.rb +13 -0
  26. data/lib/youcanbookme/models/calendar.rb +67 -0
  27. data/lib/youcanbookme/models/caligraph_calendar.rb +29 -0
  28. data/lib/youcanbookme/models/caligraph_event.rb +8 -0
  29. data/lib/youcanbookme/models/caligraph_link.rb +17 -0
  30. data/lib/youcanbookme/models/caligraph_local_account.rb +47 -0
  31. data/lib/youcanbookme/models/caligraph_permission.rb +32 -0
  32. data/lib/youcanbookme/models/caligraph_remote_account.rb +23 -0
  33. data/lib/youcanbookme/models/caligraph_safe_local_account.rb +13 -0
  34. data/lib/youcanbookme/models/card.rb +25 -0
  35. data/lib/youcanbookme/models/event.rb +98 -0
  36. data/lib/youcanbookme/models/instant.rb +9 -0
  37. data/lib/youcanbookme/models/link.rb +17 -0
  38. data/lib/youcanbookme/models/local_account.rb +180 -0
  39. data/lib/youcanbookme/models/model_utils.rb +88 -0
  40. data/lib/youcanbookme/models/name_and_address.rb +25 -0
  41. data/lib/youcanbookme/models/participant.rb +25 -0
  42. data/lib/youcanbookme/models/permission.rb +39 -0
  43. data/lib/youcanbookme/models/profile.rb +114 -0
  44. data/lib/youcanbookme/models/profile_afterwards.rb +34 -0
  45. data/lib/youcanbookme/models/profile_appointment_type.rb +23 -0
  46. data/lib/youcanbookme/models/profile_appointment_types.rb +27 -0
  47. data/lib/youcanbookme/models/profile_calendar.rb +21 -0
  48. data/lib/youcanbookme/models/profile_calendars.rb +19 -0
  49. data/lib/youcanbookme/models/profile_cancel_or_reschedule.rb +21 -0
  50. data/lib/youcanbookme/models/profile_display.rb +55 -0
  51. data/lib/youcanbookme/models/profile_local_account.rb +19 -0
  52. data/lib/youcanbookme/models/profile_payments.rb +23 -0
  53. data/lib/youcanbookme/models/profile_remote_account.rb +25 -0
  54. data/lib/youcanbookme/models/profile_remote_reminder.rb +15 -0
  55. data/lib/youcanbookme/models/profile_team_member.rb +33 -0
  56. data/lib/youcanbookme/models/profile_team_members.rb +29 -0
  57. data/lib/youcanbookme/models/profile_tentative.rb +16 -0
  58. data/lib/youcanbookme/models/profile_times.rb +79 -0
  59. data/lib/youcanbookme/models/profile_vouchers.rb +17 -0
  60. data/lib/youcanbookme/models/provider.rb +17 -0
  61. data/lib/youcanbookme/models/purchase.rb +126 -0
  62. data/lib/youcanbookme/models/purchases_sync_changes.rb +19 -0
  63. data/lib/youcanbookme/models/query.rb +8 -0
  64. data/lib/youcanbookme/models/question.rb +24 -0
  65. data/lib/youcanbookme/models/reminder.rb +21 -0
  66. data/lib/youcanbookme/models/remote_account.rb +63 -0
  67. data/lib/youcanbookme/models/team_member.rb +8 -0
  68. data/lib/youcanbookme/models/template_event.rb +17 -0
  69. data/lib/youcanbookme/models/transaction.rb +42 -0
  70. data/lib/youcanbookme/models/warning.rb +27 -0
  71. data/lib/youcanbookme/version.rb +5 -0
  72. data/youcanbookme.gemspec +41 -0
  73. metadata +244 -0
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ module YouCanBookMe
4
+ # YouCanBookMe's PurchasesSyncChanges model.
5
+ class PurchasesSyncChanges
6
+ include ModelUtils
7
+
8
+ # @return [Boolean]
9
+ attr_accessor :hasValue
10
+ # @return [String]
11
+ attr_accessor :plan
12
+ # @return [String]
13
+ attr_accessor :planExpiresAt
14
+ # @return [Integer]
15
+ attr_accessor :quantityPaidFor
16
+ # @return [String]
17
+ attr_accessor :trialEndsAt
18
+ end
19
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module YouCanBookMe
4
+ # YouCanBookMe's Query model.
5
+ class Query
6
+ include ModelUtils
7
+ end
8
+ end
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ module YouCanBookMe
4
+ class Question
5
+ include ModelUtils
6
+
7
+ # @return [String]
8
+ attr_accessor :after
9
+ # @return [String]
10
+ attr_accessor :before
11
+ # @return [String]
12
+ attr_accessor :code
13
+ # @return [Array<String>]
14
+ attr_accessor :options
15
+ # @return [Boolean]
16
+ attr_accessor :required
17
+ # @return [String]
18
+ attr_accessor :type
19
+ # @return [String]
20
+ attr_accessor :validation
21
+ # @return [String]
22
+ attr_accessor :validationMessage
23
+ end
24
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module YouCanBookMe
4
+ # YouCanBookMe's Reminder model.
5
+ class Reminder
6
+ include ModelUtils
7
+
8
+ ASSOCIATION = {
9
+ links: Link
10
+ }.freeze
11
+
12
+ # @return [String]
13
+ attr_accessor :orm
14
+ # @return [String]
15
+ attr_accessor :id
16
+ # @return [Array<YouCanBookMe::Link>]
17
+ attr_accessor :links
18
+ # @return [Integer]
19
+ attr_accessor :seconds
20
+ end
21
+ end
@@ -0,0 +1,63 @@
1
+ # frozen_string_literal: true
2
+
3
+ module YouCanBookMe
4
+ # YouCanBookMe's RemoteAccount model.
5
+ class RemoteAccount
6
+ include ModelUtils
7
+
8
+ ASSOCIATION = {
9
+ calendars: Calendar,
10
+ databaseVersion: RemoteAccount,
11
+ links: Link,
12
+ localAccount: LocalAccount,
13
+ provider: Provider
14
+ }.freeze
15
+
16
+ # @return [String]
17
+ attr_accessor :accessToken
18
+ # @return [String]
19
+ attr_accessor :accessTokenExpiresAt
20
+ # @return [String]
21
+ attr_accessor :calendarHome
22
+ # @return [Array<YouCanBookMe::Calendar>]
23
+ attr_accessor :calendars
24
+ # @return [YouCanBookMe::RemoteAccount]
25
+ attr_accessor :databaseVersion
26
+ # @return [Boolean]
27
+ attr_accessor :failed
28
+ # @return [String]
29
+ attr_accessor :failure
30
+ # @return [String]
31
+ attr_accessor :host
32
+ # @return [String]
33
+ attr_accessor :id
34
+ # @return [Array<YouCanBookMe::Link>]
35
+ attr_accessor :links
36
+ # @return [YouCanBookMe::LocalAccount>]
37
+ attr_accessor :localAccount
38
+ # @return [String]
39
+ attr_accessor :localAccountEmail
40
+ # @return [String]
41
+ attr_accessor :localAccountId
42
+ # @return [String]
43
+ attr_accessor :password
44
+ # @return [String]
45
+ attr_accessor :principal
46
+ # @return [YouCanBookMe::Provider]
47
+ attr_accessor :provider
48
+ # @return [String]
49
+ attr_accessor :refreshToken
50
+ # @return [String]
51
+ attr_accessor :requestedAction
52
+ # @return [String]
53
+ attr_accessor :revision
54
+ # @return [Boolean]
55
+ attr_accessor :statusCanceledDeletesEvent
56
+ # @return [String]
57
+ attr_accessor :type
58
+ # @return [Boolean]
59
+ attr_accessor :upCalendarsRecordFailure
60
+ # @return [String]
61
+ attr_accessor :username
62
+ end
63
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module YouCanBookMe
4
+ # YouCanBookMe's TeamMember model.
5
+ class TeamMember
6
+ include ModelUtils
7
+ end
8
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ module YouCanBookMe
4
+ # YouCanBookMe's TemplateEvent model.
5
+ class TemplateEvent
6
+ include ModelUtils
7
+
8
+ # @return [String]
9
+ attr_accessor :description
10
+ # @return [String]
11
+ attr_accessor :location
12
+ # @return [Array<String>]
13
+ attr_accessor :participants
14
+ # @return [String]
15
+ attr_accessor :title
16
+ end
17
+ end
@@ -0,0 +1,42 @@
1
+ # frozen_string_literal: true
2
+
3
+ module YouCanBookMe
4
+ # YouCanBookMe's Transaction model.
5
+ class Transaction
6
+ include ModelUtils
7
+
8
+ ASSOCIATION = {
9
+ linked: Transaction,
10
+ purchase: Purchase,
11
+ }.freeze
12
+
13
+ # @return [String]
14
+ attr_accessor :account
15
+ # @return [String]
16
+ attr_accessor :createdAt
17
+ # @return [String]
18
+ attr_accessor :description
19
+ # @return [Integer]
20
+ attr_accessor :gross
21
+ # @return [String]
22
+ attr_accessor :id
23
+ # @return [YouCanBookMe::Transaction]
24
+ attr_accessor :linked
25
+ # @return [String]
26
+ attr_accessor :localAccountId
27
+ # @return [Integer]
28
+ attr_accessor :net
29
+ # @return [YouCanBookMe::Purchase]
30
+ attr_accessor :purchase
31
+ # @return [String]
32
+ attr_accessor :purchaseId
33
+ # @return [String]
34
+ attr_accessor :remoteId
35
+ # @return [Integer]
36
+ attr_accessor :tax
37
+ # @return [String]
38
+ attr_accessor :type
39
+ # @return [String]
40
+ attr_accessor :updatedAt
41
+ end
42
+ end
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ module YouCanBookMe
4
+ # YouCanBookMe's Warning model.
5
+ class Warning
6
+ include ModelUtils
7
+
8
+ # @return [String]
9
+ attr_accessor :code
10
+ # @return [String]
11
+ attr_accessor :fixUrl
12
+ # @return [String]
13
+ attr_accessor :fixUrlText
14
+ # @return [Integer]
15
+ attr_accessor :frequency
16
+ # @return [Integer]
17
+ attr_accessor :level
18
+ # @return [String]
19
+ attr_accessor :longText
20
+ # @return [String]
21
+ attr_accessor :mediumText
22
+ # @return [Boolean]
23
+ attr_accessor :push
24
+ # @return [String]
25
+ attr_accessor :shortText
26
+ end
27
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module YouCanBookMe
4
+ VERSION = '0.0.1.alpha'
5
+ end
@@ -0,0 +1,41 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/youcanbookme/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'youcanbookme'
7
+ spec.version = YouCanBookMe::VERSION
8
+ spec.authors = ['Kenji Koshikawa']
9
+ spec.email = ['koshikawa2009@gmail.com']
10
+
11
+ spec.description = 'Client for accessing YouCanBook.me APIs'
12
+ spec.summary = spec.description
13
+ spec.homepage = 'https://github.com/koshilife/youcanbookme-api-ruby-client'
14
+ spec.license = 'MIT'
15
+ spec.required_ruby_version = Gem::Requirement.new('>= 2.4.0')
16
+
17
+ spec.metadata['homepage_uri'] = spec.homepage
18
+ spec.metadata['source_code_uri'] = 'https://github.com/koshilife/youcanbookme-api-ruby-client'
19
+ spec.metadata['changelog_uri'] = "#{spec.metadata['source_code_uri']}/blob/master/CHANGELOG.md"
20
+ spec.metadata['documentation_uri'] = "https://www.rubydoc.info/gems/youcanbookme/#{spec.version}"
21
+
22
+ # Specify which files should be added to the gem when it is released.
23
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
24
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
25
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
26
+ end
27
+ spec.bindir = 'exe'
28
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
29
+ spec.require_paths = ['lib']
30
+
31
+ spec.add_runtime_dependency 'faraday', '>= 1.0.1'
32
+ spec.add_runtime_dependency 'faraday_middleware', '>= 1.0.0'
33
+ spec.add_runtime_dependency 'zeitwerk', '>= 2.3.0'
34
+
35
+ spec.add_development_dependency 'bundler'
36
+ spec.add_development_dependency 'codecov'
37
+ spec.add_development_dependency 'minitest'
38
+ spec.add_development_dependency 'rake'
39
+ spec.add_development_dependency 'simplecov'
40
+ spec.add_development_dependency 'webmock'
41
+ end
metadata ADDED
@@ -0,0 +1,244 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: youcanbookme
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1.alpha
5
+ platform: ruby
6
+ authors:
7
+ - Kenji Koshikawa
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2020-09-02 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: faraday
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 1.0.1
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 1.0.1
27
+ - !ruby/object:Gem::Dependency
28
+ name: faraday_middleware
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 1.0.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 1.0.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: zeitwerk
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: 2.3.0
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: 2.3.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: codecov
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: minitest
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rake
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: simplecov
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: webmock
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ description: Client for accessing YouCanBook.me APIs
140
+ email:
141
+ - koshikawa2009@gmail.com
142
+ executables: []
143
+ extensions: []
144
+ extra_rdoc_files: []
145
+ files:
146
+ - ".github/workflows/gem-push.yml"
147
+ - ".github/workflows/test.yml"
148
+ - ".gitignore"
149
+ - ".rubocom.yml"
150
+ - CHANGELOG.md
151
+ - CODE_OF_CONDUCT.md
152
+ - Gemfile
153
+ - LICENSE.txt
154
+ - README.md
155
+ - Rakefile
156
+ - bin/console
157
+ - bin/setup
158
+ - lib/youcanbookme.rb
159
+ - lib/youcanbookme/client.rb
160
+ - lib/youcanbookme/common_module.rb
161
+ - lib/youcanbookme/configuration.rb
162
+ - lib/youcanbookme/error.rb
163
+ - lib/youcanbookme/http_command.rb
164
+ - lib/youcanbookme/models/account.rb
165
+ - lib/youcanbookme/models/action.rb
166
+ - lib/youcanbookme/models/answer.rb
167
+ - lib/youcanbookme/models/appointment_type.rb
168
+ - lib/youcanbookme/models/booking.rb
169
+ - lib/youcanbookme/models/booking_lobby.rb
170
+ - lib/youcanbookme/models/calendar.rb
171
+ - lib/youcanbookme/models/caligraph_calendar.rb
172
+ - lib/youcanbookme/models/caligraph_event.rb
173
+ - lib/youcanbookme/models/caligraph_link.rb
174
+ - lib/youcanbookme/models/caligraph_local_account.rb
175
+ - lib/youcanbookme/models/caligraph_permission.rb
176
+ - lib/youcanbookme/models/caligraph_remote_account.rb
177
+ - lib/youcanbookme/models/caligraph_safe_local_account.rb
178
+ - lib/youcanbookme/models/card.rb
179
+ - lib/youcanbookme/models/event.rb
180
+ - lib/youcanbookme/models/instant.rb
181
+ - lib/youcanbookme/models/link.rb
182
+ - lib/youcanbookme/models/local_account.rb
183
+ - lib/youcanbookme/models/model_utils.rb
184
+ - lib/youcanbookme/models/name_and_address.rb
185
+ - lib/youcanbookme/models/participant.rb
186
+ - lib/youcanbookme/models/permission.rb
187
+ - lib/youcanbookme/models/profile.rb
188
+ - lib/youcanbookme/models/profile_afterwards.rb
189
+ - lib/youcanbookme/models/profile_appointment_type.rb
190
+ - lib/youcanbookme/models/profile_appointment_types.rb
191
+ - lib/youcanbookme/models/profile_calendar.rb
192
+ - lib/youcanbookme/models/profile_calendars.rb
193
+ - lib/youcanbookme/models/profile_cancel_or_reschedule.rb
194
+ - lib/youcanbookme/models/profile_display.rb
195
+ - lib/youcanbookme/models/profile_local_account.rb
196
+ - lib/youcanbookme/models/profile_payments.rb
197
+ - lib/youcanbookme/models/profile_remote_account.rb
198
+ - lib/youcanbookme/models/profile_remote_reminder.rb
199
+ - lib/youcanbookme/models/profile_team_member.rb
200
+ - lib/youcanbookme/models/profile_team_members.rb
201
+ - lib/youcanbookme/models/profile_tentative.rb
202
+ - lib/youcanbookme/models/profile_times.rb
203
+ - lib/youcanbookme/models/profile_vouchers.rb
204
+ - lib/youcanbookme/models/provider.rb
205
+ - lib/youcanbookme/models/purchase.rb
206
+ - lib/youcanbookme/models/purchases_sync_changes.rb
207
+ - lib/youcanbookme/models/query.rb
208
+ - lib/youcanbookme/models/question.rb
209
+ - lib/youcanbookme/models/reminder.rb
210
+ - lib/youcanbookme/models/remote_account.rb
211
+ - lib/youcanbookme/models/team_member.rb
212
+ - lib/youcanbookme/models/template_event.rb
213
+ - lib/youcanbookme/models/transaction.rb
214
+ - lib/youcanbookme/models/warning.rb
215
+ - lib/youcanbookme/version.rb
216
+ - youcanbookme.gemspec
217
+ homepage: https://github.com/koshilife/youcanbookme-api-ruby-client
218
+ licenses:
219
+ - MIT
220
+ metadata:
221
+ homepage_uri: https://github.com/koshilife/youcanbookme-api-ruby-client
222
+ source_code_uri: https://github.com/koshilife/youcanbookme-api-ruby-client
223
+ changelog_uri: https://github.com/koshilife/youcanbookme-api-ruby-client/blob/master/CHANGELOG.md
224
+ documentation_uri: https://www.rubydoc.info/gems/youcanbookme/0.0.1.alpha
225
+ post_install_message:
226
+ rdoc_options: []
227
+ require_paths:
228
+ - lib
229
+ required_ruby_version: !ruby/object:Gem::Requirement
230
+ requirements:
231
+ - - ">="
232
+ - !ruby/object:Gem::Version
233
+ version: 2.4.0
234
+ required_rubygems_version: !ruby/object:Gem::Requirement
235
+ requirements:
236
+ - - ">"
237
+ - !ruby/object:Gem::Version
238
+ version: 1.3.1
239
+ requirements: []
240
+ rubygems_version: 3.0.3
241
+ signing_key:
242
+ specification_version: 4
243
+ summary: Client for accessing YouCanBook.me APIs
244
+ test_files: []