bullet_train-super_scaffolding 1.4.1 → 1.4.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 485420db9c25005cf70ac8fcbb71bdbd4dadae7ff44f92f8a6ddfaee58b895d4
4
- data.tar.gz: af128caccce76aea17853c4c152311df781c2dcc807ba1d8aad599fd7806d6d1
3
+ metadata.gz: 46a46c523e7e696c6be3ce05792d1c18f93a60f356cda827f8191ceb80006bd0
4
+ data.tar.gz: 969539ad6c139fb154343514e45e2b840bda610df0fe6068a98963a83137914b
5
5
  SHA512:
6
- metadata.gz: 6d009f66dafdac6748fb16b04220187353f508c7688542c68898d10cb6f91206948cb73b8e262c55716381bc3cac705aeb4f4774f6d7624cfdacafc7eaaf2e58
7
- data.tar.gz: ebd80b91923bf8e3549dcc20047f28656285ee493dda4a560a6382a980149dd44c3628a03385f0987ca74d1810c565c4c9340d9a286e0be16d62bb9a19401af0
6
+ metadata.gz: 76dfd86dfd2d8ea9271eb4e2b5f0cc3716ab34b0cc173f9c5a236b4178efe313dd3aa2ef6eacc70e5ff03867129d3920d2f1a345cbaf05dfb6e591953a5d46a9
7
+ data.tar.gz: 34e2273abde8893ecfe7e8f40dd362e2d337ccfa1e0786eef377f9f8e42d868dad498df9a30f56f2b5c75a2aa39bc8195ae171b8f1a8335576f97a241c586802
@@ -1,5 +1,5 @@
1
1
  module BulletTrain
2
2
  module SuperScaffolding
3
- VERSION = "1.4.1"
3
+ VERSION = "1.4.3"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bullet_train-super_scaffolding
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.1
4
+ version: 1.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Culver
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-12 00:00:00.000000000 Z
11
+ date: 2023-09-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: standard
@@ -125,7 +125,6 @@ files:
125
125
  - app/views/account/scaffolding/completely_concrete/tangible_things/index.html.erb
126
126
  - app/views/account/scaffolding/completely_concrete/tangible_things/new.html.erb
127
127
  - app/views/account/scaffolding/completely_concrete/tangible_things/show.html.erb
128
- - app/views/api/v1/open_api/scaffolding/absolutely_abstract/creative_concepts/_paths.yaml.erb
129
128
  - app/views/api/v1/scaffolding/absolutely_abstract/creative_concepts/_creative_concept.json.jbuilder
130
129
  - app/views/api/v1/scaffolding/absolutely_abstract/creative_concepts/index.json.jbuilder
131
130
  - app/views/api/v1/scaffolding/absolutely_abstract/creative_concepts/show.json.jbuilder
@@ -1,93 +0,0 @@
1
- /teams/{team_id}/scaffolding/absolutely_abstract/creative_concepts:
2
- get:
3
- tags:
4
- - "Scaffolding/Absolutely Abstract/Creative Concept"
5
- summary: "List Creative Concept"
6
- operationId: listScaffoldingAbsolutelyAbstractCreativeConcepts
7
- parameters:
8
- - name: team_id
9
- in: path
10
- required: true
11
- schema:
12
- type: string
13
- responses:
14
- "404":
15
- description: "Not Found"
16
- "200":
17
- description: "OK"
18
- content:
19
- application/json:
20
- schema:
21
- type: object
22
- properties:
23
- data:
24
- type: array
25
- items:
26
- $ref: "#/components/schemas/ScaffoldingAbsolutelyAbstractCreativeConceptAttributes"
27
- has_more:
28
- type: boolean
29
- post:
30
- tags:
31
- - "Scaffolding/Absolutely Abstract/Creative Concept"
32
- summary: "Create Creative Concept"
33
- operationId: createScaffoldingAbsolutelyAbstractCreativeConcepts
34
- parameters:
35
- - name: team_id
36
- in: path
37
- required: true
38
- schema:
39
- type: string
40
- responses:
41
- "404":
42
- description: "Not Found"
43
- "201":
44
- description: "Created"
45
- content:
46
- application/json:
47
- schema:
48
- $ref: "#/components/schemas/ScaffoldingAbsolutelyAbstractCreativeConceptParameters"
49
- /scaffolding/absolutely_abstract/creative_concepts/{id}:
50
- get:
51
- tags:
52
- - "Scaffolding/Absolutely Abstract/Creative Concept"
53
- summary: "Fetch Creative Concept"
54
- operationId: getScaffoldingAbsolutelyAbstractCreativeConcepts
55
- parameters:
56
- - $ref: "#/components/parameters/id"
57
- responses:
58
- "404":
59
- description: "Not Found"
60
- "200":
61
- description: "OK"
62
- content:
63
- application/json:
64
- schema:
65
- $ref: "#/components/schemas/ScaffoldingAbsolutelyAbstractCreativeConceptAttributes"
66
- put:
67
- tags:
68
- - "Scaffolding/Absolutely Abstract/Creative Concept"
69
- summary: "Update Creative Concept"
70
- operationId: updateScaffoldingAbsolutelyAbstractCreativeConcepts
71
- parameters:
72
- - $ref: "#/components/parameters/id"
73
- responses:
74
- "404":
75
- description: "Not Found"
76
- "200":
77
- description: "OK"
78
- content:
79
- application/json:
80
- schema:
81
- $ref: "#/components/schemas/ScaffoldingAbsolutelyAbstractCreativeConceptParameters"
82
- delete:
83
- tags:
84
- - "Scaffolding/Absolutely Abstract/Creative Concept"
85
- summary: "Remove Creative Concept"
86
- operationId: removeScaffoldingAbsolutelyAbstractCreativeConcepts
87
- parameters:
88
- - $ref: "#/components/parameters/id"
89
- responses:
90
- "404":
91
- description: "Not Found"
92
- "200":
93
- description: "OK"