Sha256: 46706292657da390a31ba8204af41b363cc846af6c02fd619cf35db8a16cd1c7
Contents?: true
Size: 674 Bytes
Versions: 13
Compression:
Stored size: 674 Bytes
Contents
# frozen_string_literal: true module Rails module ConsoleMethods def self.include(_mod, ...) raise_deprecation_warning super end def self.method_added(_method_name) raise_deprecation_warning super end def self.raise_deprecation_warning Rails.deprecator.warn(<<~MSG, caller_locations(2..2)) Extending Rails console through `Rails::ConsoleMethods` is deprecated and will be removed in Rails 8.0. Please directly use IRB's extension API to add new commands or helpers to the console. For more details, please visit: https://github.com/ruby/irb/blob/master/EXTEND_IRB.md MSG end end end
Version data entries
13 entries across 13 versions & 2 rubygems