bullet_train-super_scaffolding 1.0.11 → 1.0.12

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: 9715107a94a55a5f76d033fe009a38ecb43050b21feffd65b6b5bbf73ac0a851
4
- data.tar.gz: 78589e39324ec782edda9667268db1fafcd2563968d2a507b4ff0ea7e2922376
3
+ metadata.gz: 4383583527b6e82c8c4a2c3b3377b70febe3aac37d81fb87e0bb8c03a740b8f4
4
+ data.tar.gz: b805ee23858fdb68dcb5c42809a6bfa8a8b5476457a3a4c7186066cf6ba21ed2
5
5
  SHA512:
6
- metadata.gz: bafe1e7a17f192a756d9b4729f988a68cbce430e49829166b9f10cf1dc54945924186c51b39b17719b8f3f775ab9fac222518b0244db4e61d67ee8d3839da530
7
- data.tar.gz: 2e25bf8f71b2d5fb91d6afcba5b9f624a2269680c549f3dfc59e91ec366ae38b30e15d755982db9d201eeb842219235dafe30112d128c9322ea4c34ed6108488
6
+ metadata.gz: a566c140c290fe44daf385d5b34d288d15335d3bcbad7cacad976e42f688c7eab844bea717f75b70dd75e484c0fedd96e87d6c39de0bbe5bd87703339679d9ea
7
+ data.tar.gz: '000539d956b409f05f7cb365278d3ef3953e5d8466fe407de7a0503b476f99cac25d7eb785ac2b262cf65e9ac759f2c1c31354422d31a9b04eff42d301300c51'
@@ -70,7 +70,6 @@ class Account::Scaffolding::CompletelyConcrete::TangibleThingsController < Accou
70
70
  :boolean_button_value,
71
71
  :button_value,
72
72
  :color_picker_value,
73
- :ckeditor_value,
74
73
  :cloudinary_image_value,
75
74
  :date_field_value,
76
75
  :date_and_time_field_value,
@@ -22,7 +22,6 @@ class Api::V1::Scaffolding::CompletelyConcrete::TangibleThingsEndpoint < Api::V1
22
22
  optional :super_select_value, type: String, allow_blank: true, desc: Api.heading(:super_select_value)
23
23
  optional :text_area_value, type: String, allow_blank: true, desc: Api.heading(:text_area_value)
24
24
  optional :action_text_value, type: String, allow_blank: true, desc: Api.heading(:action_text_value)
25
- optional :ckeditor_value, type: String, allow_blank: true, desc: Api.heading(:ckeditor_value)
26
25
  # 🚅 stop any skipping we're doing now.
27
26
  # 🚅 super scaffolding will insert new fields above this line.
28
27
  # 🚅 skip this section when scaffolding.
@@ -20,7 +20,6 @@ class Api::V1::Scaffolding::CompletelyConcrete::TangibleThingSerializer < Api::V
20
20
  # :multiple_super_select_values,
21
21
  # :text_area_value,
22
22
  # :action_text_value,
23
- # :ckeditor_value,
24
23
  # 🚅 stop any skipping we're doing now.
25
24
  # 🚅 super scaffolding will insert new fields above this line.
26
25
  :created_at,
@@ -49,7 +49,6 @@
49
49
 
50
50
  <%= render 'shared/fields/text_area', method: :text_area_value %>
51
51
  <%= render 'shared/fields/trix_editor', method: :action_text_value %>
52
- <%= render 'shared/fields/ckeditor', method: :ckeditor_value %>
53
52
  <%# 🚅 stop any skipping we're doing now. %>
54
53
  <%# 🚅 super scaffolding will insert new fields above this line. %>
55
54
  <% end %>
@@ -15,7 +15,6 @@ json.extract! tangible_thing,
15
15
  :super_select_value,
16
16
  :text_area_value,
17
17
  :action_text_value,
18
- :ckeditor_value,
19
18
  # 🚅 stop any skipping we're doing now.
20
19
  # 🚅 super scaffolding will insert new fields above this line.
21
20
  :created_at,
@@ -15,7 +15,6 @@
15
15
  <%= render 'shared/attributes/boolean', attribute: :boolean_button_value %>
16
16
  <%= render 'shared/attributes/option', attribute: :button_value %>
17
17
  <%= render 'shared/attributes/options', attribute: :multiple_button_values %>
18
- <%= render 'shared/attributes/html', attribute: :ckeditor_value %>
19
18
  <%= render 'shared/attributes/text', attribute: :cloudinary_image_value %>
20
19
  <%= render 'shared/attributes/date', attribute: :date_field_value %>
21
20
  <%= render 'shared/attributes/date_and_time', attribute: :date_and_time_field_value %>
@@ -141,10 +141,6 @@ en:
141
141
  _: &action_text_value Trix Editor Value
142
142
  label: *action_text_value
143
143
  heading: *action_text_value
144
- ckeditor_value:
145
- _: &ckeditor_value CKEditor Value
146
- label: *ckeditor_value
147
- heading: *ckeditor_value
148
144
  # 🚅 stop any skipping we're doing now.
149
145
  # 🚅 super scaffolding will insert new fields above this line.
150
146
  created_at:
@@ -222,7 +218,6 @@ en:
222
218
  super_select_value: *super_select_value
223
219
  text_area_value: *text_area_value
224
220
  action_text_value: *action_text_value
225
- ckeditor_value: *ckeditor_value
226
221
  # 🚅 stop any skipping we're doing now.
227
222
  # 🚅 super scaffolding will insert new activerecord attributes above this line.
228
223
  created_at: *created_at
@@ -1,5 +1,5 @@
1
1
  module BulletTrain
2
2
  module SuperScaffolding
3
- VERSION = "1.0.11"
3
+ VERSION = "1.0.12"
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.0.11
4
+ version: 1.0.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Culver
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-24 00:00:00.000000000 Z
11
+ date: 2022-02-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails