Skip to content

Rails 7 compatibility #48

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 29 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
d7c0042
start on 4.2 support
tenderlove Nov 14, 2014
bfec473
Merge branch 'master' into 4.2
Jan 27, 2015
305fca4
Fixed deprecation warning "ActionDispatch::Assertions::SelectorAssert…
Mar 11, 2015
0fed929
Merge pull request #36 from Nike0/4.2
rafaelfranca Mar 12, 2015
5965de8
First pass at making this rals 5 compatable
clifff Feb 28, 2017
cb082ce
back to how this was
clifff Mar 1, 2017
6c89a20
bump version
clifff Mar 1, 2017
2e76228
top level reference
clifff Mar 1, 2017
4544108
Merging master into 4.2 branch
clifff Mar 1, 2017
55ccc04
no need to delete anymore
clifff Mar 1, 2017
9b57f62
versyion bump
clifff Mar 1, 2017
af970e9
Replace alias_method_chain to quiet Rails deperecations
clifff Mar 15, 2017
7c4bfb9
Version bump
clifff Mar 15, 2017
6604edb
I am not very smart
clifff Mar 15, 2017
e385756
Don't access MIME types as constants - it is deprecated
clifff Mar 15, 2017
7547c6f
update default fomat to use a symbol
cschiewek Jan 20, 2021
e2e9ae2
update lock file
cschiewek Jan 20, 2021
b0484e8
bump version
cschiewek Jan 20, 2021
127d279
Merge pull request #1 from voxmedia/ccs-rails-6-updates
Jan 20, 2021
0d1dae7
Update template to Rails 6 format
ebinmore May 20, 2021
7c5acd2
Update version
ebinmore May 20, 2021
740f701
Merge pull request #2 from voxmedia/eb-rails-6-upgrade
ebinmore May 20, 2021
9d69583
This version is not rails 6 compatible
jamiemccarthy Jul 26, 2022
d11a049
Merge branch 'jm-correct-rails-gemspec' into jm-call-source-optional
jamiemccarthy Jul 26, 2022
0570892
Allow #call to be invoked differently in Rails 6
jamiemccarthy Jul 26, 2022
9ace425
Note this version is now rails 6 compatible
jamiemccarthy Jul 26, 2022
a679ef3
Merge pull request #4 from voxmedia/jm-call-source-optional
jamiemccarthy Jul 26, 2022
5b10820
added back render :update with a block to rails 7
Nov 23, 2024
333ccc9
update README
Nov 23, 2024
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
Prev Previous commit
Next Next commit
Update template to Rails 6 format
  • Loading branch information
ebinmore committed May 20, 2021
commit 0d1dae76e0165baaf3bdca4ffdaae85fcb588974
4 changes: 2 additions & 2 deletions lib/action_view/template/handlers/rjs.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ class RJS
class_attribute :default_format
self.default_format = :js

def call(template)
"update_page do |page|;#{template.source}\nend"
def call(template, source)
"update_page do |page|;#{source}\nend"
end
end
end
Expand Down