diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-01 02:10:25 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-01 02:10:25 +0000 |
commit | 804a4e3794370eda33cd8c67f9d94c93bfc103cd (patch) | |
tree | bf58515d27f491827657977f21eda4aa9754f7dd /lib/redmine/views | |
parent | 65396dbd3503ba8a50216f66ff315a2c7fd333c5 (diff) | |
download | redmine-804a4e3794370eda33cd8c67f9d94c93bfc103cd.tar.gz redmine-804a4e3794370eda33cd8c67f9d94c93bfc103cd.zip |
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
Diffstat (limited to 'lib/redmine/views')
-rw-r--r-- | lib/redmine/views/builders/structure.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/redmine/views/builders/structure.rb b/lib/redmine/views/builders/structure.rb index 65ba47472..06e176937 100644 --- a/lib/redmine/views/builders/structure.rb +++ b/lib/redmine/views/builders/structure.rb @@ -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 |