File tree 6 files changed +22
-6
lines changed
active_storage_bridge/attached
6 files changed +22
-6
lines changed Original file line number Diff line number Diff line change
1
+ # This file is for unifying the coding style for different editors and IDEs
2
+ # editorconfig.org
3
+
4
+ root = true
5
+
6
+ [* ]
7
+ charset = utf-8
8
+ trim_trailing_whitespace = true
9
+ insert_final_newline = true
10
+ indent_style = space
11
+ indent_size = 2
12
+ end_of_line = lf
13
+
14
+ [* .md ]
15
+ trim_trailing_whitespace = true
Original file line number Diff line number Diff line change 97
97
nokogiri (>= 1.5.9 )
98
98
mail (2.7.0 )
99
99
mini_mime (>= 0.1.1 )
100
- marcel (0.3.2 )
100
+ marcel (0.3.3 )
101
101
mimemagic (~> 0.3.2 )
102
102
method_source (0.9.0 )
103
103
mimemagic (0.3.2 )
152
152
rb-fsevent (0.10.3 )
153
153
rb-inotify (0.9.10 )
154
154
ffi (>= 0.5.0 , < 2 )
155
- rubocop (0.59.0 )
155
+ rubocop (0.59.1 )
156
156
jaro_winkler (~> 1.5.1 )
157
157
parallel (~> 1.10 )
158
158
parser (>= 2.5 , != 2.5.1.1 )
197
197
turbolinks-source (5.2.0 )
198
198
tzinfo (1.2.5 )
199
199
thread_safe (~> 0.1 )
200
- uglifier (4.1.18 )
200
+ uglifier (4.1.19 )
201
201
execjs (>= 0.3.0 , < 3 )
202
202
unicode-display_width (1.4.0 )
203
203
validates_timeliness (5.0.0.alpha3 )
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
class FormsController < ApplicationController
4
- layout "application" , only : %i[ index new create edit update ]
5
- before_action :set_form , only : %i[ :show edit update destroy ]
4
+ layout "application"
5
+
6
+ before_action :set_form , only : %i[ edit update destroy ]
6
7
7
8
# GET /forms
8
9
def index
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
class FieldOptions < DuckRecord ::Base
4
- include ActsAsDefaultValue
4
+ include FormCore :: ActsAsDefaultValue
5
5
include EnumAttributeLocalizable
6
6
7
7
class_attribute :keeping_old_serialization
You can’t perform that action at this time.
0 commit comments