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:
Toshi MARUYAMA 2011-09-01 02:10:25 +00:00
parent 65396dbd35
commit 804a4e3794
1 changed files with 7 additions and 7 deletions

View File

@ -1,16 +1,16 @@
# 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
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
@ -24,7 +24,7 @@ module Redmine
def initialize
@struct = [{}]
end
def array(tag, options={}, &block)
@struct << []
block.call(self)
@ -32,7 +32,7 @@ module Redmine
@struct.last[tag] = ret
@struct.last.merge!(options) if options
end
def method_missing(sym, *args, &block)
if args.any?
if args.first.is_a?(Hash)
@ -49,7 +49,7 @@ module Redmine
end
end
end
if block
@struct << (args.first.is_a?(Hash) ? args.first : {})
block.call(self)
@ -65,7 +65,7 @@ module Redmine
end
end
end
def output
raise "Need to implement #{self.class.name}#output"
end