remove trailing white-spaces from lib/redmine/views/builders/structure.rb.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6959 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
65396dbd35
commit
804a4e3794
@ -1,16 +1,16 @@
|
|||||||
# Redmine - project management software
|
# Redmine - project management software
|
||||||
# Copyright (C) 2006-2010 Jean-Philippe Lang
|
# Copyright (C) 2006-2011 Jean-Philippe Lang
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or
|
# This program is free software; you can redistribute it and/or
|
||||||
# modify it under the terms of the GNU General Public License
|
# modify it under the terms of the GNU General Public License
|
||||||
# as published by the Free Software Foundation; either version 2
|
# as published by the Free Software Foundation; either version 2
|
||||||
# of the License, or (at your option) any later version.
|
# of the License, or (at your option) any later version.
|
||||||
#
|
#
|
||||||
# This program is distributed in the hope that it will be useful,
|
# This program is distributed in the hope that it will be useful,
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program; if not, write to the Free Software
|
# along with this program; if not, write to the Free Software
|
||||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
@ -24,7 +24,7 @@ module Redmine
|
|||||||
def initialize
|
def initialize
|
||||||
@struct = [{}]
|
@struct = [{}]
|
||||||
end
|
end
|
||||||
|
|
||||||
def array(tag, options={}, &block)
|
def array(tag, options={}, &block)
|
||||||
@struct << []
|
@struct << []
|
||||||
block.call(self)
|
block.call(self)
|
||||||
@ -32,7 +32,7 @@ module Redmine
|
|||||||
@struct.last[tag] = ret
|
@struct.last[tag] = ret
|
||||||
@struct.last.merge!(options) if options
|
@struct.last.merge!(options) if options
|
||||||
end
|
end
|
||||||
|
|
||||||
def method_missing(sym, *args, &block)
|
def method_missing(sym, *args, &block)
|
||||||
if args.any?
|
if args.any?
|
||||||
if args.first.is_a?(Hash)
|
if args.first.is_a?(Hash)
|
||||||
@ -49,7 +49,7 @@ module Redmine
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if block
|
if block
|
||||||
@struct << (args.first.is_a?(Hash) ? args.first : {})
|
@struct << (args.first.is_a?(Hash) ? args.first : {})
|
||||||
block.call(self)
|
block.call(self)
|
||||||
@ -65,7 +65,7 @@ module Redmine
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def output
|
def output
|
||||||
raise "Need to implement #{self.class.name}#output"
|
raise "Need to implement #{self.class.name}#output"
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user