- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
diff --git a/src/classes/AbstractController/ActionNotFound.html b/src/classes/AbstractController/ActionNotFound.html
index 28a4bb93b4..12099b1764 100644
--- a/src/classes/AbstractController/ActionNotFound.html
+++ b/src/classes/AbstractController/ActionNotFound.html
@@ -5,7 +5,7 @@
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/AbstractController/ActionNotFound.html b/src/classes/AbstractController/ActionNotFound.html
index 28a4bb93b4..12099b1764 100644
--- a/src/classes/AbstractController/ActionNotFound.html
+++ b/src/classes/AbstractController/ActionNotFound.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
diff --git a/src/classes/AbstractController/Base.html b/src/classes/AbstractController/Base.html
index 4055cd339a..f77b3568cd 100644
--- a/src/classes/AbstractController/Base.html
+++ b/src/classes/AbstractController/Base.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -166,7 +166,7 @@ abstract!()
@abstract = true
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -196,15 +196,12 @@ action_methods()
# All public instance methods of this class, including ancestors except for
# public instance methods of Base and its ancestors.
methods = public_instance_methods(true) - internal_methods
- # Be sure to include shadowed public instance methods of this class.
- methods.concat(public_instance_methods(false))
- methods.reject! { |m| m.start_with?("_") }
methods.map!(&:name)
methods.to_set
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -228,12 +225,12 @@ clear_action_methods!()
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 109
+ # File actionpack/lib/abstract_controller/base.rb, line 106
def clear_action_methods!
@action_methods = nil
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -264,12 +261,12 @@ controller_path()
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 121
+ # File actionpack/lib/abstract_controller/base.rb, line 118
def controller_path
@controller_path ||= name.delete_suffix("Controller").underscore unless anonymous?
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -306,7 +303,7 @@ internal_methods()
controller.public_instance_methods(true) - methods
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -330,13 +327,13 @@ method_added(name)
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 130
+ # File actionpack/lib/abstract_controller/base.rb, line 127
def method_added(name)
super
clear_action_methods!
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -360,12 +357,12 @@ supports_path?()
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 194
+ # File actionpack/lib/abstract_controller/base.rb, line 191
def self.supports_path?
true
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -393,12 +390,12 @@ action_methods()
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 166
+ # File actionpack/lib/abstract_controller/base.rb, line 163
def action_methods
self.class.action_methods
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -426,7 +423,7 @@ action_name
attr_internal :action_name
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -457,12 +454,12 @@ Parameters
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 181
+ # File actionpack/lib/abstract_controller/base.rb, line 178
def available_action?(action_name)
_find_action_name(action_name)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -486,12 +483,12 @@ controller_path()
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 161
+ # File actionpack/lib/abstract_controller/base.rb, line 158
def controller_path
self.class.controller_path
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -519,7 +516,7 @@ formats
attr_internal :formats
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -543,12 +540,12 @@ performed?()
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 187
+ # File actionpack/lib/abstract_controller/base.rb, line 184
def performed?
response_body
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -574,7 +571,7 @@ process(action, ...)
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 148
+ # File actionpack/lib/abstract_controller/base.rb, line 145
def process(action, ...)
@_action_name = action.to_s
@@ -587,7 +584,7 @@ process(action, ...)
process_action(action_name, ...)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -615,7 +612,7 @@ response_body
attr_internal :response_body
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Caching.html b/src/classes/AbstractController/Caching.html
index 0b23826322..c12b2328b0 100644
--- a/src/classes/AbstractController/Caching.html
+++ b/src/classes/AbstractController/Caching.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -116,7 +116,7 @@ view_cache_dependencies()
self.class._view_cache_dependencies.filter_map { |dep| instance_exec(&dep) }
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -152,7 +152,7 @@ cache(key, options = {}, &block)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Caching/ClassMethods.html b/src/classes/AbstractController/Caching/ClassMethods.html
index 215f480a5d..7d6fc2792c 100644
--- a/src/classes/AbstractController/Caching/ClassMethods.html
+++ b/src/classes/AbstractController/Caching/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -73,7 +73,7 @@ view_cache_dependency(&
self._view_cache_dependencies += [dependency]
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Caching/ConfigMethods.html b/src/classes/AbstractController/Caching/ConfigMethods.html
index bd893ec58c..d28f36d395 100644
--- a/src/classes/AbstractController/Caching/ConfigMethods.html
+++ b/src/classes/AbstractController/Caching/ConfigMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -77,7 +77,7 @@ cache_store()
config.cache_store
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -104,7 +104,7 @@ cache_store=(store)
config.cache_store = ActiveSupport::Cache.lookup_store(*store)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Caching/Fragments.html b/src/classes/AbstractController/Caching/Fragments.html
index fcf25e3160..89c4a96d08 100644
--- a/src/classes/AbstractController/Caching/Fragments.html
+++ b/src/classes/AbstractController/Caching/Fragments.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -123,7 +123,7 @@ combined_fragment_cache_k
cache_key
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -172,7 +172,7 @@ expire_fragment(key, options = ni
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -206,7 +206,7 @@ fragment_exist?(key, options =
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -241,7 +241,7 @@ read_fragment(key, options = nil)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -277,7 +277,7 @@ write_fragment(key, content, optio
content
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Caching/Fragments/ClassMethods.html b/src/classes/AbstractController/Caching/Fragments/ClassMethods.html
index d2dcccea06..cabb17ee48 100644
--- a/src/classes/AbstractController/Caching/Fragments/ClassMethods.html
+++ b/src/classes/AbstractController/Caching/Fragments/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -91,7 +91,7 @@ fragment_cache_key(value = nil
self.fragment_cache_keys += [key || -> { value }]
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Callbacks.html b/src/classes/AbstractController/Callbacks.html
index 8822c7abaf..821530b7ac 100644
--- a/src/classes/AbstractController/Callbacks.html
+++ b/src/classes/AbstractController/Callbacks.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/AbstractController/Callbacks/ClassMethods.html b/src/classes/AbstractController/Callbacks/ClassMethods.html
index 9d42f91cd5..7585049770 100644
--- a/src/classes/AbstractController/Callbacks/ClassMethods.html
+++ b/src/classes/AbstractController/Callbacks/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -136,7 +136,7 @@ Block Parameters
📝 Source code
- # File actionpack/lib/abstract_controller/callbacks.rb, line 120
+ # File actionpack/lib/abstract_controller/callbacks.rb, line 122
def _insert_callbacks(callbacks, block = nil)
options = callbacks.extract_options!
callbacks.push(block) if block
@@ -148,7 +148,7 @@ Block Parameters
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -191,13 +191,13 @@ Options
📝 Source code
- # File actionpack/lib/abstract_controller/callbacks.rb, line 93
+ # File actionpack/lib/abstract_controller/callbacks.rb, line 95
def _normalize_callback_options(options)
_normalize_callback_option(options, :only, :if)
_normalize_callback_option(options, :except, :unless)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -217,7 +217,7 @@ after_action(names, block)
-
+
@@ -235,7 +235,7 @@ append_after_action(names, bl
-
+
@@ -253,7 +253,7 @@ append_around_action(names,
-
+
@@ -273,7 +273,7 @@ append_before_action(names,
-
+
@@ -291,7 +291,7 @@ around_action(names, block)
-
+
@@ -311,7 +311,7 @@ before_action(names, block)
-
+
@@ -329,7 +329,7 @@ prepend_after_action(names,
-
+
@@ -347,7 +347,7 @@ prepend_around_action(names
-
+
@@ -367,7 +367,7 @@ prepend_before_action(names
-
+
@@ -385,7 +385,7 @@ skip_after_action(names)
-
+
@@ -403,7 +403,7 @@ skip_around_action(names)
-
+
@@ -421,7 +421,7 @@ skip_before_action(names)
-
+
diff --git a/src/classes/AbstractController/Collector.html b/src/classes/AbstractController/Collector.html
index 57b6131c09..9e6e760910 100644
--- a/src/classes/AbstractController/Collector.html
+++ b/src/classes/AbstractController/Collector.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -77,7 +77,7 @@ generate_method_for_mime
RUBY
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/DoubleRenderError.html b/src/classes/AbstractController/DoubleRenderError.html
index a5ebb7d8de..0c069d3919 100644
--- a/src/classes/AbstractController/DoubleRenderError.html
+++ b/src/classes/AbstractController/DoubleRenderError.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -91,7 +91,7 @@ new(message = nil)
super(message || DEFAULT_MESSAGE)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Helpers.html b/src/classes/AbstractController/Helpers.html
index 5074dcad50..b06b2e66db 100644
--- a/src/classes/AbstractController/Helpers.html
+++ b/src/classes/AbstractController/Helpers.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -86,7 +86,7 @@ _helpers()
self.class._helpers
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Helpers/ClassMethods.html b/src/classes/AbstractController/Helpers/ClassMethods.html
index 16efafc85e..83ce9eb41f 100644
--- a/src/classes/AbstractController/Helpers/ClassMethods.html
+++ b/src/classes/AbstractController/Helpers/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -114,7 +114,7 @@ _helpers_for_modification
_helpers
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -138,7 +138,7 @@ all_helpers_from_path(path)
-
+
@@ -170,7 +170,7 @@ clear_helpers()
default_helper_module! unless anonymous?
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -252,7 +252,7 @@ helper(*args, &block)
_helpers_for_modification.module_eval(&block) if block_given?
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -320,7 +320,7 @@ Parameters
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -353,7 +353,7 @@ inherited(klass)
super
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -377,7 +377,7 @@ modules_for_helpers(modules_o
-
+
diff --git a/src/classes/AbstractController/Railties.html b/src/classes/AbstractController/Railties.html
index 10d7f0997e..8d5e0eaa30 100644
--- a/src/classes/AbstractController/Railties.html
+++ b/src/classes/AbstractController/Railties.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/AbstractController/Railties/RoutesHelpers.html b/src/classes/AbstractController/Railties/RoutesHelpers.html
index 6c13f9f8d2..6ceec3064b 100644
--- a/src/classes/AbstractController/Railties/RoutesHelpers.html
+++ b/src/classes/AbstractController/Railties/RoutesHelpers.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -82,7 +82,7 @@ with(routes, include_path_helpers = true)
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Rendering.html b/src/classes/AbstractController/Rendering.html
index 8fc94937ad..db54398f44 100644
--- a/src/classes/AbstractController/Rendering.html
+++ b/src/classes/AbstractController/Rendering.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -140,7 +140,7 @@ render(*args, &block)
self.response_body = rendered_body
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -168,7 +168,7 @@ render_to_body(options = {})
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -200,7 +200,7 @@ render_to_string(*args, &blo
render_to_body(options)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -229,7 +229,7 @@ rendered_format()
Mime[:text]
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -262,7 +262,7 @@ view_assigns()
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -304,7 +304,7 @@ _normalize_args(action = nil, opt
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -333,7 +333,7 @@ _normalize_options(options)
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -362,7 +362,7 @@ _process_options(options)
options
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Translation.html b/src/classes/AbstractController/Translation.html
index c6edd22603..bba36a94e9 100644
--- a/src/classes/AbstractController/Translation.html
+++ b/src/classes/AbstractController/Translation.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -111,7 +111,7 @@ localize(object, **options)
I18n.localize(object, **options)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -180,7 +180,7 @@ translate(key, **options)
ActiveSupport::HtmlSafeTranslation.translate(key, **options)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/UrlFor.html b/src/classes/AbstractController/UrlFor.html
index 1e24a94fb3..516f9cf68e 100644
--- a/src/classes/AbstractController/UrlFor.html
+++ b/src/classes/AbstractController/UrlFor.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -111,7 +111,7 @@ _routes()
"For instance, `include Rails.application.routes.url_helpers`."
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/UrlFor/ClassMethods.html b/src/classes/AbstractController/UrlFor/ClassMethods.html
index 9934b05de7..621bc063c6 100644
--- a/src/classes/AbstractController/UrlFor/ClassMethods.html
+++ b/src/classes/AbstractController/UrlFor/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -77,7 +77,7 @@ _routes()
nil
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -108,7 +108,7 @@ action_methods()
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable.html b/src/classes/ActionCable.html
index 3fb322c5a2..26d4f04307 100644
--- a/src/classes/ActionCable.html
+++ b/src/classes/ActionCable.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -172,7 +172,7 @@ gem_version()
Gem::Version.new VERSION::STRING
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -201,7 +201,7 @@ version()
gem_version
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -234,7 +234,7 @@ server()
@server ||= ActionCable::Server::Base.new
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel.html b/src/classes/ActionCable/Channel.html
index 248bf11653..334458ee89 100644
--- a/src/classes/ActionCable/Channel.html
+++ b/src/classes/ActionCable/Channel.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/ActionCable/Channel/Base.html b/src/classes/ActionCable/Channel/Base.html
index b34456cddf..3f5bd38e27 100644
--- a/src/classes/ActionCable/Channel/Base.html
+++ b/src/classes/ActionCable/Channel/Base.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -303,15 +303,16 @@ Returns
# Except for public instance methods of Base and its ancestors
ActionCable::Channel::Base.public_instance_methods(true) +
# Be sure to include shadowed public instance methods of this class
- public_instance_methods(false)).uniq
+ public_instance_methods(false) -
+ # Except the internal methods
+ internal_methods).uniq
- methods.reject! { |m| m.start_with?("_") }
methods.map!(&:name)
methods.to_set
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -333,7 +334,7 @@ new(connection, identifier, params = {})📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 158
+ # File actioncable/lib/action_cable/channel/base.rb, line 163
def initialize(connection, identifier, params = {})
@connection = connection
@identifier = identifier
@@ -352,7 +353,7 @@ new(connection, identifier, params = {})
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -379,12 +380,12 @@ clear_action_methods!()
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 147
+ # File actioncable/lib/action_cable/channel/base.rb, line 148
def clear_action_methods! # :doc:
@action_methods = nil
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -408,13 +409,13 @@ method_added(name)
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 152
+ # File actioncable/lib/action_cable/channel/base.rb, line 153
def method_added(name) # :doc:
super
clear_action_methods!
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -442,7 +443,7 @@ perform_action(data)
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 179
+ # File actioncable/lib/action_cable/channel/base.rb, line 184
def perform_action(data)
action = extract_action(data)
@@ -456,7 +457,7 @@ perform_action(data)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -480,7 +481,7 @@ subscribe_to_channel()📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 194
+ # File actioncable/lib/action_cable/channel/base.rb, line 199
def subscribe_to_channel
run_callbacks :subscribe do
subscribed
@@ -490,7 +491,7 @@ subscribe_to_channel()
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -515,12 +516,12 @@ defer_subscription
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 253
+ # File actioncable/lib/action_cable/channel/base.rb, line 258
def defer_subscription_confirmation! # :doc:
@defer_subscription_confirmation_counter.increment
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -542,12 +543,12 @@ defer_subscription
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 257
+ # File actioncable/lib/action_cable/channel/base.rb, line 262
def defer_subscription_confirmation? # :doc:
@defer_subscription_confirmation_counter.value > 0
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -569,14 +570,14 @@ ensure_confirmation_sent
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 247
+ # File actioncable/lib/action_cable/channel/base.rb, line 252
def ensure_confirmation_sent # :doc:
return if subscription_rejected?
@defer_subscription_confirmation_counter.decrement
transmit_subscription_confirmation unless defer_subscription_confirmation?
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -598,12 +599,12 @@ reject()
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 265
+ # File actioncable/lib/action_cable/channel/base.rb, line 270
def reject # :doc:
@reject_subscription = true
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -627,12 +628,12 @@ subscribed()
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 221
+ # File actioncable/lib/action_cable/channel/base.rb, line 226
def subscribed # :doc:
# Override in subclasses
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -654,12 +655,12 @@ subscription_confir
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 261
+ # File actioncable/lib/action_cable/channel/base.rb, line 266
def subscription_confirmation_sent? # :doc:
@subscription_confirmation_sent
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -681,12 +682,12 @@ subscription_rejected?()
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 269
+ # File actioncable/lib/action_cable/channel/base.rb, line 274
def subscription_rejected? # :doc:
@reject_subscription
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -710,7 +711,7 @@ transmit(data, via: nil)
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 234
+ # File actioncable/lib/action_cable/channel/base.rb, line 239
def transmit(data, via: nil) # :doc:
logger.debug do
status = "#{self.class.name} transmitting #{data.inspect.truncate(300)}"
@@ -724,7 +725,7 @@ transmit(data, via: nil)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -748,12 +749,12 @@ unsubscribed()
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 227
+ # File actioncable/lib/action_cable/channel/base.rb, line 232
def unsubscribed # :doc:
# Override in subclasses
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/Broadcasting.html b/src/classes/ActionCable/Channel/Broadcasting.html
index 0fb23c7a41..4396d94990 100644
--- a/src/classes/ActionCable/Channel/Broadcasting.html
+++ b/src/classes/ActionCable/Channel/Broadcasting.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -90,7 +90,7 @@ broadcast_to(model, message)<
self.class.broadcast_to(model, message)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -117,7 +117,7 @@ broadcasting_for(model)
self.class.broadcasting_for(model)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/Broadcasting/ClassMethods.html b/src/classes/ActionCable/Channel/Broadcasting/ClassMethods.html
index d83ae68769..9448779607 100644
--- a/src/classes/ActionCable/Channel/Broadcasting/ClassMethods.html
+++ b/src/classes/ActionCable/Channel/Broadcasting/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -79,7 +79,7 @@ broadcast_to(broadcastables, message
ActionCable.server.broadcast(broadcasting_for(broadcastables), message)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -113,7 +113,7 @@ broadcasting_for(broadcastables)
serialize_broadcasting([ channel_name ] + Array(broadcastables))
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/Callbacks.html b/src/classes/ActionCable/Channel/Callbacks.html
index 5d33d41261..4fb86c6a40 100644
--- a/src/classes/ActionCable/Channel/Callbacks.html
+++ b/src/classes/ActionCable/Channel/Callbacks.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/ActionCable/Channel/Callbacks/ClassMethods.html b/src/classes/ActionCable/Channel/Callbacks/ClassMethods.html
index 698490a12a..6ea3dd3df6 100644
--- a/src/classes/ActionCable/Channel/Callbacks/ClassMethods.html
+++ b/src/classes/ActionCable/Channel/Callbacks/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -101,12 +101,12 @@ after_subscribe(*methods, &bl
📝 Source code
- # File actioncable/lib/action_cable/channel/callbacks.rb, line 60
+ # File actioncable/lib/action_cable/channel/callbacks.rb, line 62
def after_subscribe(*methods, &block)
set_callback(:subscribe, :after, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -134,12 +134,12 @@ after_unsubscribe(*methods, &am
📝 Source code
- # File actioncable/lib/action_cable/channel/callbacks.rb, line 69
+ # File actioncable/lib/action_cable/channel/callbacks.rb, line 71
def after_unsubscribe(*methods, &block)
set_callback(:unsubscribe, :after, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -161,12 +161,12 @@ before_subscribe(*methods, &
📝 Source code
- # File actioncable/lib/action_cable/channel/callbacks.rb, line 48
+ # File actioncable/lib/action_cable/channel/callbacks.rb, line 50
def before_subscribe(*methods, &block)
set_callback(:subscribe, :before, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -188,12 +188,12 @@ before_unsubscribe(*methods, &
📝 Source code
- # File actioncable/lib/action_cable/channel/callbacks.rb, line 65
+ # File actioncable/lib/action_cable/channel/callbacks.rb, line 67
def before_unsubscribe(*methods, &block)
set_callback(:unsubscribe, :before, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/ChannelStub.html b/src/classes/ActionCable/Channel/ChannelStub.html
index e3911d81d7..b2581d7798 100644
--- a/src/classes/ActionCable/Channel/ChannelStub.html
+++ b/src/classes/ActionCable/Channel/ChannelStub.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -105,7 +105,7 @@ confirmed?()
subscription_confirmation_sent?
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -132,7 +132,7 @@ rejected?()
subscription_rejected?
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -165,7 +165,7 @@ start_periodic_timers()# File actioncable/lib/action_cable/channel/test_case.rb, line 46
def start_periodic_timers; end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -192,7 +192,7 @@ stop_all_streams()
@_streams = []
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -237,7 +237,7 @@ stream_from(broadcasting, *)
streams << broadcasting
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -264,7 +264,7 @@ streams()
@_streams ||= []
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/ConnectionStub.html b/src/classes/ActionCable/Channel/ConnectionStub.html
index 11013fbd50..05fada3b14 100644
--- a/src/classes/ActionCable/Channel/ConnectionStub.html
+++ b/src/classes/ActionCable/Channel/ConnectionStub.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -141,7 +141,7 @@ new(identifiers = {})
@logger = ActiveSupport::TaggedLogging.new ActiveSupport::Logger.new(StringIO.new)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -172,7 +172,7 @@ connection_identifier()
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -199,7 +199,7 @@ transmit(cable_message)
transmissions << cable_message.with_indifferent_access
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/Naming.html b/src/classes/ActionCable/Channel/Naming.html
index 72d3f9e810..b0e52b4e96 100644
--- a/src/classes/ActionCable/Channel/Naming.html
+++ b/src/classes/ActionCable/Channel/Naming.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -86,7 +86,7 @@ channel_name()
self.class.channel_name
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/Naming/ClassMethods.html b/src/classes/ActionCable/Channel/Naming/ClassMethods.html
index 4a83e33523..f9c9e31139 100644
--- a/src/classes/ActionCable/Channel/Naming/ClassMethods.html
+++ b/src/classes/ActionCable/Channel/Naming/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -80,7 +80,7 @@ channel_name()
@channel_name ||= name.delete_suffix("Channel").gsub("::", ":").underscore
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/NonInferrableChannelError.html b/src/classes/ActionCable/Channel/NonInferrableChannelError.html
index ee3aa76945..08b2a36027 100644
--- a/src/classes/ActionCable/Channel/NonInferrableChannelError.html
+++ b/src/classes/ActionCable/Channel/NonInferrableChannelError.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -80,7 +80,7 @@ new(name)
"test case definition."
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/PeriodicTimers.html b/src/classes/ActionCable/Channel/PeriodicTimers.html
index ff65f8d640..2124da5ca7 100644
--- a/src/classes/ActionCable/Channel/PeriodicTimers.html
+++ b/src/classes/ActionCable/Channel/PeriodicTimers.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/ActionCable/Channel/PeriodicTimers/ClassMethods.html b/src/classes/ActionCable/Channel/PeriodicTimers/ClassMethods.html
index 5310c2ba94..1b4de5dd00 100644
--- a/src/classes/ActionCable/Channel/PeriodicTimers/ClassMethods.html
+++ b/src/classes/ActionCable/Channel/PeriodicTimers/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -103,7 +103,7 @@ periodically(callback_or_method_name
self.periodic_timers += [[ callback, every: every ]]
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/Streams.html b/src/classes/ActionCable/Channel/Streams.html
index 31f239b6c3..d242147bb7 100644
--- a/src/classes/ActionCable/Channel/Streams.html
+++ b/src/classes/ActionCable/Channel/Streams.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -163,7 +163,7 @@ stop_all_streams()
end.clear
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -192,7 +192,7 @@ stop_stream_for(model)
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -225,7 +225,7 @@ stop_stream_from(broadcasting)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -256,7 +256,7 @@ stream_for(broadcastables, callback =
stream_from(broadcasting_for(broadcastables), callback || block, coder: coder)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -302,7 +302,7 @@ stream_from(broadcasting, callback =
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -335,7 +335,7 @@ stream_or_reject_for(model)<
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/TestCase.html b/src/classes/ActionCable/Channel/TestCase.html
index d6a89143c1..4af0468846 100644
--- a/src/classes/ActionCable/Channel/TestCase.html
+++ b/src/classes/ActionCable/Channel/TestCase.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
diff --git a/src/classes/ActionCable/Channel/TestCase/Behavior.html b/src/classes/ActionCable/Channel/TestCase/Behavior.html
index a0e06024a5..6d870f9605 100644
--- a/src/classes/ActionCable/Channel/TestCase/Behavior.html
+++ b/src/classes/ActionCable/Channel/TestCase/Behavior.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -187,7 +187,7 @@ assert_broadcast_on(stream_or
super(broadcasting_for(stream_or_object), *args)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -216,7 +216,7 @@ assert_broadcasts(stream_or_obj
super(broadcasting_for(stream_or_object), *args)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -251,7 +251,7 @@ assert_has_no_stream(stream)
assert subscription.streams.exclude?(stream), "Stream #{stream} has been started"
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -286,7 +286,7 @@ assert_has_no_stream_for
assert_has_no_stream(broadcasting_for(object))
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -321,7 +321,7 @@ assert_has_stream(stream)
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -356,7 +356,7 @@ assert_has_stream_for(objec
assert_has_stream(broadcasting_for(object))
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -391,7 +391,7 @@ assert_no_streams()
assert subscription.streams.empty?, "No streams started was expected, but #{subscription.streams.count} found"
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -423,7 +423,7 @@ perform(action, data = {})
subscription.perform_action(data.stringify_keys.merge("action" => action.to_s))
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -459,7 +459,7 @@ stub_connection(identifiers = {})
@connection = ConnectionStub.new(identifiers)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -492,7 +492,7 @@ subscribe(params = {})
@subscription
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -522,7 +522,7 @@ transmissions()
connection.transmissions.filter_map { |data| data["message"] }
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -552,7 +552,7 @@ unsubscribe()
subscription.unsubscribe_from_channel
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/TestCase/Behavior/ClassMethods.html b/src/classes/ActionCable/Channel/TestCase/Behavior/ClassMethods.html
index e053f0d79f..44843ab52f 100644
--- a/src/classes/ActionCable/Channel/TestCase/Behavior/ClassMethods.html
+++ b/src/classes/ActionCable/Channel/TestCase/Behavior/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -85,7 +85,7 @@ channel_class()
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -116,7 +116,7 @@ determine_default_channel
channel
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -150,7 +150,7 @@ tests(channel)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection.html b/src/classes/ActionCable/Connection.html
index f68706985f..cfe9a89d13 100644
--- a/src/classes/ActionCable/Connection.html
+++ b/src/classes/ActionCable/Connection.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/ActionCable/Connection/Assertions.html b/src/classes/ActionCable/Connection/Assertions.html
index 85e853d363..26b0e4138f 100644
--- a/src/classes/ActionCable/Connection/Assertions.html
+++ b/src/classes/ActionCable/Connection/Assertions.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -79,7 +79,7 @@ assert_reject_connection
assert_raises(Authorization::UnauthorizedError, "Expected to reject connection but no rejection was made", &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/Authorization.html b/src/classes/ActionCable/Connection/Authorization.html
index 63abeb23e4..7fa68790e1 100644
--- a/src/classes/ActionCable/Connection/Authorization.html
+++ b/src/classes/ActionCable/Connection/Authorization.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -89,7 +89,7 @@ reject_unauthorized_co
raise UnauthorizedError
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/Authorization/UnauthorizedError.html b/src/classes/ActionCable/Connection/Authorization/UnauthorizedError.html
index 101bb29c60..c75802a313 100644
--- a/src/classes/ActionCable/Connection/Authorization/UnauthorizedError.html
+++ b/src/classes/ActionCable/Connection/Authorization/UnauthorizedError.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
diff --git a/src/classes/ActionCable/Connection/Base.html b/src/classes/ActionCable/Connection/Base.html
index cdc3c5b7cf..d34cb2b308 100644
--- a/src/classes/ActionCable/Connection/Base.html
+++ b/src/classes/ActionCable/Connection/Base.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -256,7 +256,7 @@ new(server, env, coder: ActiveSupport::JSON)<
@started_at = Time.now
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -287,7 +287,7 @@ beat()
transmit type: ActionCable::INTERNAL[:message_types][:ping], message: Time.now.to_i
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -321,7 +321,7 @@ close(reason: nil, reconnect: true)<
websocket.close
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -350,7 +350,7 @@ handle_channel_command(pay
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -379,7 +379,7 @@ send_async(method, *arguments)<
worker_pool.async_invoke(self, method, *arguments)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -413,7 +413,7 @@ statistics()
}
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -445,7 +445,7 @@ cookies()
request.cookie_jar
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -477,7 +477,7 @@ request()
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/Callbacks.html b/src/classes/ActionCable/Connection/Callbacks.html
index b6651d788a..79e6628db1 100644
--- a/src/classes/ActionCable/Connection/Callbacks.html
+++ b/src/classes/ActionCable/Connection/Callbacks.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/ActionCable/Connection/Callbacks/ClassMethods.html b/src/classes/ActionCable/Connection/Callbacks/ClassMethods.html
index b1acc87283..4215a3ede2 100644
--- a/src/classes/ActionCable/Connection/Callbacks/ClassMethods.html
+++ b/src/classes/ActionCable/Connection/Callbacks/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -81,7 +81,7 @@ after_command(*methods, &block)
set_callback(:command, :after, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -108,7 +108,7 @@ around_command(*methods, &bloc
set_callback(:command, :around, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -135,7 +135,7 @@ before_command(*methods, &bloc
set_callback(:command, :before, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/Identification.html b/src/classes/ActionCable/Connection/Identification.html
index 4faf0643d9..d0c83db893 100644
--- a/src/classes/ActionCable/Connection/Identification.html
+++ b/src/classes/ActionCable/Connection/Identification.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -92,7 +92,7 @@ connection_identifier()
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/Identification/ClassMethods.html b/src/classes/ActionCable/Connection/Identification/ClassMethods.html
index c9a8940058..905fb33053 100644
--- a/src/classes/ActionCable/Connection/Identification/ClassMethods.html
+++ b/src/classes/ActionCable/Connection/Identification/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -78,7 +78,7 @@ identified_by(*identifiers)<
self.identifiers += identifiers
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/InternalChannel.html b/src/classes/ActionCable/Connection/InternalChannel.html
index dfd2136378..918852ac6f 100644
--- a/src/classes/ActionCable/Connection/InternalChannel.html
+++ b/src/classes/ActionCable/Connection/InternalChannel.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/ActionCable/Connection/NonInferrableConnectionError.html b/src/classes/ActionCable/Connection/NonInferrableConnectionError.html
index 0317f4567e..4f95582852 100644
--- a/src/classes/ActionCable/Connection/NonInferrableConnectionError.html
+++ b/src/classes/ActionCable/Connection/NonInferrableConnectionError.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -80,7 +80,7 @@ new(name)
"test case definition."
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/StreamEventLoop.html b/src/classes/ActionCable/Connection/StreamEventLoop.html
index c65dcf2f6f..8cd41da8bc 100644
--- a/src/classes/ActionCable/Connection/StreamEventLoop.html
+++ b/src/classes/ActionCable/Connection/StreamEventLoop.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -107,7 +107,7 @@ new()
@spawn_mutex = Mutex.new
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -142,7 +142,7 @@ attach(io, stream)
wakeup
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -174,7 +174,7 @@ detach(io, stream)
wakeup
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -204,7 +204,7 @@ post(task = nil, &block)
@executor << task
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -232,7 +232,7 @@ stop()
wakeup if @nio
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -259,7 +259,7 @@ timer(interval, &block)
Concurrent::TimerTask.new(execution_interval: interval, &block).tap(&:execute)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -291,7 +291,7 @@ writes_pending(io)
wakeup
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/TaggedLoggerProxy.html b/src/classes/ActionCable/Connection/TaggedLoggerProxy.html
index b4f62bffac..e0fd36fef3 100644
--- a/src/classes/ActionCable/Connection/TaggedLoggerProxy.html
+++ b/src/classes/ActionCable/Connection/TaggedLoggerProxy.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -113,7 +113,7 @@ new(logger, tags:)
@tags = tags.flatten
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -145,7 +145,7 @@ add_tags(*tags)
@tags = @tags.uniq
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -177,7 +177,7 @@ tag(logger, &block)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -207,7 +207,7 @@ log(type, message, &block)
tag(@logger) { @logger.send type, message, &block }
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/TestCase.html b/src/classes/ActionCable/Connection/TestCase.html
index e5ab24e977..2e6b21e3a4 100644
--- a/src/classes/ActionCable/Connection/TestCase.html
+++ b/src/classes/ActionCable/Connection/TestCase.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
diff --git a/src/classes/ActionCable/Connection/TestCase/Behavior.html b/src/classes/ActionCable/Connection/TestCase/Behavior.html
index e0f10833d8..c6564b1e2e 100644
--- a/src/classes/ActionCable/Connection/TestCase/Behavior.html
+++ b/src/classes/ActionCable/Connection/TestCase/Behavior.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -164,7 +164,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
diff --git a/src/classes/AbstractController/Base.html b/src/classes/AbstractController/Base.html
index 4055cd339a..f77b3568cd 100644
--- a/src/classes/AbstractController/Base.html
+++ b/src/classes/AbstractController/Base.html
@@ -5,7 +5,7 @@
+ Ruby on Rails 8.1.3
class
diff --git a/src/classes/AbstractController/Base.html b/src/classes/AbstractController/Base.html
index 4055cd339a..f77b3568cd 100644
--- a/src/classes/AbstractController/Base.html
+++ b/src/classes/AbstractController/Base.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -166,7 +166,7 @@ abstract!()
@abstract = true
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -196,15 +196,12 @@ action_methods()
# All public instance methods of this class, including ancestors except for
# public instance methods of Base and its ancestors.
methods = public_instance_methods(true) - internal_methods
- # Be sure to include shadowed public instance methods of this class.
- methods.concat(public_instance_methods(false))
- methods.reject! { |m| m.start_with?("_") }
methods.map!(&:name)
methods.to_set
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -228,12 +225,12 @@ clear_action_methods!()
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 109
+ # File actionpack/lib/abstract_controller/base.rb, line 106
def clear_action_methods!
@action_methods = nil
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -264,12 +261,12 @@ controller_path()
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 121
+ # File actionpack/lib/abstract_controller/base.rb, line 118
def controller_path
@controller_path ||= name.delete_suffix("Controller").underscore unless anonymous?
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -306,7 +303,7 @@ internal_methods()
controller.public_instance_methods(true) - methods
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -330,13 +327,13 @@ method_added(name)
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 130
+ # File actionpack/lib/abstract_controller/base.rb, line 127
def method_added(name)
super
clear_action_methods!
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -360,12 +357,12 @@ supports_path?()
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 194
+ # File actionpack/lib/abstract_controller/base.rb, line 191
def self.supports_path?
true
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -393,12 +390,12 @@ action_methods()
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 166
+ # File actionpack/lib/abstract_controller/base.rb, line 163
def action_methods
self.class.action_methods
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -426,7 +423,7 @@ action_name
attr_internal :action_name
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -457,12 +454,12 @@ Parameters
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 181
+ # File actionpack/lib/abstract_controller/base.rb, line 178
def available_action?(action_name)
_find_action_name(action_name)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -486,12 +483,12 @@ controller_path()
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 161
+ # File actionpack/lib/abstract_controller/base.rb, line 158
def controller_path
self.class.controller_path
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -519,7 +516,7 @@ formats
attr_internal :formats
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -543,12 +540,12 @@ performed?()
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 187
+ # File actionpack/lib/abstract_controller/base.rb, line 184
def performed?
response_body
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -574,7 +571,7 @@ process(action, ...)
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 148
+ # File actionpack/lib/abstract_controller/base.rb, line 145
def process(action, ...)
@_action_name = action.to_s
@@ -587,7 +584,7 @@ process(action, ...)
process_action(action_name, ...)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -615,7 +612,7 @@ response_body
attr_internal :response_body
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Caching.html b/src/classes/AbstractController/Caching.html
index 0b23826322..c12b2328b0 100644
--- a/src/classes/AbstractController/Caching.html
+++ b/src/classes/AbstractController/Caching.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -116,7 +116,7 @@ view_cache_dependencies()
self.class._view_cache_dependencies.filter_map { |dep| instance_exec(&dep) }
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -152,7 +152,7 @@ cache(key, options = {}, &block)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Caching/ClassMethods.html b/src/classes/AbstractController/Caching/ClassMethods.html
index 215f480a5d..7d6fc2792c 100644
--- a/src/classes/AbstractController/Caching/ClassMethods.html
+++ b/src/classes/AbstractController/Caching/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -73,7 +73,7 @@ view_cache_dependency(&
self._view_cache_dependencies += [dependency]
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Caching/ConfigMethods.html b/src/classes/AbstractController/Caching/ConfigMethods.html
index bd893ec58c..d28f36d395 100644
--- a/src/classes/AbstractController/Caching/ConfigMethods.html
+++ b/src/classes/AbstractController/Caching/ConfigMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -77,7 +77,7 @@ cache_store()
config.cache_store
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -104,7 +104,7 @@ cache_store=(store)
config.cache_store = ActiveSupport::Cache.lookup_store(*store)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Caching/Fragments.html b/src/classes/AbstractController/Caching/Fragments.html
index fcf25e3160..89c4a96d08 100644
--- a/src/classes/AbstractController/Caching/Fragments.html
+++ b/src/classes/AbstractController/Caching/Fragments.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -123,7 +123,7 @@ combined_fragment_cache_k
cache_key
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -172,7 +172,7 @@ expire_fragment(key, options = ni
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -206,7 +206,7 @@ fragment_exist?(key, options =
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -241,7 +241,7 @@ read_fragment(key, options = nil)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -277,7 +277,7 @@ write_fragment(key, content, optio
content
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Caching/Fragments/ClassMethods.html b/src/classes/AbstractController/Caching/Fragments/ClassMethods.html
index d2dcccea06..cabb17ee48 100644
--- a/src/classes/AbstractController/Caching/Fragments/ClassMethods.html
+++ b/src/classes/AbstractController/Caching/Fragments/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -91,7 +91,7 @@ fragment_cache_key(value = nil
self.fragment_cache_keys += [key || -> { value }]
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Callbacks.html b/src/classes/AbstractController/Callbacks.html
index 8822c7abaf..821530b7ac 100644
--- a/src/classes/AbstractController/Callbacks.html
+++ b/src/classes/AbstractController/Callbacks.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/AbstractController/Callbacks/ClassMethods.html b/src/classes/AbstractController/Callbacks/ClassMethods.html
index 9d42f91cd5..7585049770 100644
--- a/src/classes/AbstractController/Callbacks/ClassMethods.html
+++ b/src/classes/AbstractController/Callbacks/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -136,7 +136,7 @@ Block Parameters
📝 Source code
- # File actionpack/lib/abstract_controller/callbacks.rb, line 120
+ # File actionpack/lib/abstract_controller/callbacks.rb, line 122
def _insert_callbacks(callbacks, block = nil)
options = callbacks.extract_options!
callbacks.push(block) if block
@@ -148,7 +148,7 @@ Block Parameters
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -191,13 +191,13 @@ Options
📝 Source code
- # File actionpack/lib/abstract_controller/callbacks.rb, line 93
+ # File actionpack/lib/abstract_controller/callbacks.rb, line 95
def _normalize_callback_options(options)
_normalize_callback_option(options, :only, :if)
_normalize_callback_option(options, :except, :unless)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -217,7 +217,7 @@ after_action(names, block)
-
+
@@ -235,7 +235,7 @@ append_after_action(names, bl
-
+
@@ -253,7 +253,7 @@ append_around_action(names,
-
+
@@ -273,7 +273,7 @@ append_before_action(names,
-
+
@@ -291,7 +291,7 @@ around_action(names, block)
-
+
@@ -311,7 +311,7 @@ before_action(names, block)
-
+
@@ -329,7 +329,7 @@ prepend_after_action(names,
-
+
@@ -347,7 +347,7 @@ prepend_around_action(names
-
+
@@ -367,7 +367,7 @@ prepend_before_action(names
-
+
@@ -385,7 +385,7 @@ skip_after_action(names)
-
+
@@ -403,7 +403,7 @@ skip_around_action(names)
-
+
@@ -421,7 +421,7 @@ skip_before_action(names)
-
+
diff --git a/src/classes/AbstractController/Collector.html b/src/classes/AbstractController/Collector.html
index 57b6131c09..9e6e760910 100644
--- a/src/classes/AbstractController/Collector.html
+++ b/src/classes/AbstractController/Collector.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -77,7 +77,7 @@ generate_method_for_mime
RUBY
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/DoubleRenderError.html b/src/classes/AbstractController/DoubleRenderError.html
index a5ebb7d8de..0c069d3919 100644
--- a/src/classes/AbstractController/DoubleRenderError.html
+++ b/src/classes/AbstractController/DoubleRenderError.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -91,7 +91,7 @@ new(message = nil)
super(message || DEFAULT_MESSAGE)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Helpers.html b/src/classes/AbstractController/Helpers.html
index 5074dcad50..b06b2e66db 100644
--- a/src/classes/AbstractController/Helpers.html
+++ b/src/classes/AbstractController/Helpers.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -86,7 +86,7 @@ _helpers()
self.class._helpers
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Helpers/ClassMethods.html b/src/classes/AbstractController/Helpers/ClassMethods.html
index 16efafc85e..83ce9eb41f 100644
--- a/src/classes/AbstractController/Helpers/ClassMethods.html
+++ b/src/classes/AbstractController/Helpers/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -114,7 +114,7 @@ _helpers_for_modification
_helpers
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -138,7 +138,7 @@ all_helpers_from_path(path)
-
+
@@ -170,7 +170,7 @@ clear_helpers()
default_helper_module! unless anonymous?
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -252,7 +252,7 @@ helper(*args, &block)
_helpers_for_modification.module_eval(&block) if block_given?
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -320,7 +320,7 @@ Parameters
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -353,7 +353,7 @@ inherited(klass)
super
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -377,7 +377,7 @@ modules_for_helpers(modules_o
-
+
diff --git a/src/classes/AbstractController/Railties.html b/src/classes/AbstractController/Railties.html
index 10d7f0997e..8d5e0eaa30 100644
--- a/src/classes/AbstractController/Railties.html
+++ b/src/classes/AbstractController/Railties.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/AbstractController/Railties/RoutesHelpers.html b/src/classes/AbstractController/Railties/RoutesHelpers.html
index 6c13f9f8d2..6ceec3064b 100644
--- a/src/classes/AbstractController/Railties/RoutesHelpers.html
+++ b/src/classes/AbstractController/Railties/RoutesHelpers.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -82,7 +82,7 @@ with(routes, include_path_helpers = true)
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Rendering.html b/src/classes/AbstractController/Rendering.html
index 8fc94937ad..db54398f44 100644
--- a/src/classes/AbstractController/Rendering.html
+++ b/src/classes/AbstractController/Rendering.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -140,7 +140,7 @@ render(*args, &block)
self.response_body = rendered_body
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -168,7 +168,7 @@ render_to_body(options = {})
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -200,7 +200,7 @@ render_to_string(*args, &blo
render_to_body(options)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -229,7 +229,7 @@ rendered_format()
Mime[:text]
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -262,7 +262,7 @@ view_assigns()
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -304,7 +304,7 @@ _normalize_args(action = nil, opt
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -333,7 +333,7 @@ _normalize_options(options)
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -362,7 +362,7 @@ _process_options(options)
options
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Translation.html b/src/classes/AbstractController/Translation.html
index c6edd22603..bba36a94e9 100644
--- a/src/classes/AbstractController/Translation.html
+++ b/src/classes/AbstractController/Translation.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -111,7 +111,7 @@ localize(object, **options)
I18n.localize(object, **options)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -180,7 +180,7 @@ translate(key, **options)
ActiveSupport::HtmlSafeTranslation.translate(key, **options)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/UrlFor.html b/src/classes/AbstractController/UrlFor.html
index 1e24a94fb3..516f9cf68e 100644
--- a/src/classes/AbstractController/UrlFor.html
+++ b/src/classes/AbstractController/UrlFor.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -111,7 +111,7 @@ _routes()
"For instance, `include Rails.application.routes.url_helpers`."
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/UrlFor/ClassMethods.html b/src/classes/AbstractController/UrlFor/ClassMethods.html
index 9934b05de7..621bc063c6 100644
--- a/src/classes/AbstractController/UrlFor/ClassMethods.html
+++ b/src/classes/AbstractController/UrlFor/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -77,7 +77,7 @@ _routes()
nil
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -108,7 +108,7 @@ action_methods()
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable.html b/src/classes/ActionCable.html
index 3fb322c5a2..26d4f04307 100644
--- a/src/classes/ActionCable.html
+++ b/src/classes/ActionCable.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -172,7 +172,7 @@ gem_version()
Gem::Version.new VERSION::STRING
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -201,7 +201,7 @@ version()
gem_version
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -234,7 +234,7 @@ server()
@server ||= ActionCable::Server::Base.new
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel.html b/src/classes/ActionCable/Channel.html
index 248bf11653..334458ee89 100644
--- a/src/classes/ActionCable/Channel.html
+++ b/src/classes/ActionCable/Channel.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/ActionCable/Channel/Base.html b/src/classes/ActionCable/Channel/Base.html
index b34456cddf..3f5bd38e27 100644
--- a/src/classes/ActionCable/Channel/Base.html
+++ b/src/classes/ActionCable/Channel/Base.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -303,15 +303,16 @@ Returns
# Except for public instance methods of Base and its ancestors
ActionCable::Channel::Base.public_instance_methods(true) +
# Be sure to include shadowed public instance methods of this class
- public_instance_methods(false)).uniq
+ public_instance_methods(false) -
+ # Except the internal methods
+ internal_methods).uniq
- methods.reject! { |m| m.start_with?("_") }
methods.map!(&:name)
methods.to_set
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -333,7 +334,7 @@ new(connection, identifier, params = {})📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 158
+ # File actioncable/lib/action_cable/channel/base.rb, line 163
def initialize(connection, identifier, params = {})
@connection = connection
@identifier = identifier
@@ -352,7 +353,7 @@ new(connection, identifier, params = {})
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -379,12 +380,12 @@ clear_action_methods!()
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 147
+ # File actioncable/lib/action_cable/channel/base.rb, line 148
def clear_action_methods! # :doc:
@action_methods = nil
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -408,13 +409,13 @@ method_added(name)
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 152
+ # File actioncable/lib/action_cable/channel/base.rb, line 153
def method_added(name) # :doc:
super
clear_action_methods!
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -442,7 +443,7 @@ perform_action(data)
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 179
+ # File actioncable/lib/action_cable/channel/base.rb, line 184
def perform_action(data)
action = extract_action(data)
@@ -456,7 +457,7 @@ perform_action(data)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -480,7 +481,7 @@ subscribe_to_channel()📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 194
+ # File actioncable/lib/action_cable/channel/base.rb, line 199
def subscribe_to_channel
run_callbacks :subscribe do
subscribed
@@ -490,7 +491,7 @@ subscribe_to_channel()
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -515,12 +516,12 @@ defer_subscription
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 253
+ # File actioncable/lib/action_cable/channel/base.rb, line 258
def defer_subscription_confirmation! # :doc:
@defer_subscription_confirmation_counter.increment
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -542,12 +543,12 @@ defer_subscription
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 257
+ # File actioncable/lib/action_cable/channel/base.rb, line 262
def defer_subscription_confirmation? # :doc:
@defer_subscription_confirmation_counter.value > 0
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -569,14 +570,14 @@ ensure_confirmation_sent
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 247
+ # File actioncable/lib/action_cable/channel/base.rb, line 252
def ensure_confirmation_sent # :doc:
return if subscription_rejected?
@defer_subscription_confirmation_counter.decrement
transmit_subscription_confirmation unless defer_subscription_confirmation?
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -598,12 +599,12 @@ reject()
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 265
+ # File actioncable/lib/action_cable/channel/base.rb, line 270
def reject # :doc:
@reject_subscription = true
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -627,12 +628,12 @@ subscribed()
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 221
+ # File actioncable/lib/action_cable/channel/base.rb, line 226
def subscribed # :doc:
# Override in subclasses
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -654,12 +655,12 @@ subscription_confir
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 261
+ # File actioncable/lib/action_cable/channel/base.rb, line 266
def subscription_confirmation_sent? # :doc:
@subscription_confirmation_sent
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -681,12 +682,12 @@ subscription_rejected?()
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 269
+ # File actioncable/lib/action_cable/channel/base.rb, line 274
def subscription_rejected? # :doc:
@reject_subscription
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -710,7 +711,7 @@ transmit(data, via: nil)
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 234
+ # File actioncable/lib/action_cable/channel/base.rb, line 239
def transmit(data, via: nil) # :doc:
logger.debug do
status = "#{self.class.name} transmitting #{data.inspect.truncate(300)}"
@@ -724,7 +725,7 @@ transmit(data, via: nil)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -748,12 +749,12 @@ unsubscribed()
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 227
+ # File actioncable/lib/action_cable/channel/base.rb, line 232
def unsubscribed # :doc:
# Override in subclasses
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/Broadcasting.html b/src/classes/ActionCable/Channel/Broadcasting.html
index 0fb23c7a41..4396d94990 100644
--- a/src/classes/ActionCable/Channel/Broadcasting.html
+++ b/src/classes/ActionCable/Channel/Broadcasting.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -90,7 +90,7 @@ broadcast_to(model, message)<
self.class.broadcast_to(model, message)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -117,7 +117,7 @@ broadcasting_for(model)
self.class.broadcasting_for(model)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/Broadcasting/ClassMethods.html b/src/classes/ActionCable/Channel/Broadcasting/ClassMethods.html
index d83ae68769..9448779607 100644
--- a/src/classes/ActionCable/Channel/Broadcasting/ClassMethods.html
+++ b/src/classes/ActionCable/Channel/Broadcasting/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -79,7 +79,7 @@ broadcast_to(broadcastables, message
ActionCable.server.broadcast(broadcasting_for(broadcastables), message)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -113,7 +113,7 @@ broadcasting_for(broadcastables)
serialize_broadcasting([ channel_name ] + Array(broadcastables))
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/Callbacks.html b/src/classes/ActionCable/Channel/Callbacks.html
index 5d33d41261..4fb86c6a40 100644
--- a/src/classes/ActionCable/Channel/Callbacks.html
+++ b/src/classes/ActionCable/Channel/Callbacks.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/ActionCable/Channel/Callbacks/ClassMethods.html b/src/classes/ActionCable/Channel/Callbacks/ClassMethods.html
index 698490a12a..6ea3dd3df6 100644
--- a/src/classes/ActionCable/Channel/Callbacks/ClassMethods.html
+++ b/src/classes/ActionCable/Channel/Callbacks/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -101,12 +101,12 @@ after_subscribe(*methods, &bl
📝 Source code
- # File actioncable/lib/action_cable/channel/callbacks.rb, line 60
+ # File actioncable/lib/action_cable/channel/callbacks.rb, line 62
def after_subscribe(*methods, &block)
set_callback(:subscribe, :after, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -134,12 +134,12 @@ after_unsubscribe(*methods, &am
📝 Source code
- # File actioncable/lib/action_cable/channel/callbacks.rb, line 69
+ # File actioncable/lib/action_cable/channel/callbacks.rb, line 71
def after_unsubscribe(*methods, &block)
set_callback(:unsubscribe, :after, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -161,12 +161,12 @@ before_subscribe(*methods, &
📝 Source code
- # File actioncable/lib/action_cable/channel/callbacks.rb, line 48
+ # File actioncable/lib/action_cable/channel/callbacks.rb, line 50
def before_subscribe(*methods, &block)
set_callback(:subscribe, :before, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -188,12 +188,12 @@ before_unsubscribe(*methods, &
📝 Source code
- # File actioncable/lib/action_cable/channel/callbacks.rb, line 65
+ # File actioncable/lib/action_cable/channel/callbacks.rb, line 67
def before_unsubscribe(*methods, &block)
set_callback(:unsubscribe, :before, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/ChannelStub.html b/src/classes/ActionCable/Channel/ChannelStub.html
index e3911d81d7..b2581d7798 100644
--- a/src/classes/ActionCable/Channel/ChannelStub.html
+++ b/src/classes/ActionCable/Channel/ChannelStub.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -105,7 +105,7 @@ confirmed?()
subscription_confirmation_sent?
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -132,7 +132,7 @@ rejected?()
subscription_rejected?
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -165,7 +165,7 @@ start_periodic_timers()# File actioncable/lib/action_cable/channel/test_case.rb, line 46
def start_periodic_timers; end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -192,7 +192,7 @@ stop_all_streams()
@_streams = []
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -237,7 +237,7 @@ stream_from(broadcasting, *)
streams << broadcasting
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -264,7 +264,7 @@ streams()
@_streams ||= []
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/ConnectionStub.html b/src/classes/ActionCable/Channel/ConnectionStub.html
index 11013fbd50..05fada3b14 100644
--- a/src/classes/ActionCable/Channel/ConnectionStub.html
+++ b/src/classes/ActionCable/Channel/ConnectionStub.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -141,7 +141,7 @@ new(identifiers = {})
@logger = ActiveSupport::TaggedLogging.new ActiveSupport::Logger.new(StringIO.new)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -172,7 +172,7 @@ connection_identifier()
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -199,7 +199,7 @@ transmit(cable_message)
transmissions << cable_message.with_indifferent_access
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/Naming.html b/src/classes/ActionCable/Channel/Naming.html
index 72d3f9e810..b0e52b4e96 100644
--- a/src/classes/ActionCable/Channel/Naming.html
+++ b/src/classes/ActionCable/Channel/Naming.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -86,7 +86,7 @@ channel_name()
self.class.channel_name
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/Naming/ClassMethods.html b/src/classes/ActionCable/Channel/Naming/ClassMethods.html
index 4a83e33523..f9c9e31139 100644
--- a/src/classes/ActionCable/Channel/Naming/ClassMethods.html
+++ b/src/classes/ActionCable/Channel/Naming/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -80,7 +80,7 @@ channel_name()
@channel_name ||= name.delete_suffix("Channel").gsub("::", ":").underscore
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/NonInferrableChannelError.html b/src/classes/ActionCable/Channel/NonInferrableChannelError.html
index ee3aa76945..08b2a36027 100644
--- a/src/classes/ActionCable/Channel/NonInferrableChannelError.html
+++ b/src/classes/ActionCable/Channel/NonInferrableChannelError.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -80,7 +80,7 @@ new(name)
"test case definition."
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/PeriodicTimers.html b/src/classes/ActionCable/Channel/PeriodicTimers.html
index ff65f8d640..2124da5ca7 100644
--- a/src/classes/ActionCable/Channel/PeriodicTimers.html
+++ b/src/classes/ActionCable/Channel/PeriodicTimers.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/ActionCable/Channel/PeriodicTimers/ClassMethods.html b/src/classes/ActionCable/Channel/PeriodicTimers/ClassMethods.html
index 5310c2ba94..1b4de5dd00 100644
--- a/src/classes/ActionCable/Channel/PeriodicTimers/ClassMethods.html
+++ b/src/classes/ActionCable/Channel/PeriodicTimers/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -103,7 +103,7 @@ periodically(callback_or_method_name
self.periodic_timers += [[ callback, every: every ]]
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/Streams.html b/src/classes/ActionCable/Channel/Streams.html
index 31f239b6c3..d242147bb7 100644
--- a/src/classes/ActionCable/Channel/Streams.html
+++ b/src/classes/ActionCable/Channel/Streams.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -163,7 +163,7 @@ stop_all_streams()
end.clear
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -192,7 +192,7 @@ stop_stream_for(model)
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -225,7 +225,7 @@ stop_stream_from(broadcasting)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -256,7 +256,7 @@ stream_for(broadcastables, callback =
stream_from(broadcasting_for(broadcastables), callback || block, coder: coder)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -302,7 +302,7 @@ stream_from(broadcasting, callback =
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -335,7 +335,7 @@ stream_or_reject_for(model)<
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/TestCase.html b/src/classes/ActionCable/Channel/TestCase.html
index d6a89143c1..4af0468846 100644
--- a/src/classes/ActionCable/Channel/TestCase.html
+++ b/src/classes/ActionCable/Channel/TestCase.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
diff --git a/src/classes/ActionCable/Channel/TestCase/Behavior.html b/src/classes/ActionCable/Channel/TestCase/Behavior.html
index a0e06024a5..6d870f9605 100644
--- a/src/classes/ActionCable/Channel/TestCase/Behavior.html
+++ b/src/classes/ActionCable/Channel/TestCase/Behavior.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -187,7 +187,7 @@ assert_broadcast_on(stream_or
super(broadcasting_for(stream_or_object), *args)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -216,7 +216,7 @@ assert_broadcasts(stream_or_obj
super(broadcasting_for(stream_or_object), *args)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -251,7 +251,7 @@ assert_has_no_stream(stream)
assert subscription.streams.exclude?(stream), "Stream #{stream} has been started"
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -286,7 +286,7 @@ assert_has_no_stream_for
assert_has_no_stream(broadcasting_for(object))
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -321,7 +321,7 @@ assert_has_stream(stream)
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -356,7 +356,7 @@ assert_has_stream_for(objec
assert_has_stream(broadcasting_for(object))
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -391,7 +391,7 @@ assert_no_streams()
assert subscription.streams.empty?, "No streams started was expected, but #{subscription.streams.count} found"
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -423,7 +423,7 @@ perform(action, data = {})
subscription.perform_action(data.stringify_keys.merge("action" => action.to_s))
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -459,7 +459,7 @@ stub_connection(identifiers = {})
@connection = ConnectionStub.new(identifiers)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -492,7 +492,7 @@ subscribe(params = {})
@subscription
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -522,7 +522,7 @@ transmissions()
connection.transmissions.filter_map { |data| data["message"] }
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -552,7 +552,7 @@ unsubscribe()
subscription.unsubscribe_from_channel
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/TestCase/Behavior/ClassMethods.html b/src/classes/ActionCable/Channel/TestCase/Behavior/ClassMethods.html
index e053f0d79f..44843ab52f 100644
--- a/src/classes/ActionCable/Channel/TestCase/Behavior/ClassMethods.html
+++ b/src/classes/ActionCable/Channel/TestCase/Behavior/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -85,7 +85,7 @@ channel_class()
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -116,7 +116,7 @@ determine_default_channel
channel
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -150,7 +150,7 @@ tests(channel)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection.html b/src/classes/ActionCable/Connection.html
index f68706985f..cfe9a89d13 100644
--- a/src/classes/ActionCable/Connection.html
+++ b/src/classes/ActionCable/Connection.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/ActionCable/Connection/Assertions.html b/src/classes/ActionCable/Connection/Assertions.html
index 85e853d363..26b0e4138f 100644
--- a/src/classes/ActionCable/Connection/Assertions.html
+++ b/src/classes/ActionCable/Connection/Assertions.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -79,7 +79,7 @@ assert_reject_connection
assert_raises(Authorization::UnauthorizedError, "Expected to reject connection but no rejection was made", &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/Authorization.html b/src/classes/ActionCable/Connection/Authorization.html
index 63abeb23e4..7fa68790e1 100644
--- a/src/classes/ActionCable/Connection/Authorization.html
+++ b/src/classes/ActionCable/Connection/Authorization.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -89,7 +89,7 @@ reject_unauthorized_co
raise UnauthorizedError
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/Authorization/UnauthorizedError.html b/src/classes/ActionCable/Connection/Authorization/UnauthorizedError.html
index 101bb29c60..c75802a313 100644
--- a/src/classes/ActionCable/Connection/Authorization/UnauthorizedError.html
+++ b/src/classes/ActionCable/Connection/Authorization/UnauthorizedError.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
diff --git a/src/classes/ActionCable/Connection/Base.html b/src/classes/ActionCable/Connection/Base.html
index cdc3c5b7cf..d34cb2b308 100644
--- a/src/classes/ActionCable/Connection/Base.html
+++ b/src/classes/ActionCable/Connection/Base.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -256,7 +256,7 @@ new(server, env, coder: ActiveSupport::JSON)<
@started_at = Time.now
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -287,7 +287,7 @@ beat()
transmit type: ActionCable::INTERNAL[:message_types][:ping], message: Time.now.to_i
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -321,7 +321,7 @@ close(reason: nil, reconnect: true)<
websocket.close
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -350,7 +350,7 @@ handle_channel_command(pay
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -379,7 +379,7 @@ send_async(method, *arguments)<
worker_pool.async_invoke(self, method, *arguments)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -413,7 +413,7 @@ statistics()
}
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -445,7 +445,7 @@ cookies()
request.cookie_jar
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -477,7 +477,7 @@ request()
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/Callbacks.html b/src/classes/ActionCable/Connection/Callbacks.html
index b6651d788a..79e6628db1 100644
--- a/src/classes/ActionCable/Connection/Callbacks.html
+++ b/src/classes/ActionCable/Connection/Callbacks.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/ActionCable/Connection/Callbacks/ClassMethods.html b/src/classes/ActionCable/Connection/Callbacks/ClassMethods.html
index b1acc87283..4215a3ede2 100644
--- a/src/classes/ActionCable/Connection/Callbacks/ClassMethods.html
+++ b/src/classes/ActionCable/Connection/Callbacks/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -81,7 +81,7 @@ after_command(*methods, &block)
set_callback(:command, :after, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -108,7 +108,7 @@ around_command(*methods, &bloc
set_callback(:command, :around, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -135,7 +135,7 @@ before_command(*methods, &bloc
set_callback(:command, :before, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/Identification.html b/src/classes/ActionCable/Connection/Identification.html
index 4faf0643d9..d0c83db893 100644
--- a/src/classes/ActionCable/Connection/Identification.html
+++ b/src/classes/ActionCable/Connection/Identification.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -92,7 +92,7 @@ connection_identifier()
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/Identification/ClassMethods.html b/src/classes/ActionCable/Connection/Identification/ClassMethods.html
index c9a8940058..905fb33053 100644
--- a/src/classes/ActionCable/Connection/Identification/ClassMethods.html
+++ b/src/classes/ActionCable/Connection/Identification/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -78,7 +78,7 @@ identified_by(*identifiers)<
self.identifiers += identifiers
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/InternalChannel.html b/src/classes/ActionCable/Connection/InternalChannel.html
index dfd2136378..918852ac6f 100644
--- a/src/classes/ActionCable/Connection/InternalChannel.html
+++ b/src/classes/ActionCable/Connection/InternalChannel.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/ActionCable/Connection/NonInferrableConnectionError.html b/src/classes/ActionCable/Connection/NonInferrableConnectionError.html
index 0317f4567e..4f95582852 100644
--- a/src/classes/ActionCable/Connection/NonInferrableConnectionError.html
+++ b/src/classes/ActionCable/Connection/NonInferrableConnectionError.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -80,7 +80,7 @@ new(name)
"test case definition."
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/StreamEventLoop.html b/src/classes/ActionCable/Connection/StreamEventLoop.html
index c65dcf2f6f..8cd41da8bc 100644
--- a/src/classes/ActionCable/Connection/StreamEventLoop.html
+++ b/src/classes/ActionCable/Connection/StreamEventLoop.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -107,7 +107,7 @@ new()
@spawn_mutex = Mutex.new
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -142,7 +142,7 @@ attach(io, stream)
wakeup
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -174,7 +174,7 @@ detach(io, stream)
wakeup
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -204,7 +204,7 @@ post(task = nil, &block)
@executor << task
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -232,7 +232,7 @@ stop()
wakeup if @nio
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -259,7 +259,7 @@ timer(interval, &block)
Concurrent::TimerTask.new(execution_interval: interval, &block).tap(&:execute)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -291,7 +291,7 @@ writes_pending(io)
wakeup
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/TaggedLoggerProxy.html b/src/classes/ActionCable/Connection/TaggedLoggerProxy.html
index b4f62bffac..e0fd36fef3 100644
--- a/src/classes/ActionCable/Connection/TaggedLoggerProxy.html
+++ b/src/classes/ActionCable/Connection/TaggedLoggerProxy.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -113,7 +113,7 @@ new(logger, tags:)
@tags = tags.flatten
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -145,7 +145,7 @@ add_tags(*tags)
@tags = @tags.uniq
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -177,7 +177,7 @@ tag(logger, &block)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -207,7 +207,7 @@ log(type, message, &block)
tag(@logger) { @logger.send type, message, &block }
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/TestCase.html b/src/classes/ActionCable/Connection/TestCase.html
index e5ab24e977..2e6b21e3a4 100644
--- a/src/classes/ActionCable/Connection/TestCase.html
+++ b/src/classes/ActionCable/Connection/TestCase.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
diff --git a/src/classes/ActionCable/Connection/TestCase/Behavior.html b/src/classes/ActionCable/Connection/TestCase/Behavior.html
index e0f10833d8..c6564b1e2e 100644
--- a/src/classes/ActionCable/Connection/TestCase/Behavior.html
+++ b/src/classes/ActionCable/Connection/TestCase/Behavior.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -164,7 +164,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
@@ -166,7 +166,7 @@
+ Ruby on Rails 8.1.3
class
@@ -166,7 +166,7 @@ abstract!()
@abstract = true
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -196,15 +196,12 @@ action_methods()
# All public instance methods of this class, including ancestors except for
# public instance methods of Base and its ancestors.
methods = public_instance_methods(true) - internal_methods
- # Be sure to include shadowed public instance methods of this class.
- methods.concat(public_instance_methods(false))
- methods.reject! { |m| m.start_with?("_") }
methods.map!(&:name)
methods.to_set
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -228,12 +225,12 @@ clear_action_methods!()
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 109
+ # File actionpack/lib/abstract_controller/base.rb, line 106
def clear_action_methods!
@action_methods = nil
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -264,12 +261,12 @@ controller_path()
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 121
+ # File actionpack/lib/abstract_controller/base.rb, line 118
def controller_path
@controller_path ||= name.delete_suffix("Controller").underscore unless anonymous?
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -306,7 +303,7 @@ internal_methods()
controller.public_instance_methods(true) - methods
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -330,13 +327,13 @@ method_added(name)
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 130
+ # File actionpack/lib/abstract_controller/base.rb, line 127
def method_added(name)
super
clear_action_methods!
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -360,12 +357,12 @@ supports_path?()
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 194
+ # File actionpack/lib/abstract_controller/base.rb, line 191
def self.supports_path?
true
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -393,12 +390,12 @@ action_methods()
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 166
+ # File actionpack/lib/abstract_controller/base.rb, line 163
def action_methods
self.class.action_methods
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -426,7 +423,7 @@ action_name
attr_internal :action_name
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -457,12 +454,12 @@ Parameters
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 181
+ # File actionpack/lib/abstract_controller/base.rb, line 178
def available_action?(action_name)
_find_action_name(action_name)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -486,12 +483,12 @@ controller_path()
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 161
+ # File actionpack/lib/abstract_controller/base.rb, line 158
def controller_path
self.class.controller_path
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -519,7 +516,7 @@ formats
attr_internal :formats
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -543,12 +540,12 @@ performed?()
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 187
+ # File actionpack/lib/abstract_controller/base.rb, line 184
def performed?
response_body
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -574,7 +571,7 @@ process(action, ...)
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 148
+ # File actionpack/lib/abstract_controller/base.rb, line 145
def process(action, ...)
@_action_name = action.to_s
@@ -587,7 +584,7 @@ process(action, ...)
process_action(action_name, ...)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -615,7 +612,7 @@ response_body
attr_internal :response_body
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Caching.html b/src/classes/AbstractController/Caching.html
index 0b23826322..c12b2328b0 100644
--- a/src/classes/AbstractController/Caching.html
+++ b/src/classes/AbstractController/Caching.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -116,7 +116,7 @@ view_cache_dependencies()
self.class._view_cache_dependencies.filter_map { |dep| instance_exec(&dep) }
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -152,7 +152,7 @@ cache(key, options = {}, &block)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Caching/ClassMethods.html b/src/classes/AbstractController/Caching/ClassMethods.html
index 215f480a5d..7d6fc2792c 100644
--- a/src/classes/AbstractController/Caching/ClassMethods.html
+++ b/src/classes/AbstractController/Caching/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -73,7 +73,7 @@ view_cache_dependency(&
self._view_cache_dependencies += [dependency]
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Caching/ConfigMethods.html b/src/classes/AbstractController/Caching/ConfigMethods.html
index bd893ec58c..d28f36d395 100644
--- a/src/classes/AbstractController/Caching/ConfigMethods.html
+++ b/src/classes/AbstractController/Caching/ConfigMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -77,7 +77,7 @@ cache_store()
config.cache_store
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -104,7 +104,7 @@ cache_store=(store)
config.cache_store = ActiveSupport::Cache.lookup_store(*store)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Caching/Fragments.html b/src/classes/AbstractController/Caching/Fragments.html
index fcf25e3160..89c4a96d08 100644
--- a/src/classes/AbstractController/Caching/Fragments.html
+++ b/src/classes/AbstractController/Caching/Fragments.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -123,7 +123,7 @@ combined_fragment_cache_k
cache_key
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -172,7 +172,7 @@ expire_fragment(key, options = ni
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -206,7 +206,7 @@ fragment_exist?(key, options =
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -241,7 +241,7 @@ read_fragment(key, options = nil)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -277,7 +277,7 @@ write_fragment(key, content, optio
content
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Caching/Fragments/ClassMethods.html b/src/classes/AbstractController/Caching/Fragments/ClassMethods.html
index d2dcccea06..cabb17ee48 100644
--- a/src/classes/AbstractController/Caching/Fragments/ClassMethods.html
+++ b/src/classes/AbstractController/Caching/Fragments/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -91,7 +91,7 @@ fragment_cache_key(value = nil
self.fragment_cache_keys += [key || -> { value }]
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Callbacks.html b/src/classes/AbstractController/Callbacks.html
index 8822c7abaf..821530b7ac 100644
--- a/src/classes/AbstractController/Callbacks.html
+++ b/src/classes/AbstractController/Callbacks.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/AbstractController/Callbacks/ClassMethods.html b/src/classes/AbstractController/Callbacks/ClassMethods.html
index 9d42f91cd5..7585049770 100644
--- a/src/classes/AbstractController/Callbacks/ClassMethods.html
+++ b/src/classes/AbstractController/Callbacks/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -136,7 +136,7 @@ Block Parameters
📝 Source code
- # File actionpack/lib/abstract_controller/callbacks.rb, line 120
+ # File actionpack/lib/abstract_controller/callbacks.rb, line 122
def _insert_callbacks(callbacks, block = nil)
options = callbacks.extract_options!
callbacks.push(block) if block
@@ -148,7 +148,7 @@ Block Parameters
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -191,13 +191,13 @@ Options
📝 Source code
- # File actionpack/lib/abstract_controller/callbacks.rb, line 93
+ # File actionpack/lib/abstract_controller/callbacks.rb, line 95
def _normalize_callback_options(options)
_normalize_callback_option(options, :only, :if)
_normalize_callback_option(options, :except, :unless)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -217,7 +217,7 @@ after_action(names, block)
-
+
@@ -235,7 +235,7 @@ append_after_action(names, bl
-
+
@@ -253,7 +253,7 @@ append_around_action(names,
-
+
@@ -273,7 +273,7 @@ append_before_action(names,
-
+
@@ -291,7 +291,7 @@ around_action(names, block)
-
+
@@ -311,7 +311,7 @@ before_action(names, block)
-
+
@@ -329,7 +329,7 @@ prepend_after_action(names,
-
+
@@ -347,7 +347,7 @@ prepend_around_action(names
-
+
@@ -367,7 +367,7 @@ prepend_before_action(names
-
+
@@ -385,7 +385,7 @@ skip_after_action(names)
-
+
@@ -403,7 +403,7 @@ skip_around_action(names)
-
+
@@ -421,7 +421,7 @@ skip_before_action(names)
-
+
diff --git a/src/classes/AbstractController/Collector.html b/src/classes/AbstractController/Collector.html
index 57b6131c09..9e6e760910 100644
--- a/src/classes/AbstractController/Collector.html
+++ b/src/classes/AbstractController/Collector.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -77,7 +77,7 @@ generate_method_for_mime
RUBY
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/DoubleRenderError.html b/src/classes/AbstractController/DoubleRenderError.html
index a5ebb7d8de..0c069d3919 100644
--- a/src/classes/AbstractController/DoubleRenderError.html
+++ b/src/classes/AbstractController/DoubleRenderError.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -91,7 +91,7 @@ new(message = nil)
super(message || DEFAULT_MESSAGE)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Helpers.html b/src/classes/AbstractController/Helpers.html
index 5074dcad50..b06b2e66db 100644
--- a/src/classes/AbstractController/Helpers.html
+++ b/src/classes/AbstractController/Helpers.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -86,7 +86,7 @@ _helpers()
self.class._helpers
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Helpers/ClassMethods.html b/src/classes/AbstractController/Helpers/ClassMethods.html
index 16efafc85e..83ce9eb41f 100644
--- a/src/classes/AbstractController/Helpers/ClassMethods.html
+++ b/src/classes/AbstractController/Helpers/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -114,7 +114,7 @@ _helpers_for_modification
_helpers
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -138,7 +138,7 @@ all_helpers_from_path(path)
-
+
@@ -170,7 +170,7 @@ clear_helpers()
default_helper_module! unless anonymous?
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -252,7 +252,7 @@ helper(*args, &block)
_helpers_for_modification.module_eval(&block) if block_given?
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -320,7 +320,7 @@ Parameters
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -353,7 +353,7 @@ inherited(klass)
super
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -377,7 +377,7 @@ modules_for_helpers(modules_o
-
+
diff --git a/src/classes/AbstractController/Railties.html b/src/classes/AbstractController/Railties.html
index 10d7f0997e..8d5e0eaa30 100644
--- a/src/classes/AbstractController/Railties.html
+++ b/src/classes/AbstractController/Railties.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/AbstractController/Railties/RoutesHelpers.html b/src/classes/AbstractController/Railties/RoutesHelpers.html
index 6c13f9f8d2..6ceec3064b 100644
--- a/src/classes/AbstractController/Railties/RoutesHelpers.html
+++ b/src/classes/AbstractController/Railties/RoutesHelpers.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -82,7 +82,7 @@ with(routes, include_path_helpers = true)
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Rendering.html b/src/classes/AbstractController/Rendering.html
index 8fc94937ad..db54398f44 100644
--- a/src/classes/AbstractController/Rendering.html
+++ b/src/classes/AbstractController/Rendering.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -140,7 +140,7 @@ render(*args, &block)
self.response_body = rendered_body
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -168,7 +168,7 @@ render_to_body(options = {})
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -200,7 +200,7 @@ render_to_string(*args, &blo
render_to_body(options)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -229,7 +229,7 @@ rendered_format()
Mime[:text]
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -262,7 +262,7 @@ view_assigns()
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -304,7 +304,7 @@ _normalize_args(action = nil, opt
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -333,7 +333,7 @@ _normalize_options(options)
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -362,7 +362,7 @@ _process_options(options)
options
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Translation.html b/src/classes/AbstractController/Translation.html
index c6edd22603..bba36a94e9 100644
--- a/src/classes/AbstractController/Translation.html
+++ b/src/classes/AbstractController/Translation.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -111,7 +111,7 @@ localize(object, **options)
I18n.localize(object, **options)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -180,7 +180,7 @@ translate(key, **options)
ActiveSupport::HtmlSafeTranslation.translate(key, **options)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/UrlFor.html b/src/classes/AbstractController/UrlFor.html
index 1e24a94fb3..516f9cf68e 100644
--- a/src/classes/AbstractController/UrlFor.html
+++ b/src/classes/AbstractController/UrlFor.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -111,7 +111,7 @@ _routes()
"For instance, `include Rails.application.routes.url_helpers`."
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/UrlFor/ClassMethods.html b/src/classes/AbstractController/UrlFor/ClassMethods.html
index 9934b05de7..621bc063c6 100644
--- a/src/classes/AbstractController/UrlFor/ClassMethods.html
+++ b/src/classes/AbstractController/UrlFor/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -77,7 +77,7 @@ _routes()
nil
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -108,7 +108,7 @@ action_methods()
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable.html b/src/classes/ActionCable.html
index 3fb322c5a2..26d4f04307 100644
--- a/src/classes/ActionCable.html
+++ b/src/classes/ActionCable.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -172,7 +172,7 @@ gem_version()
Gem::Version.new VERSION::STRING
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -201,7 +201,7 @@ version()
gem_version
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -234,7 +234,7 @@ server()
@server ||= ActionCable::Server::Base.new
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel.html b/src/classes/ActionCable/Channel.html
index 248bf11653..334458ee89 100644
--- a/src/classes/ActionCable/Channel.html
+++ b/src/classes/ActionCable/Channel.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/ActionCable/Channel/Base.html b/src/classes/ActionCable/Channel/Base.html
index b34456cddf..3f5bd38e27 100644
--- a/src/classes/ActionCable/Channel/Base.html
+++ b/src/classes/ActionCable/Channel/Base.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -303,15 +303,16 @@ Returns
# Except for public instance methods of Base and its ancestors
ActionCable::Channel::Base.public_instance_methods(true) +
# Be sure to include shadowed public instance methods of this class
- public_instance_methods(false)).uniq
+ public_instance_methods(false) -
+ # Except the internal methods
+ internal_methods).uniq
- methods.reject! { |m| m.start_with?("_") }
methods.map!(&:name)
methods.to_set
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -333,7 +334,7 @@ new(connection, identifier, params = {})📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 158
+ # File actioncable/lib/action_cable/channel/base.rb, line 163
def initialize(connection, identifier, params = {})
@connection = connection
@identifier = identifier
@@ -352,7 +353,7 @@ new(connection, identifier, params = {})
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -379,12 +380,12 @@ clear_action_methods!()
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 147
+ # File actioncable/lib/action_cable/channel/base.rb, line 148
def clear_action_methods! # :doc:
@action_methods = nil
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -408,13 +409,13 @@ method_added(name)
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 152
+ # File actioncable/lib/action_cable/channel/base.rb, line 153
def method_added(name) # :doc:
super
clear_action_methods!
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -442,7 +443,7 @@ perform_action(data)
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 179
+ # File actioncable/lib/action_cable/channel/base.rb, line 184
def perform_action(data)
action = extract_action(data)
@@ -456,7 +457,7 @@ perform_action(data)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -480,7 +481,7 @@ subscribe_to_channel()📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 194
+ # File actioncable/lib/action_cable/channel/base.rb, line 199
def subscribe_to_channel
run_callbacks :subscribe do
subscribed
@@ -490,7 +491,7 @@ subscribe_to_channel()
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -515,12 +516,12 @@ defer_subscription
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 253
+ # File actioncable/lib/action_cable/channel/base.rb, line 258
def defer_subscription_confirmation! # :doc:
@defer_subscription_confirmation_counter.increment
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -542,12 +543,12 @@ defer_subscription
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 257
+ # File actioncable/lib/action_cable/channel/base.rb, line 262
def defer_subscription_confirmation? # :doc:
@defer_subscription_confirmation_counter.value > 0
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -569,14 +570,14 @@ ensure_confirmation_sent
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 247
+ # File actioncable/lib/action_cable/channel/base.rb, line 252
def ensure_confirmation_sent # :doc:
return if subscription_rejected?
@defer_subscription_confirmation_counter.decrement
transmit_subscription_confirmation unless defer_subscription_confirmation?
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -598,12 +599,12 @@ reject()
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 265
+ # File actioncable/lib/action_cable/channel/base.rb, line 270
def reject # :doc:
@reject_subscription = true
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -627,12 +628,12 @@ subscribed()
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 221
+ # File actioncable/lib/action_cable/channel/base.rb, line 226
def subscribed # :doc:
# Override in subclasses
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -654,12 +655,12 @@ subscription_confir
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 261
+ # File actioncable/lib/action_cable/channel/base.rb, line 266
def subscription_confirmation_sent? # :doc:
@subscription_confirmation_sent
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -681,12 +682,12 @@ subscription_rejected?()
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 269
+ # File actioncable/lib/action_cable/channel/base.rb, line 274
def subscription_rejected? # :doc:
@reject_subscription
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -710,7 +711,7 @@ transmit(data, via: nil)
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 234
+ # File actioncable/lib/action_cable/channel/base.rb, line 239
def transmit(data, via: nil) # :doc:
logger.debug do
status = "#{self.class.name} transmitting #{data.inspect.truncate(300)}"
@@ -724,7 +725,7 @@ transmit(data, via: nil)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -748,12 +749,12 @@ unsubscribed()
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 227
+ # File actioncable/lib/action_cable/channel/base.rb, line 232
def unsubscribed # :doc:
# Override in subclasses
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/Broadcasting.html b/src/classes/ActionCable/Channel/Broadcasting.html
index 0fb23c7a41..4396d94990 100644
--- a/src/classes/ActionCable/Channel/Broadcasting.html
+++ b/src/classes/ActionCable/Channel/Broadcasting.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -90,7 +90,7 @@ broadcast_to(model, message)<
self.class.broadcast_to(model, message)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -117,7 +117,7 @@ broadcasting_for(model)
self.class.broadcasting_for(model)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/Broadcasting/ClassMethods.html b/src/classes/ActionCable/Channel/Broadcasting/ClassMethods.html
index d83ae68769..9448779607 100644
--- a/src/classes/ActionCable/Channel/Broadcasting/ClassMethods.html
+++ b/src/classes/ActionCable/Channel/Broadcasting/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -79,7 +79,7 @@ broadcast_to(broadcastables, message
ActionCable.server.broadcast(broadcasting_for(broadcastables), message)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -113,7 +113,7 @@ broadcasting_for(broadcastables)
serialize_broadcasting([ channel_name ] + Array(broadcastables))
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/Callbacks.html b/src/classes/ActionCable/Channel/Callbacks.html
index 5d33d41261..4fb86c6a40 100644
--- a/src/classes/ActionCable/Channel/Callbacks.html
+++ b/src/classes/ActionCable/Channel/Callbacks.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/ActionCable/Channel/Callbacks/ClassMethods.html b/src/classes/ActionCable/Channel/Callbacks/ClassMethods.html
index 698490a12a..6ea3dd3df6 100644
--- a/src/classes/ActionCable/Channel/Callbacks/ClassMethods.html
+++ b/src/classes/ActionCable/Channel/Callbacks/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -101,12 +101,12 @@ after_subscribe(*methods, &bl
📝 Source code
- # File actioncable/lib/action_cable/channel/callbacks.rb, line 60
+ # File actioncable/lib/action_cable/channel/callbacks.rb, line 62
def after_subscribe(*methods, &block)
set_callback(:subscribe, :after, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -134,12 +134,12 @@ after_unsubscribe(*methods, &am
📝 Source code
- # File actioncable/lib/action_cable/channel/callbacks.rb, line 69
+ # File actioncable/lib/action_cable/channel/callbacks.rb, line 71
def after_unsubscribe(*methods, &block)
set_callback(:unsubscribe, :after, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -161,12 +161,12 @@ before_subscribe(*methods, &
📝 Source code
- # File actioncable/lib/action_cable/channel/callbacks.rb, line 48
+ # File actioncable/lib/action_cable/channel/callbacks.rb, line 50
def before_subscribe(*methods, &block)
set_callback(:subscribe, :before, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -188,12 +188,12 @@ before_unsubscribe(*methods, &
📝 Source code
- # File actioncable/lib/action_cable/channel/callbacks.rb, line 65
+ # File actioncable/lib/action_cable/channel/callbacks.rb, line 67
def before_unsubscribe(*methods, &block)
set_callback(:unsubscribe, :before, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/ChannelStub.html b/src/classes/ActionCable/Channel/ChannelStub.html
index e3911d81d7..b2581d7798 100644
--- a/src/classes/ActionCable/Channel/ChannelStub.html
+++ b/src/classes/ActionCable/Channel/ChannelStub.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -105,7 +105,7 @@ confirmed?()
subscription_confirmation_sent?
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -132,7 +132,7 @@ rejected?()
subscription_rejected?
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -165,7 +165,7 @@ start_periodic_timers()# File actioncable/lib/action_cable/channel/test_case.rb, line 46
def start_periodic_timers; end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -192,7 +192,7 @@ stop_all_streams()
@_streams = []
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -237,7 +237,7 @@ stream_from(broadcasting, *)
streams << broadcasting
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -264,7 +264,7 @@ streams()
@_streams ||= []
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/ConnectionStub.html b/src/classes/ActionCable/Channel/ConnectionStub.html
index 11013fbd50..05fada3b14 100644
--- a/src/classes/ActionCable/Channel/ConnectionStub.html
+++ b/src/classes/ActionCable/Channel/ConnectionStub.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -141,7 +141,7 @@ new(identifiers = {})
@logger = ActiveSupport::TaggedLogging.new ActiveSupport::Logger.new(StringIO.new)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -172,7 +172,7 @@ connection_identifier()
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -199,7 +199,7 @@ transmit(cable_message)
transmissions << cable_message.with_indifferent_access
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/Naming.html b/src/classes/ActionCable/Channel/Naming.html
index 72d3f9e810..b0e52b4e96 100644
--- a/src/classes/ActionCable/Channel/Naming.html
+++ b/src/classes/ActionCable/Channel/Naming.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -86,7 +86,7 @@ channel_name()
self.class.channel_name
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/Naming/ClassMethods.html b/src/classes/ActionCable/Channel/Naming/ClassMethods.html
index 4a83e33523..f9c9e31139 100644
--- a/src/classes/ActionCable/Channel/Naming/ClassMethods.html
+++ b/src/classes/ActionCable/Channel/Naming/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -80,7 +80,7 @@ channel_name()
@channel_name ||= name.delete_suffix("Channel").gsub("::", ":").underscore
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/NonInferrableChannelError.html b/src/classes/ActionCable/Channel/NonInferrableChannelError.html
index ee3aa76945..08b2a36027 100644
--- a/src/classes/ActionCable/Channel/NonInferrableChannelError.html
+++ b/src/classes/ActionCable/Channel/NonInferrableChannelError.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -80,7 +80,7 @@ new(name)
"test case definition."
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/PeriodicTimers.html b/src/classes/ActionCable/Channel/PeriodicTimers.html
index ff65f8d640..2124da5ca7 100644
--- a/src/classes/ActionCable/Channel/PeriodicTimers.html
+++ b/src/classes/ActionCable/Channel/PeriodicTimers.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/ActionCable/Channel/PeriodicTimers/ClassMethods.html b/src/classes/ActionCable/Channel/PeriodicTimers/ClassMethods.html
index 5310c2ba94..1b4de5dd00 100644
--- a/src/classes/ActionCable/Channel/PeriodicTimers/ClassMethods.html
+++ b/src/classes/ActionCable/Channel/PeriodicTimers/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -103,7 +103,7 @@ periodically(callback_or_method_name
self.periodic_timers += [[ callback, every: every ]]
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/Streams.html b/src/classes/ActionCable/Channel/Streams.html
index 31f239b6c3..d242147bb7 100644
--- a/src/classes/ActionCable/Channel/Streams.html
+++ b/src/classes/ActionCable/Channel/Streams.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -163,7 +163,7 @@ stop_all_streams()
end.clear
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -192,7 +192,7 @@ stop_stream_for(model)
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -225,7 +225,7 @@ stop_stream_from(broadcasting)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -256,7 +256,7 @@ stream_for(broadcastables, callback =
stream_from(broadcasting_for(broadcastables), callback || block, coder: coder)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -302,7 +302,7 @@ stream_from(broadcasting, callback =
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -335,7 +335,7 @@ stream_or_reject_for(model)<
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/TestCase.html b/src/classes/ActionCable/Channel/TestCase.html
index d6a89143c1..4af0468846 100644
--- a/src/classes/ActionCable/Channel/TestCase.html
+++ b/src/classes/ActionCable/Channel/TestCase.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
diff --git a/src/classes/ActionCable/Channel/TestCase/Behavior.html b/src/classes/ActionCable/Channel/TestCase/Behavior.html
index a0e06024a5..6d870f9605 100644
--- a/src/classes/ActionCable/Channel/TestCase/Behavior.html
+++ b/src/classes/ActionCable/Channel/TestCase/Behavior.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -187,7 +187,7 @@ assert_broadcast_on(stream_or
super(broadcasting_for(stream_or_object), *args)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -216,7 +216,7 @@ assert_broadcasts(stream_or_obj
super(broadcasting_for(stream_or_object), *args)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -251,7 +251,7 @@ assert_has_no_stream(stream)
assert subscription.streams.exclude?(stream), "Stream #{stream} has been started"
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -286,7 +286,7 @@ assert_has_no_stream_for
assert_has_no_stream(broadcasting_for(object))
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -321,7 +321,7 @@ assert_has_stream(stream)
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -356,7 +356,7 @@ assert_has_stream_for(objec
assert_has_stream(broadcasting_for(object))
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -391,7 +391,7 @@ assert_no_streams()
assert subscription.streams.empty?, "No streams started was expected, but #{subscription.streams.count} found"
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -423,7 +423,7 @@ perform(action, data = {})
subscription.perform_action(data.stringify_keys.merge("action" => action.to_s))
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -459,7 +459,7 @@ stub_connection(identifiers = {})
@connection = ConnectionStub.new(identifiers)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -492,7 +492,7 @@ subscribe(params = {})
@subscription
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -522,7 +522,7 @@ transmissions()
connection.transmissions.filter_map { |data| data["message"] }
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -552,7 +552,7 @@ unsubscribe()
subscription.unsubscribe_from_channel
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/TestCase/Behavior/ClassMethods.html b/src/classes/ActionCable/Channel/TestCase/Behavior/ClassMethods.html
index e053f0d79f..44843ab52f 100644
--- a/src/classes/ActionCable/Channel/TestCase/Behavior/ClassMethods.html
+++ b/src/classes/ActionCable/Channel/TestCase/Behavior/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -85,7 +85,7 @@ channel_class()
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -116,7 +116,7 @@ determine_default_channel
channel
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -150,7 +150,7 @@ tests(channel)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection.html b/src/classes/ActionCable/Connection.html
index f68706985f..cfe9a89d13 100644
--- a/src/classes/ActionCable/Connection.html
+++ b/src/classes/ActionCable/Connection.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/ActionCable/Connection/Assertions.html b/src/classes/ActionCable/Connection/Assertions.html
index 85e853d363..26b0e4138f 100644
--- a/src/classes/ActionCable/Connection/Assertions.html
+++ b/src/classes/ActionCable/Connection/Assertions.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -79,7 +79,7 @@ assert_reject_connection
assert_raises(Authorization::UnauthorizedError, "Expected to reject connection but no rejection was made", &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/Authorization.html b/src/classes/ActionCable/Connection/Authorization.html
index 63abeb23e4..7fa68790e1 100644
--- a/src/classes/ActionCable/Connection/Authorization.html
+++ b/src/classes/ActionCable/Connection/Authorization.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -89,7 +89,7 @@ reject_unauthorized_co
raise UnauthorizedError
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/Authorization/UnauthorizedError.html b/src/classes/ActionCable/Connection/Authorization/UnauthorizedError.html
index 101bb29c60..c75802a313 100644
--- a/src/classes/ActionCable/Connection/Authorization/UnauthorizedError.html
+++ b/src/classes/ActionCable/Connection/Authorization/UnauthorizedError.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
diff --git a/src/classes/ActionCable/Connection/Base.html b/src/classes/ActionCable/Connection/Base.html
index cdc3c5b7cf..d34cb2b308 100644
--- a/src/classes/ActionCable/Connection/Base.html
+++ b/src/classes/ActionCable/Connection/Base.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -256,7 +256,7 @@ new(server, env, coder: ActiveSupport::JSON)<
@started_at = Time.now
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -287,7 +287,7 @@ beat()
transmit type: ActionCable::INTERNAL[:message_types][:ping], message: Time.now.to_i
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -321,7 +321,7 @@ close(reason: nil, reconnect: true)<
websocket.close
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -350,7 +350,7 @@ handle_channel_command(pay
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -379,7 +379,7 @@ send_async(method, *arguments)<
worker_pool.async_invoke(self, method, *arguments)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -413,7 +413,7 @@ statistics()
}
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -445,7 +445,7 @@ cookies()
request.cookie_jar
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -477,7 +477,7 @@ request()
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/Callbacks.html b/src/classes/ActionCable/Connection/Callbacks.html
index b6651d788a..79e6628db1 100644
--- a/src/classes/ActionCable/Connection/Callbacks.html
+++ b/src/classes/ActionCable/Connection/Callbacks.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/ActionCable/Connection/Callbacks/ClassMethods.html b/src/classes/ActionCable/Connection/Callbacks/ClassMethods.html
index b1acc87283..4215a3ede2 100644
--- a/src/classes/ActionCable/Connection/Callbacks/ClassMethods.html
+++ b/src/classes/ActionCable/Connection/Callbacks/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -81,7 +81,7 @@ after_command(*methods, &block)
set_callback(:command, :after, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -108,7 +108,7 @@ around_command(*methods, &bloc
set_callback(:command, :around, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -135,7 +135,7 @@ before_command(*methods, &bloc
set_callback(:command, :before, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/Identification.html b/src/classes/ActionCable/Connection/Identification.html
index 4faf0643d9..d0c83db893 100644
--- a/src/classes/ActionCable/Connection/Identification.html
+++ b/src/classes/ActionCable/Connection/Identification.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -92,7 +92,7 @@ connection_identifier()
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/Identification/ClassMethods.html b/src/classes/ActionCable/Connection/Identification/ClassMethods.html
index c9a8940058..905fb33053 100644
--- a/src/classes/ActionCable/Connection/Identification/ClassMethods.html
+++ b/src/classes/ActionCable/Connection/Identification/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -78,7 +78,7 @@ identified_by(*identifiers)<
self.identifiers += identifiers
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/InternalChannel.html b/src/classes/ActionCable/Connection/InternalChannel.html
index dfd2136378..918852ac6f 100644
--- a/src/classes/ActionCable/Connection/InternalChannel.html
+++ b/src/classes/ActionCable/Connection/InternalChannel.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/ActionCable/Connection/NonInferrableConnectionError.html b/src/classes/ActionCable/Connection/NonInferrableConnectionError.html
index 0317f4567e..4f95582852 100644
--- a/src/classes/ActionCable/Connection/NonInferrableConnectionError.html
+++ b/src/classes/ActionCable/Connection/NonInferrableConnectionError.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -80,7 +80,7 @@ new(name)
"test case definition."
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/StreamEventLoop.html b/src/classes/ActionCable/Connection/StreamEventLoop.html
index c65dcf2f6f..8cd41da8bc 100644
--- a/src/classes/ActionCable/Connection/StreamEventLoop.html
+++ b/src/classes/ActionCable/Connection/StreamEventLoop.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -107,7 +107,7 @@ new()
@spawn_mutex = Mutex.new
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -142,7 +142,7 @@ attach(io, stream)
wakeup
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -174,7 +174,7 @@ detach(io, stream)
wakeup
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -204,7 +204,7 @@ post(task = nil, &block)
@executor << task
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -232,7 +232,7 @@ stop()
wakeup if @nio
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -259,7 +259,7 @@ timer(interval, &block)
Concurrent::TimerTask.new(execution_interval: interval, &block).tap(&:execute)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -291,7 +291,7 @@ writes_pending(io)
wakeup
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/TaggedLoggerProxy.html b/src/classes/ActionCable/Connection/TaggedLoggerProxy.html
index b4f62bffac..e0fd36fef3 100644
--- a/src/classes/ActionCable/Connection/TaggedLoggerProxy.html
+++ b/src/classes/ActionCable/Connection/TaggedLoggerProxy.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -113,7 +113,7 @@ new(logger, tags:)
@tags = tags.flatten
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -145,7 +145,7 @@ add_tags(*tags)
@tags = @tags.uniq
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -177,7 +177,7 @@ tag(logger, &block)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -207,7 +207,7 @@ log(type, message, &block)
tag(@logger) { @logger.send type, message, &block }
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/TestCase.html b/src/classes/ActionCable/Connection/TestCase.html
index e5ab24e977..2e6b21e3a4 100644
--- a/src/classes/ActionCable/Connection/TestCase.html
+++ b/src/classes/ActionCable/Connection/TestCase.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
diff --git a/src/classes/ActionCable/Connection/TestCase/Behavior.html b/src/classes/ActionCable/Connection/TestCase/Behavior.html
index e0f10833d8..c6564b1e2e 100644
--- a/src/classes/ActionCable/Connection/TestCase/Behavior.html
+++ b/src/classes/ActionCable/Connection/TestCase/Behavior.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -164,7 +164,7 @@
abstract!()action_methods()clear_action_methods!()
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 109
+ # File actionpack/lib/abstract_controller/base.rb, line 106
def clear_action_methods!
@action_methods = nil
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -264,12 +261,12 @@ controller_path()
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 121
+ # File actionpack/lib/abstract_controller/base.rb, line 118
def controller_path
@controller_path ||= name.delete_suffix("Controller").underscore unless anonymous?
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -306,7 +303,7 @@ internal_methods()
controller.public_instance_methods(true) - methods
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -330,13 +327,13 @@ method_added(name)
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 130
+ # File actionpack/lib/abstract_controller/base.rb, line 127
def method_added(name)
super
clear_action_methods!
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -360,12 +357,12 @@ supports_path?()
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 194
+ # File actionpack/lib/abstract_controller/base.rb, line 191
def self.supports_path?
true
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -393,12 +390,12 @@ action_methods()
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 166
+ # File actionpack/lib/abstract_controller/base.rb, line 163
def action_methods
self.class.action_methods
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -426,7 +423,7 @@ action_name
attr_internal :action_name
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -457,12 +454,12 @@ Parameters
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 181
+ # File actionpack/lib/abstract_controller/base.rb, line 178
def available_action?(action_name)
_find_action_name(action_name)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -486,12 +483,12 @@ controller_path()
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 161
+ # File actionpack/lib/abstract_controller/base.rb, line 158
def controller_path
self.class.controller_path
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -519,7 +516,7 @@ formats
attr_internal :formats
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -543,12 +540,12 @@ performed?()
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 187
+ # File actionpack/lib/abstract_controller/base.rb, line 184
def performed?
response_body
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -574,7 +571,7 @@ process(action, ...)
📝 Source code
- # File actionpack/lib/abstract_controller/base.rb, line 148
+ # File actionpack/lib/abstract_controller/base.rb, line 145
def process(action, ...)
@_action_name = action.to_s
@@ -587,7 +584,7 @@ process(action, ...)
process_action(action_name, ...)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -615,7 +612,7 @@ response_body
attr_internal :response_body
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Caching.html b/src/classes/AbstractController/Caching.html
index 0b23826322..c12b2328b0 100644
--- a/src/classes/AbstractController/Caching.html
+++ b/src/classes/AbstractController/Caching.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -116,7 +116,7 @@ view_cache_dependencies()
self.class._view_cache_dependencies.filter_map { |dep| instance_exec(&dep) }
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -152,7 +152,7 @@ cache(key, options = {}, &block)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Caching/ClassMethods.html b/src/classes/AbstractController/Caching/ClassMethods.html
index 215f480a5d..7d6fc2792c 100644
--- a/src/classes/AbstractController/Caching/ClassMethods.html
+++ b/src/classes/AbstractController/Caching/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -73,7 +73,7 @@ view_cache_dependency(&
self._view_cache_dependencies += [dependency]
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Caching/ConfigMethods.html b/src/classes/AbstractController/Caching/ConfigMethods.html
index bd893ec58c..d28f36d395 100644
--- a/src/classes/AbstractController/Caching/ConfigMethods.html
+++ b/src/classes/AbstractController/Caching/ConfigMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -77,7 +77,7 @@ cache_store()
config.cache_store
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -104,7 +104,7 @@ cache_store=(store)
config.cache_store = ActiveSupport::Cache.lookup_store(*store)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Caching/Fragments.html b/src/classes/AbstractController/Caching/Fragments.html
index fcf25e3160..89c4a96d08 100644
--- a/src/classes/AbstractController/Caching/Fragments.html
+++ b/src/classes/AbstractController/Caching/Fragments.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -123,7 +123,7 @@ combined_fragment_cache_k
cache_key
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -172,7 +172,7 @@ expire_fragment(key, options = ni
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -206,7 +206,7 @@ fragment_exist?(key, options =
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -241,7 +241,7 @@ read_fragment(key, options = nil)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -277,7 +277,7 @@ write_fragment(key, content, optio
content
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Caching/Fragments/ClassMethods.html b/src/classes/AbstractController/Caching/Fragments/ClassMethods.html
index d2dcccea06..cabb17ee48 100644
--- a/src/classes/AbstractController/Caching/Fragments/ClassMethods.html
+++ b/src/classes/AbstractController/Caching/Fragments/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -91,7 +91,7 @@ fragment_cache_key(value = nil
self.fragment_cache_keys += [key || -> { value }]
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Callbacks.html b/src/classes/AbstractController/Callbacks.html
index 8822c7abaf..821530b7ac 100644
--- a/src/classes/AbstractController/Callbacks.html
+++ b/src/classes/AbstractController/Callbacks.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/AbstractController/Callbacks/ClassMethods.html b/src/classes/AbstractController/Callbacks/ClassMethods.html
index 9d42f91cd5..7585049770 100644
--- a/src/classes/AbstractController/Callbacks/ClassMethods.html
+++ b/src/classes/AbstractController/Callbacks/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -136,7 +136,7 @@ Block Parameters
📝 Source code
- # File actionpack/lib/abstract_controller/callbacks.rb, line 120
+ # File actionpack/lib/abstract_controller/callbacks.rb, line 122
def _insert_callbacks(callbacks, block = nil)
options = callbacks.extract_options!
callbacks.push(block) if block
@@ -148,7 +148,7 @@ Block Parameters
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -191,13 +191,13 @@ Options
📝 Source code
- # File actionpack/lib/abstract_controller/callbacks.rb, line 93
+ # File actionpack/lib/abstract_controller/callbacks.rb, line 95
def _normalize_callback_options(options)
_normalize_callback_option(options, :only, :if)
_normalize_callback_option(options, :except, :unless)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -217,7 +217,7 @@ after_action(names, block)
-
+
@@ -235,7 +235,7 @@ append_after_action(names, bl
-
+
@@ -253,7 +253,7 @@ append_around_action(names,
-
+
@@ -273,7 +273,7 @@ append_before_action(names,
-
+
@@ -291,7 +291,7 @@ around_action(names, block)
-
+
@@ -311,7 +311,7 @@ before_action(names, block)
-
+
@@ -329,7 +329,7 @@ prepend_after_action(names,
-
+
@@ -347,7 +347,7 @@ prepend_around_action(names
-
+
@@ -367,7 +367,7 @@ prepend_before_action(names
-
+
@@ -385,7 +385,7 @@ skip_after_action(names)
-
+
@@ -403,7 +403,7 @@ skip_around_action(names)
-
+
@@ -421,7 +421,7 @@ skip_before_action(names)
-
+
diff --git a/src/classes/AbstractController/Collector.html b/src/classes/AbstractController/Collector.html
index 57b6131c09..9e6e760910 100644
--- a/src/classes/AbstractController/Collector.html
+++ b/src/classes/AbstractController/Collector.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -77,7 +77,7 @@ generate_method_for_mime
RUBY
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/DoubleRenderError.html b/src/classes/AbstractController/DoubleRenderError.html
index a5ebb7d8de..0c069d3919 100644
--- a/src/classes/AbstractController/DoubleRenderError.html
+++ b/src/classes/AbstractController/DoubleRenderError.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -91,7 +91,7 @@ new(message = nil)
super(message || DEFAULT_MESSAGE)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Helpers.html b/src/classes/AbstractController/Helpers.html
index 5074dcad50..b06b2e66db 100644
--- a/src/classes/AbstractController/Helpers.html
+++ b/src/classes/AbstractController/Helpers.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -86,7 +86,7 @@ _helpers()
self.class._helpers
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Helpers/ClassMethods.html b/src/classes/AbstractController/Helpers/ClassMethods.html
index 16efafc85e..83ce9eb41f 100644
--- a/src/classes/AbstractController/Helpers/ClassMethods.html
+++ b/src/classes/AbstractController/Helpers/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -114,7 +114,7 @@ _helpers_for_modification
_helpers
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -138,7 +138,7 @@ all_helpers_from_path(path)
-
+
@@ -170,7 +170,7 @@ clear_helpers()
default_helper_module! unless anonymous?
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -252,7 +252,7 @@ helper(*args, &block)
_helpers_for_modification.module_eval(&block) if block_given?
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -320,7 +320,7 @@ Parameters
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -353,7 +353,7 @@ inherited(klass)
super
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -377,7 +377,7 @@ modules_for_helpers(modules_o
-
+
diff --git a/src/classes/AbstractController/Railties.html b/src/classes/AbstractController/Railties.html
index 10d7f0997e..8d5e0eaa30 100644
--- a/src/classes/AbstractController/Railties.html
+++ b/src/classes/AbstractController/Railties.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/AbstractController/Railties/RoutesHelpers.html b/src/classes/AbstractController/Railties/RoutesHelpers.html
index 6c13f9f8d2..6ceec3064b 100644
--- a/src/classes/AbstractController/Railties/RoutesHelpers.html
+++ b/src/classes/AbstractController/Railties/RoutesHelpers.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -82,7 +82,7 @@ with(routes, include_path_helpers = true)
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Rendering.html b/src/classes/AbstractController/Rendering.html
index 8fc94937ad..db54398f44 100644
--- a/src/classes/AbstractController/Rendering.html
+++ b/src/classes/AbstractController/Rendering.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -140,7 +140,7 @@ render(*args, &block)
self.response_body = rendered_body
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -168,7 +168,7 @@ render_to_body(options = {})
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -200,7 +200,7 @@ render_to_string(*args, &blo
render_to_body(options)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -229,7 +229,7 @@ rendered_format()
Mime[:text]
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -262,7 +262,7 @@ view_assigns()
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -304,7 +304,7 @@ _normalize_args(action = nil, opt
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -333,7 +333,7 @@ _normalize_options(options)
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -362,7 +362,7 @@ _process_options(options)
options
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/Translation.html b/src/classes/AbstractController/Translation.html
index c6edd22603..bba36a94e9 100644
--- a/src/classes/AbstractController/Translation.html
+++ b/src/classes/AbstractController/Translation.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -111,7 +111,7 @@ localize(object, **options)
I18n.localize(object, **options)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -180,7 +180,7 @@ translate(key, **options)
ActiveSupport::HtmlSafeTranslation.translate(key, **options)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/UrlFor.html b/src/classes/AbstractController/UrlFor.html
index 1e24a94fb3..516f9cf68e 100644
--- a/src/classes/AbstractController/UrlFor.html
+++ b/src/classes/AbstractController/UrlFor.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -111,7 +111,7 @@ _routes()
"For instance, `include Rails.application.routes.url_helpers`."
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/AbstractController/UrlFor/ClassMethods.html b/src/classes/AbstractController/UrlFor/ClassMethods.html
index 9934b05de7..621bc063c6 100644
--- a/src/classes/AbstractController/UrlFor/ClassMethods.html
+++ b/src/classes/AbstractController/UrlFor/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -77,7 +77,7 @@ _routes()
nil
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -108,7 +108,7 @@ action_methods()
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable.html b/src/classes/ActionCable.html
index 3fb322c5a2..26d4f04307 100644
--- a/src/classes/ActionCable.html
+++ b/src/classes/ActionCable.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -172,7 +172,7 @@ gem_version()
Gem::Version.new VERSION::STRING
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -201,7 +201,7 @@ version()
gem_version
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -234,7 +234,7 @@ server()
@server ||= ActionCable::Server::Base.new
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel.html b/src/classes/ActionCable/Channel.html
index 248bf11653..334458ee89 100644
--- a/src/classes/ActionCable/Channel.html
+++ b/src/classes/ActionCable/Channel.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/ActionCable/Channel/Base.html b/src/classes/ActionCable/Channel/Base.html
index b34456cddf..3f5bd38e27 100644
--- a/src/classes/ActionCable/Channel/Base.html
+++ b/src/classes/ActionCable/Channel/Base.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -303,15 +303,16 @@ Returns
# Except for public instance methods of Base and its ancestors
ActionCable::Channel::Base.public_instance_methods(true) +
# Be sure to include shadowed public instance methods of this class
- public_instance_methods(false)).uniq
+ public_instance_methods(false) -
+ # Except the internal methods
+ internal_methods).uniq
- methods.reject! { |m| m.start_with?("_") }
methods.map!(&:name)
methods.to_set
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -333,7 +334,7 @@ new(connection, identifier, params = {})📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 158
+ # File actioncable/lib/action_cable/channel/base.rb, line 163
def initialize(connection, identifier, params = {})
@connection = connection
@identifier = identifier
@@ -352,7 +353,7 @@ new(connection, identifier, params = {})
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -379,12 +380,12 @@ clear_action_methods!()
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 147
+ # File actioncable/lib/action_cable/channel/base.rb, line 148
def clear_action_methods! # :doc:
@action_methods = nil
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -408,13 +409,13 @@ method_added(name)
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 152
+ # File actioncable/lib/action_cable/channel/base.rb, line 153
def method_added(name) # :doc:
super
clear_action_methods!
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -442,7 +443,7 @@ perform_action(data)
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 179
+ # File actioncable/lib/action_cable/channel/base.rb, line 184
def perform_action(data)
action = extract_action(data)
@@ -456,7 +457,7 @@ perform_action(data)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -480,7 +481,7 @@ subscribe_to_channel()📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 194
+ # File actioncable/lib/action_cable/channel/base.rb, line 199
def subscribe_to_channel
run_callbacks :subscribe do
subscribed
@@ -490,7 +491,7 @@ subscribe_to_channel()
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -515,12 +516,12 @@ defer_subscription
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 253
+ # File actioncable/lib/action_cable/channel/base.rb, line 258
def defer_subscription_confirmation! # :doc:
@defer_subscription_confirmation_counter.increment
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -542,12 +543,12 @@ defer_subscription
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 257
+ # File actioncable/lib/action_cable/channel/base.rb, line 262
def defer_subscription_confirmation? # :doc:
@defer_subscription_confirmation_counter.value > 0
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -569,14 +570,14 @@ ensure_confirmation_sent
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 247
+ # File actioncable/lib/action_cable/channel/base.rb, line 252
def ensure_confirmation_sent # :doc:
return if subscription_rejected?
@defer_subscription_confirmation_counter.decrement
transmit_subscription_confirmation unless defer_subscription_confirmation?
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -598,12 +599,12 @@ reject()
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 265
+ # File actioncable/lib/action_cable/channel/base.rb, line 270
def reject # :doc:
@reject_subscription = true
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -627,12 +628,12 @@ subscribed()
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 221
+ # File actioncable/lib/action_cable/channel/base.rb, line 226
def subscribed # :doc:
# Override in subclasses
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -654,12 +655,12 @@ subscription_confir
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 261
+ # File actioncable/lib/action_cable/channel/base.rb, line 266
def subscription_confirmation_sent? # :doc:
@subscription_confirmation_sent
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -681,12 +682,12 @@ subscription_rejected?()
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 269
+ # File actioncable/lib/action_cable/channel/base.rb, line 274
def subscription_rejected? # :doc:
@reject_subscription
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -710,7 +711,7 @@ transmit(data, via: nil)
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 234
+ # File actioncable/lib/action_cable/channel/base.rb, line 239
def transmit(data, via: nil) # :doc:
logger.debug do
status = "#{self.class.name} transmitting #{data.inspect.truncate(300)}"
@@ -724,7 +725,7 @@ transmit(data, via: nil)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -748,12 +749,12 @@ unsubscribed()
📝 Source code
- # File actioncable/lib/action_cable/channel/base.rb, line 227
+ # File actioncable/lib/action_cable/channel/base.rb, line 232
def unsubscribed # :doc:
# Override in subclasses
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/Broadcasting.html b/src/classes/ActionCable/Channel/Broadcasting.html
index 0fb23c7a41..4396d94990 100644
--- a/src/classes/ActionCable/Channel/Broadcasting.html
+++ b/src/classes/ActionCable/Channel/Broadcasting.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -90,7 +90,7 @@ broadcast_to(model, message)<
self.class.broadcast_to(model, message)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -117,7 +117,7 @@ broadcasting_for(model)
self.class.broadcasting_for(model)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/Broadcasting/ClassMethods.html b/src/classes/ActionCable/Channel/Broadcasting/ClassMethods.html
index d83ae68769..9448779607 100644
--- a/src/classes/ActionCable/Channel/Broadcasting/ClassMethods.html
+++ b/src/classes/ActionCable/Channel/Broadcasting/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -79,7 +79,7 @@ broadcast_to(broadcastables, message
ActionCable.server.broadcast(broadcasting_for(broadcastables), message)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -113,7 +113,7 @@ broadcasting_for(broadcastables)
serialize_broadcasting([ channel_name ] + Array(broadcastables))
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/Callbacks.html b/src/classes/ActionCable/Channel/Callbacks.html
index 5d33d41261..4fb86c6a40 100644
--- a/src/classes/ActionCable/Channel/Callbacks.html
+++ b/src/classes/ActionCable/Channel/Callbacks.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/ActionCable/Channel/Callbacks/ClassMethods.html b/src/classes/ActionCable/Channel/Callbacks/ClassMethods.html
index 698490a12a..6ea3dd3df6 100644
--- a/src/classes/ActionCable/Channel/Callbacks/ClassMethods.html
+++ b/src/classes/ActionCable/Channel/Callbacks/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -101,12 +101,12 @@ after_subscribe(*methods, &bl
📝 Source code
- # File actioncable/lib/action_cable/channel/callbacks.rb, line 60
+ # File actioncable/lib/action_cable/channel/callbacks.rb, line 62
def after_subscribe(*methods, &block)
set_callback(:subscribe, :after, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -134,12 +134,12 @@ after_unsubscribe(*methods, &am
📝 Source code
- # File actioncable/lib/action_cable/channel/callbacks.rb, line 69
+ # File actioncable/lib/action_cable/channel/callbacks.rb, line 71
def after_unsubscribe(*methods, &block)
set_callback(:unsubscribe, :after, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -161,12 +161,12 @@ before_subscribe(*methods, &
📝 Source code
- # File actioncable/lib/action_cable/channel/callbacks.rb, line 48
+ # File actioncable/lib/action_cable/channel/callbacks.rb, line 50
def before_subscribe(*methods, &block)
set_callback(:subscribe, :before, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -188,12 +188,12 @@ before_unsubscribe(*methods, &
📝 Source code
- # File actioncable/lib/action_cable/channel/callbacks.rb, line 65
+ # File actioncable/lib/action_cable/channel/callbacks.rb, line 67
def before_unsubscribe(*methods, &block)
set_callback(:unsubscribe, :before, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/ChannelStub.html b/src/classes/ActionCable/Channel/ChannelStub.html
index e3911d81d7..b2581d7798 100644
--- a/src/classes/ActionCable/Channel/ChannelStub.html
+++ b/src/classes/ActionCable/Channel/ChannelStub.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -105,7 +105,7 @@ confirmed?()
subscription_confirmation_sent?
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -132,7 +132,7 @@ rejected?()
subscription_rejected?
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -165,7 +165,7 @@ start_periodic_timers()# File actioncable/lib/action_cable/channel/test_case.rb, line 46
def start_periodic_timers; end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -192,7 +192,7 @@ stop_all_streams()
@_streams = []
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -237,7 +237,7 @@ stream_from(broadcasting, *)
streams << broadcasting
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -264,7 +264,7 @@ streams()
@_streams ||= []
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/ConnectionStub.html b/src/classes/ActionCable/Channel/ConnectionStub.html
index 11013fbd50..05fada3b14 100644
--- a/src/classes/ActionCable/Channel/ConnectionStub.html
+++ b/src/classes/ActionCable/Channel/ConnectionStub.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -141,7 +141,7 @@ new(identifiers = {})
@logger = ActiveSupport::TaggedLogging.new ActiveSupport::Logger.new(StringIO.new)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -172,7 +172,7 @@ connection_identifier()
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -199,7 +199,7 @@ transmit(cable_message)
transmissions << cable_message.with_indifferent_access
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/Naming.html b/src/classes/ActionCable/Channel/Naming.html
index 72d3f9e810..b0e52b4e96 100644
--- a/src/classes/ActionCable/Channel/Naming.html
+++ b/src/classes/ActionCable/Channel/Naming.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -86,7 +86,7 @@ channel_name()
self.class.channel_name
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/Naming/ClassMethods.html b/src/classes/ActionCable/Channel/Naming/ClassMethods.html
index 4a83e33523..f9c9e31139 100644
--- a/src/classes/ActionCable/Channel/Naming/ClassMethods.html
+++ b/src/classes/ActionCable/Channel/Naming/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -80,7 +80,7 @@ channel_name()
@channel_name ||= name.delete_suffix("Channel").gsub("::", ":").underscore
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/NonInferrableChannelError.html b/src/classes/ActionCable/Channel/NonInferrableChannelError.html
index ee3aa76945..08b2a36027 100644
--- a/src/classes/ActionCable/Channel/NonInferrableChannelError.html
+++ b/src/classes/ActionCable/Channel/NonInferrableChannelError.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -80,7 +80,7 @@ new(name)
"test case definition."
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/PeriodicTimers.html b/src/classes/ActionCable/Channel/PeriodicTimers.html
index ff65f8d640..2124da5ca7 100644
--- a/src/classes/ActionCable/Channel/PeriodicTimers.html
+++ b/src/classes/ActionCable/Channel/PeriodicTimers.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/ActionCable/Channel/PeriodicTimers/ClassMethods.html b/src/classes/ActionCable/Channel/PeriodicTimers/ClassMethods.html
index 5310c2ba94..1b4de5dd00 100644
--- a/src/classes/ActionCable/Channel/PeriodicTimers/ClassMethods.html
+++ b/src/classes/ActionCable/Channel/PeriodicTimers/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -103,7 +103,7 @@ periodically(callback_or_method_name
self.periodic_timers += [[ callback, every: every ]]
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/Streams.html b/src/classes/ActionCable/Channel/Streams.html
index 31f239b6c3..d242147bb7 100644
--- a/src/classes/ActionCable/Channel/Streams.html
+++ b/src/classes/ActionCable/Channel/Streams.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -163,7 +163,7 @@ stop_all_streams()
end.clear
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -192,7 +192,7 @@ stop_stream_for(model)
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -225,7 +225,7 @@ stop_stream_from(broadcasting)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -256,7 +256,7 @@ stream_for(broadcastables, callback =
stream_from(broadcasting_for(broadcastables), callback || block, coder: coder)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -302,7 +302,7 @@ stream_from(broadcasting, callback =
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -335,7 +335,7 @@ stream_or_reject_for(model)<
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/TestCase.html b/src/classes/ActionCable/Channel/TestCase.html
index d6a89143c1..4af0468846 100644
--- a/src/classes/ActionCable/Channel/TestCase.html
+++ b/src/classes/ActionCable/Channel/TestCase.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
diff --git a/src/classes/ActionCable/Channel/TestCase/Behavior.html b/src/classes/ActionCable/Channel/TestCase/Behavior.html
index a0e06024a5..6d870f9605 100644
--- a/src/classes/ActionCable/Channel/TestCase/Behavior.html
+++ b/src/classes/ActionCable/Channel/TestCase/Behavior.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -187,7 +187,7 @@ assert_broadcast_on(stream_or
super(broadcasting_for(stream_or_object), *args)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -216,7 +216,7 @@ assert_broadcasts(stream_or_obj
super(broadcasting_for(stream_or_object), *args)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -251,7 +251,7 @@ assert_has_no_stream(stream)
assert subscription.streams.exclude?(stream), "Stream #{stream} has been started"
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -286,7 +286,7 @@ assert_has_no_stream_for
assert_has_no_stream(broadcasting_for(object))
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -321,7 +321,7 @@ assert_has_stream(stream)
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -356,7 +356,7 @@ assert_has_stream_for(objec
assert_has_stream(broadcasting_for(object))
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -391,7 +391,7 @@ assert_no_streams()
assert subscription.streams.empty?, "No streams started was expected, but #{subscription.streams.count} found"
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -423,7 +423,7 @@ perform(action, data = {})
subscription.perform_action(data.stringify_keys.merge("action" => action.to_s))
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -459,7 +459,7 @@ stub_connection(identifiers = {})
@connection = ConnectionStub.new(identifiers)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -492,7 +492,7 @@ subscribe(params = {})
@subscription
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -522,7 +522,7 @@ transmissions()
connection.transmissions.filter_map { |data| data["message"] }
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -552,7 +552,7 @@ unsubscribe()
subscription.unsubscribe_from_channel
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Channel/TestCase/Behavior/ClassMethods.html b/src/classes/ActionCable/Channel/TestCase/Behavior/ClassMethods.html
index e053f0d79f..44843ab52f 100644
--- a/src/classes/ActionCable/Channel/TestCase/Behavior/ClassMethods.html
+++ b/src/classes/ActionCable/Channel/TestCase/Behavior/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -85,7 +85,7 @@ channel_class()
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -116,7 +116,7 @@ determine_default_channel
channel
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -150,7 +150,7 @@ tests(channel)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection.html b/src/classes/ActionCable/Connection.html
index f68706985f..cfe9a89d13 100644
--- a/src/classes/ActionCable/Connection.html
+++ b/src/classes/ActionCable/Connection.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/ActionCable/Connection/Assertions.html b/src/classes/ActionCable/Connection/Assertions.html
index 85e853d363..26b0e4138f 100644
--- a/src/classes/ActionCable/Connection/Assertions.html
+++ b/src/classes/ActionCable/Connection/Assertions.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -79,7 +79,7 @@ assert_reject_connection
assert_raises(Authorization::UnauthorizedError, "Expected to reject connection but no rejection was made", &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/Authorization.html b/src/classes/ActionCable/Connection/Authorization.html
index 63abeb23e4..7fa68790e1 100644
--- a/src/classes/ActionCable/Connection/Authorization.html
+++ b/src/classes/ActionCable/Connection/Authorization.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -89,7 +89,7 @@ reject_unauthorized_co
raise UnauthorizedError
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/Authorization/UnauthorizedError.html b/src/classes/ActionCable/Connection/Authorization/UnauthorizedError.html
index 101bb29c60..c75802a313 100644
--- a/src/classes/ActionCable/Connection/Authorization/UnauthorizedError.html
+++ b/src/classes/ActionCable/Connection/Authorization/UnauthorizedError.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
diff --git a/src/classes/ActionCable/Connection/Base.html b/src/classes/ActionCable/Connection/Base.html
index cdc3c5b7cf..d34cb2b308 100644
--- a/src/classes/ActionCable/Connection/Base.html
+++ b/src/classes/ActionCable/Connection/Base.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -256,7 +256,7 @@ new(server, env, coder: ActiveSupport::JSON)<
@started_at = Time.now
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -287,7 +287,7 @@ beat()
transmit type: ActionCable::INTERNAL[:message_types][:ping], message: Time.now.to_i
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -321,7 +321,7 @@ close(reason: nil, reconnect: true)<
websocket.close
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -350,7 +350,7 @@ handle_channel_command(pay
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -379,7 +379,7 @@ send_async(method, *arguments)<
worker_pool.async_invoke(self, method, *arguments)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -413,7 +413,7 @@ statistics()
}
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -445,7 +445,7 @@ cookies()
request.cookie_jar
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -477,7 +477,7 @@ request()
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/Callbacks.html b/src/classes/ActionCable/Connection/Callbacks.html
index b6651d788a..79e6628db1 100644
--- a/src/classes/ActionCable/Connection/Callbacks.html
+++ b/src/classes/ActionCable/Connection/Callbacks.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/ActionCable/Connection/Callbacks/ClassMethods.html b/src/classes/ActionCable/Connection/Callbacks/ClassMethods.html
index b1acc87283..4215a3ede2 100644
--- a/src/classes/ActionCable/Connection/Callbacks/ClassMethods.html
+++ b/src/classes/ActionCable/Connection/Callbacks/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -81,7 +81,7 @@ after_command(*methods, &block)
set_callback(:command, :after, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -108,7 +108,7 @@ around_command(*methods, &bloc
set_callback(:command, :around, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -135,7 +135,7 @@ before_command(*methods, &bloc
set_callback(:command, :before, *methods, &block)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/Identification.html b/src/classes/ActionCable/Connection/Identification.html
index 4faf0643d9..d0c83db893 100644
--- a/src/classes/ActionCable/Connection/Identification.html
+++ b/src/classes/ActionCable/Connection/Identification.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -92,7 +92,7 @@ connection_identifier()
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/Identification/ClassMethods.html b/src/classes/ActionCable/Connection/Identification/ClassMethods.html
index c9a8940058..905fb33053 100644
--- a/src/classes/ActionCable/Connection/Identification/ClassMethods.html
+++ b/src/classes/ActionCable/Connection/Identification/ClassMethods.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -78,7 +78,7 @@ identified_by(*identifiers)<
self.identifiers += identifiers
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/InternalChannel.html b/src/classes/ActionCable/Connection/InternalChannel.html
index dfd2136378..918852ac6f 100644
--- a/src/classes/ActionCable/Connection/InternalChannel.html
+++ b/src/classes/ActionCable/Connection/InternalChannel.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
diff --git a/src/classes/ActionCable/Connection/NonInferrableConnectionError.html b/src/classes/ActionCable/Connection/NonInferrableConnectionError.html
index 0317f4567e..4f95582852 100644
--- a/src/classes/ActionCable/Connection/NonInferrableConnectionError.html
+++ b/src/classes/ActionCable/Connection/NonInferrableConnectionError.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -80,7 +80,7 @@ new(name)
"test case definition."
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/StreamEventLoop.html b/src/classes/ActionCable/Connection/StreamEventLoop.html
index c65dcf2f6f..8cd41da8bc 100644
--- a/src/classes/ActionCable/Connection/StreamEventLoop.html
+++ b/src/classes/ActionCable/Connection/StreamEventLoop.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -107,7 +107,7 @@ new()
@spawn_mutex = Mutex.new
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -142,7 +142,7 @@ attach(io, stream)
wakeup
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -174,7 +174,7 @@ detach(io, stream)
wakeup
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -204,7 +204,7 @@ post(task = nil, &block)
@executor << task
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -232,7 +232,7 @@ stop()
wakeup if @nio
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -259,7 +259,7 @@ timer(interval, &block)
Concurrent::TimerTask.new(execution_interval: interval, &block).tap(&:execute)
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -291,7 +291,7 @@ writes_pending(io)
wakeup
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/TaggedLoggerProxy.html b/src/classes/ActionCable/Connection/TaggedLoggerProxy.html
index b4f62bffac..e0fd36fef3 100644
--- a/src/classes/ActionCable/Connection/TaggedLoggerProxy.html
+++ b/src/classes/ActionCable/Connection/TaggedLoggerProxy.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
@@ -113,7 +113,7 @@ new(logger, tags:)
@tags = tags.flatten
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -145,7 +145,7 @@ add_tags(*tags)
@tags = @tags.uniq
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -177,7 +177,7 @@ tag(logger, &block)
end
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
@@ -207,7 +207,7 @@ log(type, message, &block)
tag(@logger) { @logger.send type, message, &block }
end
- 🔎 See on GitHub
+ 🔎 See on GitHub
diff --git a/src/classes/ActionCable/Connection/TestCase.html b/src/classes/ActionCable/Connection/TestCase.html
index e5ab24e977..2e6b21e3a4 100644
--- a/src/classes/ActionCable/Connection/TestCase.html
+++ b/src/classes/ActionCable/Connection/TestCase.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
class
diff --git a/src/classes/ActionCable/Connection/TestCase/Behavior.html b/src/classes/ActionCable/Connection/TestCase/Behavior.html
index e0f10833d8..c6564b1e2e 100644
--- a/src/classes/ActionCable/Connection/TestCase/Behavior.html
+++ b/src/classes/ActionCable/Connection/TestCase/Behavior.html
@@ -5,7 +5,7 @@
- Ruby on Rails 8.1.0
+ Ruby on Rails 8.1.3
module
@@ -164,7 +164,7 @@