mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
Require json explicitly to .to_json works everywhere
This commit is contained in:
parent
670fef2c52
commit
538d2e0ebc
1 changed files with 4 additions and 0 deletions
|
@ -1,6 +1,10 @@
|
|||
module Middleman::Base
|
||||
class << self
|
||||
def registered(app)
|
||||
# Explicitly require json support
|
||||
require "active_support"
|
||||
require "active_support/json"
|
||||
|
||||
app.extend ClassMethods
|
||||
app.send :include, InstanceMethods
|
||||
|
||||
|
|
Loading…
Reference in a new issue