Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dist/** linguist-generated
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^16.0.1",
"chrome-launcher": "^1.1.2",
"eslint": "^9.23.0",
"eslint": "^9.25.1",
"eslint-plugin-compat": "^6.0.2",
"neostandard": "^0.12.1",
"puppeteer-core": "^24.4.0",
"rollup": "^4.36.0",
"puppeteer-core": "^24.7.2",
"rollup": "^4.40.0",
"rollup-plugin-copy": "^3.5.0"
},
"peerDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions test/action_view/cases/helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def whole_form_for(action = 'http://www.example.com', id = nil, html_class = nil
method = options
end

form_for_text(action, id, html_class, remote, (validators || no_validate), file) << snowman(method) << (contents || '') << '</form>'
form_for_text(action, id, html_class, remote, validators || no_validate, file) << snowman(method) << (contents || '') << '</form>'
end

def form_with_text(action = 'http://www.example.com', id = nil, html_class = nil, local = nil, validators = nil, file = nil)
Expand Down Expand Up @@ -221,7 +221,7 @@ def whole_form_with(action = 'http://www.example.com', options = nil)
method = options
end

form_with_text(action, id, html_class, local, (validators || no_validate), file) << snowman(method) << (contents || '') << '</form>'
form_with_text(action, id, html_class, local, validators || no_validate, file) << snowman(method) << (contents || '') << '</form>'
end

def client_side_form_settings_helper
Expand Down
Loading