mirror of
https://github.com/redmine/redmine.git
synced 2025-11-10 07:16:03 +01:00
Replace BlankSlate with BasicObject for Builder 3.0.0 compatibility (#40802).
Patch by Pavel Rosický (@ahorek). git-svn-id: https://svn.redmine.org/redmine/trunk@22863 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -17,12 +17,10 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
require 'blankslate'
|
||||
|
||||
module Redmine
|
||||
module Views
|
||||
module Builders
|
||||
class Structure < BlankSlate
|
||||
class Structure < BasicObject
|
||||
def initialize(request, response)
|
||||
@struct = [{}]
|
||||
@request = request
|
||||
@@ -38,7 +36,7 @@ module Redmine
|
||||
end
|
||||
|
||||
def encode_value(value)
|
||||
if value.is_a?(Time)
|
||||
if value.is_a?(::Time)
|
||||
# Rails uses a global setting to format JSON times
|
||||
# Don't rely on it for the API as it could have been changed
|
||||
value.xmlschema(0)
|
||||
@@ -49,15 +47,15 @@ module Redmine
|
||||
|
||||
def method_missing(sym, *args, &block)
|
||||
if args.count > 0
|
||||
if args.first.is_a?(Hash)
|
||||
if @struct.last.is_a?(Array)
|
||||
if args.first.is_a?(::Hash)
|
||||
if @struct.last.is_a?(::Array)
|
||||
@struct.last << args.first unless block
|
||||
else
|
||||
@struct.last[sym] = args.first
|
||||
end
|
||||
else
|
||||
value = encode_value(args.first)
|
||||
if @struct.last.is_a?(Array)
|
||||
if @struct.last.is_a?(::Array)
|
||||
if args.size == 1 && !block
|
||||
@struct.last << value
|
||||
else
|
||||
@@ -69,13 +67,13 @@ module Redmine
|
||||
end
|
||||
end
|
||||
if block
|
||||
@struct << (args.first.is_a?(Hash) ? args.first : {})
|
||||
@struct << (args.first.is_a?(::Hash) ? args.first : {})
|
||||
yield(self)
|
||||
ret = @struct.pop
|
||||
if @struct.last.is_a?(Array)
|
||||
if @struct.last.is_a?(::Array)
|
||||
@struct.last << ret
|
||||
else
|
||||
if @struct.last.has_key?(sym) && @struct.last[sym].is_a?(Hash)
|
||||
if @struct.last.has_key?(sym) && @struct.last[sym].is_a?(::Hash)
|
||||
@struct.last[sym].merge! ret
|
||||
else
|
||||
@struct.last[sym] = ret
|
||||
|
||||
Reference in New Issue
Block a user