pulp_2to3_migration_client 0.0.1a1.dev01569436440

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 (39) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +9 -0
  3. data/README.md +110 -0
  4. data/Rakefile +10 -0
  5. data/docs/AsyncOperationResponse.md +17 -0
  6. data/docs/InlineResponse200.md +23 -0
  7. data/docs/InlineResponse2001.md +23 -0
  8. data/docs/MigrationPlan.md +21 -0
  9. data/docs/MigrationPlanRun.md +17 -0
  10. data/docs/MigrationPlansApi.md +289 -0
  11. data/docs/Pulp2Content.md +31 -0
  12. data/docs/Pulp2contentApi.md +148 -0
  13. data/git_push.sh +58 -0
  14. data/lib/pulp_2to3_migration_client/api/migration_plans_api.rb +346 -0
  15. data/lib/pulp_2to3_migration_client/api/pulp2content_api.rb +185 -0
  16. data/lib/pulp_2to3_migration_client/api_client.rb +402 -0
  17. data/lib/pulp_2to3_migration_client/api_error.rb +57 -0
  18. data/lib/pulp_2to3_migration_client/configuration.rb +243 -0
  19. data/lib/pulp_2to3_migration_client/models/async_operation_response.rb +202 -0
  20. data/lib/pulp_2to3_migration_client/models/inline_response200.rb +235 -0
  21. data/lib/pulp_2to3_migration_client/models/inline_response2001.rb +235 -0
  22. data/lib/pulp_2to3_migration_client/models/migration_plan.rb +221 -0
  23. data/lib/pulp_2to3_migration_client/models/migration_plan_run.rb +199 -0
  24. data/lib/pulp_2to3_migration_client/models/pulp2_content.rb +357 -0
  25. data/lib/pulp_2to3_migration_client/version.rb +15 -0
  26. data/lib/pulp_2to3_migration_client.rb +47 -0
  27. data/pulp_2to3_migration_client.gemspec +39 -0
  28. data/spec/api/migration_plans_api_spec.rb +99 -0
  29. data/spec/api/pulp2content_api_spec.rb +73 -0
  30. data/spec/api_client_spec.rb +188 -0
  31. data/spec/configuration_spec.rb +42 -0
  32. data/spec/models/async_operation_response_spec.rb +41 -0
  33. data/spec/models/inline_response2001_spec.rb +59 -0
  34. data/spec/models/inline_response200_spec.rb +59 -0
  35. data/spec/models/migration_plan_run_spec.rb +41 -0
  36. data/spec/models/migration_plan_spec.rb +53 -0
  37. data/spec/models/pulp2_content_spec.rb +83 -0
  38. data/spec/spec_helper.rb +111 -0
  39. metadata +146 -0
metadata ADDED
@@ -0,0 +1,146 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pulp_2to3_migration_client
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1a1.dev01569436440
5
+ platform: ruby
6
+ authors:
7
+ - OpenAPI-Generator
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-09-25 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: 0.14.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 0.14.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: json
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '2.1'
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: 2.1.0
37
+ type: :runtime
38
+ prerelease: false
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - "~>"
42
+ - !ruby/object:Gem::Version
43
+ version: '2.1'
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: 2.1.0
47
+ - !ruby/object:Gem::Dependency
48
+ name: rspec
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '3.6'
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: 3.6.0
57
+ type: :development
58
+ prerelease: false
59
+ version_requirements: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - "~>"
62
+ - !ruby/object:Gem::Version
63
+ version: '3.6'
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: 3.6.0
67
+ description: No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
68
+ email:
69
+ - ''
70
+ executables: []
71
+ extensions: []
72
+ extra_rdoc_files: []
73
+ files:
74
+ - Gemfile
75
+ - README.md
76
+ - Rakefile
77
+ - docs/AsyncOperationResponse.md
78
+ - docs/InlineResponse200.md
79
+ - docs/InlineResponse2001.md
80
+ - docs/MigrationPlan.md
81
+ - docs/MigrationPlanRun.md
82
+ - docs/MigrationPlansApi.md
83
+ - docs/Pulp2Content.md
84
+ - docs/Pulp2contentApi.md
85
+ - git_push.sh
86
+ - lib/pulp_2to3_migration_client.rb
87
+ - lib/pulp_2to3_migration_client/api/migration_plans_api.rb
88
+ - lib/pulp_2to3_migration_client/api/pulp2content_api.rb
89
+ - lib/pulp_2to3_migration_client/api_client.rb
90
+ - lib/pulp_2to3_migration_client/api_error.rb
91
+ - lib/pulp_2to3_migration_client/configuration.rb
92
+ - lib/pulp_2to3_migration_client/models/async_operation_response.rb
93
+ - lib/pulp_2to3_migration_client/models/inline_response200.rb
94
+ - lib/pulp_2to3_migration_client/models/inline_response2001.rb
95
+ - lib/pulp_2to3_migration_client/models/migration_plan.rb
96
+ - lib/pulp_2to3_migration_client/models/migration_plan_run.rb
97
+ - lib/pulp_2to3_migration_client/models/pulp2_content.rb
98
+ - lib/pulp_2to3_migration_client/version.rb
99
+ - pulp_2to3_migration_client.gemspec
100
+ - spec/api/migration_plans_api_spec.rb
101
+ - spec/api/pulp2content_api_spec.rb
102
+ - spec/api_client_spec.rb
103
+ - spec/configuration_spec.rb
104
+ - spec/models/async_operation_response_spec.rb
105
+ - spec/models/inline_response2001_spec.rb
106
+ - spec/models/inline_response200_spec.rb
107
+ - spec/models/migration_plan_run_spec.rb
108
+ - spec/models/migration_plan_spec.rb
109
+ - spec/models/pulp2_content_spec.rb
110
+ - spec/spec_helper.rb
111
+ homepage: https://openapi-generator.tech
112
+ licenses:
113
+ - GPL-2.0
114
+ metadata: {}
115
+ post_install_message:
116
+ rdoc_options: []
117
+ require_paths:
118
+ - lib
119
+ required_ruby_version: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - ">="
122
+ - !ruby/object:Gem::Version
123
+ version: '1.9'
124
+ required_rubygems_version: !ruby/object:Gem::Requirement
125
+ requirements:
126
+ - - ">"
127
+ - !ruby/object:Gem::Version
128
+ version: 1.3.1
129
+ requirements: []
130
+ rubyforge_project:
131
+ rubygems_version: 2.7.7
132
+ signing_key:
133
+ specification_version: 4
134
+ summary: Pulp 3 API Ruby Gem
135
+ test_files:
136
+ - spec/api/migration_plans_api_spec.rb
137
+ - spec/api/pulp2content_api_spec.rb
138
+ - spec/api_client_spec.rb
139
+ - spec/configuration_spec.rb
140
+ - spec/models/migration_plan_run_spec.rb
141
+ - spec/models/migration_plan_spec.rb
142
+ - spec/models/inline_response2001_spec.rb
143
+ - spec/models/async_operation_response_spec.rb
144
+ - spec/models/pulp2_content_spec.rb
145
+ - spec/models/inline_response200_spec.rb
146
+ - spec/spec_helper.rb