magic_test
magic_test copied to clipboard
👋 NoMethodError: undefined method `jquery_already_included=' for MagicTest:Module
trafficstars
We broke this (intentionally) in 0.0.5. You need to remove config/initializers/magic_test.rb from your project. Sorry for the inconvenience, but we need to be able to do stuff like this in the early days. 🙇🏻♂️ Keep an eye on the releases page for this sort of thing.
If this is causing issues, we could put the method back with a deprecation notice:
module MagicTest
class Error < StandardError; end
+ def jquery_already_included=(_)
+ warn "[DEPRECATION] `jquery_already_included` is deprecated and no longer needed.
+ end
def self.setup
yield self
end
end