quake_timesheets_client 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. checksums.yaml +7 -0
  2. data/GENERATING_README.md +17 -0
  3. data/Gemfile +9 -0
  4. data/README.md +161 -0
  5. data/Rakefile +10 -0
  6. data/build.sh +10 -0
  7. data/commands +13 -0
  8. data/docs/Approval.md +34 -0
  9. data/docs/ApprovalType.md +24 -0
  10. data/docs/ApprovalTypesApi.md +153 -0
  11. data/docs/ApprovalsApi.md +153 -0
  12. data/docs/Dataset.md +24 -0
  13. data/docs/DatasetsApi.md +214 -0
  14. data/docs/EntriesApi.md +251 -0
  15. data/docs/Entry.md +36 -0
  16. data/docs/PeopleApi.md +151 -0
  17. data/docs/Person.md +22 -0
  18. data/git_push.sh +58 -0
  19. data/lib/quake_timesheets_client.rb +58 -0
  20. data/lib/quake_timesheets_client/api/approval_types_api.rb +158 -0
  21. data/lib/quake_timesheets_client/api/approvals_api.rb +174 -0
  22. data/lib/quake_timesheets_client/api/datasets_api.rb +202 -0
  23. data/lib/quake_timesheets_client/api/entries_api.rb +253 -0
  24. data/lib/quake_timesheets_client/api/people_api.rb +151 -0
  25. data/lib/quake_timesheets_client/api_client.rb +396 -0
  26. data/lib/quake_timesheets_client/api_error.rb +57 -0
  27. data/lib/quake_timesheets_client/configuration.rb +302 -0
  28. data/lib/quake_timesheets_client/models/approval.rb +378 -0
  29. data/lib/quake_timesheets_client/models/approval_type.rb +269 -0
  30. data/lib/quake_timesheets_client/models/dataset.rb +268 -0
  31. data/lib/quake_timesheets_client/models/entry.rb +361 -0
  32. data/lib/quake_timesheets_client/models/person.rb +254 -0
  33. data/lib/quake_timesheets_client/version.rb +24 -0
  34. data/quake_timesheets_client.gemspec +38 -0
  35. data/ruby-templates/README.mustache +187 -0
  36. data/ruby-templates/api_client.mustache +263 -0
  37. data/ruby-templates/api_client_faraday_partial.mustache +140 -0
  38. data/ruby-templates/configuration.mustache +379 -0
  39. data/ruby-templates/gem.mustache +59 -0
  40. data/ruby-templates/version.mustache +16 -0
  41. data/ruby.config.yaml +10 -0
  42. data/spec/api/approval_types_api_spec.rb +59 -0
  43. data/spec/api/approvals_api_spec.rb +60 -0
  44. data/spec/api/datasets_api_spec.rb +67 -0
  45. data/spec/api/entries_api_spec.rb +82 -0
  46. data/spec/api/people_api_spec.rb +58 -0
  47. data/spec/api_client_spec.rb +188 -0
  48. data/spec/configuration_spec.rb +42 -0
  49. data/spec/models/approval_spec.rb +86 -0
  50. data/spec/models/approval_type_spec.rb +52 -0
  51. data/spec/models/dataset_spec.rb +52 -0
  52. data/spec/models/entry_spec.rb +92 -0
  53. data/spec/models/person_spec.rb +46 -0
  54. data/spec/spec_helper.rb +111 -0
  55. metadata +149 -0
metadata ADDED
@@ -0,0 +1,149 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: quake_timesheets_client
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - OpenAPI-Generator
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-05-03 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'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 1.0.1
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '1.0'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 1.0.1
33
+ - !ruby/object:Gem::Dependency
34
+ name: rspec
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '3.6'
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: 3.6.0
43
+ type: :development
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - "~>"
48
+ - !ruby/object:Gem::Version
49
+ version: '3.6'
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: 3.6.0
53
+ description: Requires the Quake Timesheets system
54
+ email:
55
+ - ''
56
+ executables: []
57
+ extensions: []
58
+ extra_rdoc_files: []
59
+ files:
60
+ - GENERATING_README.md
61
+ - Gemfile
62
+ - README.md
63
+ - Rakefile
64
+ - build.sh
65
+ - commands
66
+ - docs/Approval.md
67
+ - docs/ApprovalType.md
68
+ - docs/ApprovalTypesApi.md
69
+ - docs/ApprovalsApi.md
70
+ - docs/Dataset.md
71
+ - docs/DatasetsApi.md
72
+ - docs/EntriesApi.md
73
+ - docs/Entry.md
74
+ - docs/PeopleApi.md
75
+ - docs/Person.md
76
+ - git_push.sh
77
+ - lib/quake_timesheets_client.rb
78
+ - lib/quake_timesheets_client/api/approval_types_api.rb
79
+ - lib/quake_timesheets_client/api/approvals_api.rb
80
+ - lib/quake_timesheets_client/api/datasets_api.rb
81
+ - lib/quake_timesheets_client/api/entries_api.rb
82
+ - lib/quake_timesheets_client/api/people_api.rb
83
+ - lib/quake_timesheets_client/api_client.rb
84
+ - lib/quake_timesheets_client/api_error.rb
85
+ - lib/quake_timesheets_client/configuration.rb
86
+ - lib/quake_timesheets_client/models/approval.rb
87
+ - lib/quake_timesheets_client/models/approval_type.rb
88
+ - lib/quake_timesheets_client/models/dataset.rb
89
+ - lib/quake_timesheets_client/models/entry.rb
90
+ - lib/quake_timesheets_client/models/person.rb
91
+ - lib/quake_timesheets_client/version.rb
92
+ - quake_timesheets_client.gemspec
93
+ - ruby-templates/README.mustache
94
+ - ruby-templates/api_client.mustache
95
+ - ruby-templates/api_client_faraday_partial.mustache
96
+ - ruby-templates/configuration.mustache
97
+ - ruby-templates/gem.mustache
98
+ - ruby-templates/version.mustache
99
+ - ruby.config.yaml
100
+ - spec/api/approval_types_api_spec.rb
101
+ - spec/api/approvals_api_spec.rb
102
+ - spec/api/datasets_api_spec.rb
103
+ - spec/api/entries_api_spec.rb
104
+ - spec/api/people_api_spec.rb
105
+ - spec/api_client_spec.rb
106
+ - spec/configuration_spec.rb
107
+ - spec/models/approval_spec.rb
108
+ - spec/models/approval_type_spec.rb
109
+ - spec/models/dataset_spec.rb
110
+ - spec/models/entry_spec.rb
111
+ - spec/models/person_spec.rb
112
+ - spec/spec_helper.rb
113
+ homepage: https://www.quake.co.uk
114
+ licenses:
115
+ - MIT
116
+ metadata: {}
117
+ post_install_message:
118
+ rdoc_options: []
119
+ require_paths:
120
+ - lib
121
+ required_ruby_version: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - ">="
124
+ - !ruby/object:Gem::Version
125
+ version: '2.7'
126
+ required_rubygems_version: !ruby/object:Gem::Requirement
127
+ requirements:
128
+ - - ">="
129
+ - !ruby/object:Gem::Version
130
+ version: '0'
131
+ requirements: []
132
+ rubygems_version: 3.1.4
133
+ signing_key:
134
+ specification_version: 4
135
+ summary: A client for the Quake Timesheets API
136
+ test_files:
137
+ - spec/api/approvals_api_spec.rb
138
+ - spec/api/entries_api_spec.rb
139
+ - spec/api/datasets_api_spec.rb
140
+ - spec/api/approval_types_api_spec.rb
141
+ - spec/api/people_api_spec.rb
142
+ - spec/api_client_spec.rb
143
+ - spec/configuration_spec.rb
144
+ - spec/models/entry_spec.rb
145
+ - spec/models/dataset_spec.rb
146
+ - spec/models/person_spec.rb
147
+ - spec/models/approval_type_spec.rb
148
+ - spec/models/approval_spec.rb
149
+ - spec/spec_helper.rb