-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
da37d83
commit 9c2f920
Showing
13 changed files
with
94 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
warn "Phlex::Rails::Helpers::JavaScriptImportMapTags is deprecated and will be removed in the next version. Please use Phlex::Rails::Helpers::JavascriptImportmapTags instead." | ||
|
||
Phlex::Rails::Helpers::JavaScriptImportMapTags = Phlex::Rails::Helpers::JavascriptImportmapTags |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
warn "Phlex::Rails::Helpers::JavaScriptImportModuleTag is deprecated and will be removed in the next version. Please use Phlex::Rails::Helpers::JavascriptImportModuleTag instead." | ||
|
||
Phlex::Rails::Helpers::JavaScriptImportModuleTag = Phlex::Rails::Helpers::JavascriptImportModuleTag |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
warn "[DEPRECATION] Phlex::Rails::Helpers::JavaScriptIncludeTag is deprecated. Please use Phlex::Rails::Helpers::JavascriptIncludeTag instead." | ||
|
||
Phlex::Rails::Helpers::JavaScriptIncludeTag = Phlex::Rails::Helpers::JavascriptIncludeTag |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
warn "Phlex::Rails::Helpers::JavaScriptPath is deprecated and will be removed in the next version. Please use Phlex::Rails::Helpers::JavascriptPath instead." | ||
|
||
Phlex::Rails::Helpers::JavaScriptPath = Phlex::Rails::Helpers::JavascriptPath |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
warn "[DEPRECATION] Phlex::Rails::Helpers::JavaScriptTag is deprecated. Please use Phlex::Rails::Helpers::JavascriptTag instead." | ||
|
||
Phlex::Rails::Helpers::JavaScriptTag = Phlex::Rails::Helpers::JavascriptTag |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
warn "[DEPRECATION] Phlex::Rails::Helpers::JavaScriptURL is deprecated. Please use Phlex::Rails::Helpers::JavascriptURL instead." | ||
|
||
Phlex::Rails::Helpers::JavaScriptURL = Phlex::Rails::Helpers::JavascriptURL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# frozen_string_literal: true | ||
|
||
module Phlex::Rails::Helpers::JavascriptImportModuleTag | ||
extend Phlex::Rails::HelperMacros | ||
|
||
# @!method javascript_import_module_tag(...) | ||
# @return [nil] | ||
define_output_helper :javascript_import_module_tag | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# frozen_string_literal: true | ||
|
||
module Phlex::Rails::Helpers::JavascriptImportmapTags | ||
extend Phlex::Rails::HelperMacros | ||
|
||
# @!method javascript_importmap_tags(...) | ||
# @return [nil] | ||
define_output_helper :javascript_importmap_tags | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# frozen_string_literal: true | ||
|
||
module Phlex::Rails::Helpers::JavascriptIncludeTag | ||
extend Phlex::Rails::HelperMacros | ||
|
||
# @!method javascript_include_tag(...) | ||
# @return [nil] | ||
define_output_helper :javascript_include_tag | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# frozen_string_literal: true | ||
|
||
module Phlex::Rails::Helpers::JavascriptPath | ||
extend Phlex::Rails::HelperMacros | ||
|
||
# @!method javascript_path(...) | ||
define_value_helper :javascript_path | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# frozen_string_literal: true | ||
|
||
module Phlex::Rails::Helpers::JavascriptTag | ||
extend Phlex::Rails::HelperMacros | ||
|
||
# @!method javascript_tag(...) | ||
# @return [nil] | ||
define_output_helper_with_capture_block :javascript_tag | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# frozen_string_literal: true | ||
|
||
module Phlex::Rails::Helpers::JavascriptURL | ||
extend Phlex::Rails::HelperMacros | ||
|
||
# @!method javascript_url(...) | ||
define_value_helper :javascript_url | ||
end |