[前][次][番号順一覧][スレッド一覧]

ruby-changes:30897

From: nobu <ko1@a...>
Date: Thu, 19 Sep 2013 16:22:24 +0900 (JST)
Subject: [ruby-changes:30897] nobu:r42976 (trunk): * remove trailing spaces, append newline at EOF.

nobu	2013-09-19 16:22:13 +0900 (Thu, 19 Sep 2013)

  New Revision: 42976

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=42976

  Log:
    * remove trailing spaces, append newline at EOF.

  Modified files:
    trunk/lib/rdoc/generator/template/darkfish/fonts/Lato-Light.ttf
    trunk/lib/rdoc/generator/template/darkfish/fonts/Lato-LightItalic.ttf
    trunk/lib/rdoc/generator/template/darkfish/fonts/Lato-Regular.ttf
    trunk/lib/rdoc/generator/template/darkfish/fonts/Lato-RegularItalic.ttf
    trunk/lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Bold.ttf
    trunk/lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Regular.ttf
    trunk/lib/rdoc/markdown.rb
    trunk/lib/rdoc/rd/block_parser.rb
    trunk/lib/rdoc/rd/inline_parser.rb
    trunk/lib/rdoc/store.rb
    trunk/test/rdoc/test_rdoc_code_object.rb
    trunk/test/rdoc/test_rdoc_parser_c.rb
Index: lib/rdoc/markdown.rb
===================================================================
--- lib/rdoc/markdown.rb	(revision 42975)
+++ lib/rdoc/markdown.rb	(revision 42976)
@@ -15120,7 +15120,7 @@ class RDoc::Markdown https://github.com/ruby/ruby/blob/trunk/lib/rdoc/markdown.rb#L15120
         self.pos = _save
         break
       end
-      @result = begin; 
+      @result = begin;
                ref = [:inline, @note_order.length]
                @footnotes[ref] = paragraph a
 
Index: lib/rdoc/generator/template/darkfish/fonts/Lato-Light.ttf
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: lib/rdoc/generator/template/darkfish/fonts/Lato-RegularItalic.ttf
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: lib/rdoc/generator/template/darkfish/fonts/Lato-LightItalic.ttf
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Bold.ttf
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Regular.ttf
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: lib/rdoc/generator/template/darkfish/fonts/Lato-Regular.ttf
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: lib/rdoc/store.rb
===================================================================
--- lib/rdoc/store.rb	(revision 42975)
+++ lib/rdoc/store.rb	(revision 42976)
@@ -663,7 +663,7 @@ class RDoc::Store https://github.com/ruby/ruby/blob/trunk/lib/rdoc/store.rb#L663
   end
 
   ##
-  # Converts the variable => ClassModule map +variables+ from a C parser into 
+  # Converts the variable => ClassModule map +variables+ from a C parser into
   # a variable => class name map.
 
   def make_variable_map variables
Index: lib/rdoc/rd/block_parser.rb
===================================================================
--- lib/rdoc/rd/block_parser.rb	(revision 42975)
+++ lib/rdoc/rd/block_parser.rb	(revision 42976)
@@ -677,54 +677,54 @@ Racc_debug_parser = false https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rd/block_parser.rb#L677
 # reduce 0 omitted
 
 def _reduce_1(val, _values, result)
- result = RDoc::Markup::Document.new(*val[0]) 
+ result = RDoc::Markup::Document.new(*val[0])
     result
 end
 
 def _reduce_2(val, _values, result)
- raise ParseError, "file empty" 
+ raise ParseError, "file empty"
     result
 end
 
 def _reduce_3(val, _values, result)
- result = val[0].concat val[1] 
+ result = val[0].concat val[1]
     result
 end
 
 def _reduce_4(val, _values, result)
- result = val[0] 
+ result = val[0]
     result
 end
 
 def _reduce_5(val, _values, result)
- result = val 
+ result = val
     result
 end
 
 def _reduce_6(val, _values, result)
- result = val 
+ result = val
     result
 end
 
 # reduce 7 omitted
 
 def _reduce_8(val, _values, result)
- result = val 
+ result = val
     result
 end
 
 def _reduce_9(val, _values, result)
- result = val 
+ result = val
     result
 end
 
 def _reduce_10(val, _values, result)
- result = [RDoc::Markup::BlankLine.new] 
+ result = [RDoc::Markup::BlankLine.new]
     result
 end
 
 def _reduce_11(val, _values, result)
- result = val[0].parts 
+ result = val[0].parts
     result
 end
 
@@ -732,30 +732,30 @@ def _reduce_12(val, _values, result) https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rd/block_parser.rb#L732
       # val[0] is like [level, title]
       title = @inline_parser.parse(val[0][1])
       result = RDoc::Markup::Heading.new(val[0][0], title)
-    
+
     result
 end
 
 def _reduce_13(val, _values, result)
       result = RDoc::Markup::Include.new val[0], @include_path
-    
+
     result
 end
 
 def _reduce_14(val, _values, result)
       # val[0] is Array of String
       result = paragraph val[0]
-    
+
     result
 end
 
 def _reduce_15(val, _values, result)
- result << val[1].rstrip 
+ result << val[1].rstrip
     result
 end
 
 def _reduce_16(val, _values, result)
- result = [val[0].rstrip] 
+ result = [val[0].rstrip]
     result
 end
 
@@ -766,7 +766,7 @@ def _reduce_17(val, _values, result) https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rd/block_parser.rb#L766
 
       # imform to lexer.
       @in_verbatim = false
-    
+
     result
 end
 
@@ -777,25 +777,25 @@ def _reduce_18(val, _values, result) https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rd/block_parser.rb#L777
 
       # imform to lexer.
       @in_verbatim = false
-    
+
     result
 end
 
 def _reduce_19(val, _values, result)
       result << val[1]
-    
+
     result
 end
 
 def _reduce_20(val, _values, result)
       result.concat val[2]
-    
+
     result
 end
 
 def _reduce_21(val, _values, result)
       result << "\n"
-    
+
     result
 end
 
@@ -803,7 +803,7 @@ def _reduce_22(val, _values, result) https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rd/block_parser.rb#L803
       result = val
       # inform to lexer.
       @in_verbatim = true
-    
+
     result
 end
 
@@ -817,89 +817,89 @@ end https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rd/block_parser.rb#L817
 
 def _reduce_27(val, _values, result)
       result = val[0]
-    
+
     result
 end
 
 def _reduce_28(val, _values, result)
       result = val[1]
-    
+
     result
 end
 
 def _reduce_29(val, _values, result)
       result = val[1].push(val[2])
-    
+
     result
 end
 
 def _reduce_30(val, _values, result)
- result = val[0] << val[1] 
+ result = val[0] << val[1]
     result
 end
 
 def _reduce_31(val, _values, result)
- result = [val[0]] 
+ result = [val[0]]
     result
 end
 
 def _reduce_32(val, _values, result)
       result = RDoc::Markup::List.new :BULLET, *val[0]
-    
+
     result
 end
 
 def _reduce_33(val, _values, result)
- result.push(val[1]) 
+ result.push(val[1])
     result
 end
 
 def _reduce_34(val, _values, result)
- result = val 
+ result = val
     result
 end
 
 def _reduce_35(val, _values, result)
       result = RDoc::Markup::ListItem.new nil, val[0], *val[1]
-    
+
     result
 end
 
 def _reduce_36(val, _values, result)
       result = RDoc::Markup::List.new :NUMBER, *val[0]
-    
+
     result
 end
 
 def _reduce_37(val, _values, result)
- result.push(val[1]) 
+ result.push(val[1])
     result
 end
 
 def _reduce_38(val, _values, result)
- result = val 
+ result = val
     result
 end
 
 def _reduce_39(val, _values, result)
       result = RDoc::Markup::ListItem.new nil, val[0], *val[1]
-    
+
     result
 end
 
 def _reduce_40(val, _values, result)
       result = RDoc::Markup::List.new :NOTE, *val[0]
-    
+
     result
 end
 
 def _reduce_41(val, _values, result)
- result.push(val[1]) 
+ result.push(val[1])
     result
 end
 
 def _reduce_42(val, _values, result)
- result = val 
+ result = val
     result
 end
 
@@ -907,77 +907,77 @@ def _reduce_43(val, _values, result) https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rd/block_parser.rb#L907
       term = @inline_parser.parse val[0].strip
 
       result = RDoc::Markup::ListItem.new term, *val[1]
-    
+
     result
 end
 
 def _reduce_44(val, _values, result)
       result = RDoc::Markup::List.new :LABEL, *val[0]
-    
+
     result
 end
 
 def _reduce_45(val, _values, result)
- result.push(val[1]) 
+ result.push(val[1])
     result
 end
 
 def _reduce_46(val, _values, result)
- result = val 
+ result = val
     result
 end
 
 def _reduce_47(val, _values, result)
       result = RDoc::Markup::ListItem.new "<tt>#{val[0].strip}</tt>", *val[1]
-    
+
     result
 end
 
 def _reduce_48(val, _values, result)
       result = [val[1]].concat(val[2])
-    
+
     result
 end
 
 def _reduce_49(val, _values, result)
       result = [val[1]]
-    
+
     result
 end
 
 def _reduce_50(val, _values, result)
       result = val[2]
-    
+
     result
 end
 
 def _reduce_51(val, _values, result)
       result = []
-    
+
     result
 end
 
 def _reduce_52(val, _values, result)
- result.concat val[1] 
+ result.concat val[1]
     result
 end
 
 # reduce 53 omitted
 
 def _reduce_54(val, _values, result)
- result = val 
+ result = val
     result
 end
 
 def _reduce_55(val, _values, result)
- result = val 
+ result = val
     result
 end
 
 # reduce 56 omitted
 
 def _reduce_57(val, _values, result)
- result = [] 
+ result = []
     result
 end
 
@@ -991,58 +991,58 @@ end https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rd/block_parser.rb#L991
 
 def _reduce_62(val, _values, result)
       result = paragraph [val[0]].concat(val[1])
-    
+
     result
 end
 
 def _reduce_63(val, _values, result)
       result = paragraph [val[0]]
-    
+
     result
 end
 
 def _reduce_64(val, _values, result)
       result = paragraph [val[0]].concat(val[1])
-    
+
     result
 end
 
 def _reduce_65(val, _values, result)
       result = paragraph [val[0]]
-    
+
     result
 end
 
 def _reduce_66(val, _values, result)
       result = [val[0]].concat(val[1])
-    
+
     result
 end
 
 def _reduce_67(val, _values, result)
- result.concat val[1] 
+ result.concat val[1]
     result
 end
 
 def _reduce_68(val, _values, result)
- result = val[1] 
+ result = val[1]
     result
 end
 
 def _reduce_69(val, _values, result)
- result = val 
+ result = val
     result
 end
 
 # reduce 70 omitted
 
 def _reduce_71(val, _values, result)
- result = [] 
+ result = []
     result
 end
 
 def _reduce_72(val, _values, result)
- result = [] 
+ result = []
     result
 end
 
Index: lib/rdoc/rd/inline_parser.rb
===================================================================
--- lib/rdoc/rd/inline_parser.rb	(revision 42975)
+++ lib/rdoc/rd/inline_parser.rb	(revision 42976)
@@ -732,12 +732,12 @@ Racc_debug_parser = false https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rd/inline_parser.rb#L732
 # reduce 1 omitted
 
 def _reduce_2(val, _values, result)
- result.append val[1] 
+ result.append val[1]
     result
 end
 
 def _reduce_3(val, _values, result)
- result = val[0] 
+ result = val[0]
     result
 end
 
@@ -762,28 +762,28 @@ end https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rd/inline_parser.rb#L762
 def _reduce_13(val, _values, result)
       content = val[1]
       result = inline "<em>#{content}</em>", content
-    
+
     result
 end
 
 def _reduce_14(val, _values, result)
       content = val[1]
       result = inline "<code>#{content}</code>", content
-    
+
     result
 end
 
 def _reduce_15(val, _values, result)
       content = val[1]
       result = inline "+#{content}+", content
-    
+
     result
 end
 
 def _reduce_16(val, _values, result)
       content = val[1]
       result = inline "<tt>#{content}</tt>", content
-    
+
     result
 end
 
@@ -791,13 +791,13 @@ def _reduce_17(val, _values, result) https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rd/inline_parser.rb#L791
       label = val[1]
       @block_parser.add_label label.reference
       result = "<span id=\"label-#{label}\">#{label}</span>"
-    
+
     result
 end
 
 def _reduce_18(val, _values, result)
       result = "{#{val[1]}}[#{val[2].join}]"
-    
+
     result
 end
 
@@ -805,13 +805,13 @@ def _reduce_19(val, _values, result) https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rd/inline_parser.rb#L805
       scheme, inline = val[1]
 
       result = "{#{inline}}[#{scheme}#{inline.reference}]"
-    
+
     result
 end
 
 def _reduce_20(val, _values, result)
       result = [nil, inline(val[1])]
-    
+
     result
 end
 
@@ -820,25 +820,25 @@ def _reduce_21(val, _values, result) https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rd/inline_parser.rb#L820
         'rdoc-label:',
         inline("#{val[0].reference}/#{val[1].reference}")
       ]
-    
+
     result
 end
 
 def _reduce_22(val, _values, result)
       result = ['rdoc-label:', val[0].reference]
-    
+
     result
 end
 
 def _reduce_23(val, _values, result)
       result = ['rdoc-label:', "#{val[0].reference}/"]
-    
+
     result
 end
 
 def _reduce_24(val, _values, result)
       result = [nil, inline(val[1])]
-    
+
     result
 end
 
@@ -847,92 +847,92 @@ def _reduce_25(val, _values, result) https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rd/inline_parser.rb#L847
         'rdoc-label:',
         inline("#{val[0].reference}/#{val[1].reference}")
       ]
-    
+
     result
 end
 
 def _reduce_26(val, _values, result)
       result = ['rdoc-label:', val[0]]
-    
+
     result
 end
 
 def _reduce_27(val, _values, result)
       ref = val[0].reference
       result = ['rdoc-label:', inline(ref, "#{ref}/")]
-    
+
     result
 end
 
 # reduce 28 omitted
 
 def _reduce_29(val, _values, result)
- result = val[1] 
+ result = val[1]
     result
 end
 
 def _reduce_30(val, _values, result)
- result = val[1] 
+ result = val[1]
     result
 end
 
 def _reduce_31(val, _values, result)
       result = inline val[0]
-    
+
     result
 end
 
 def _reduce_32(val, _values, result)
       result = inline "\"#{val[1]}\""
-    
+
     result
 end
 
 def _reduce_33(val, _values, result)
       result = inline val[0]
-    
+
     result
 end
 
 def _reduce_34(val, _values, result)
       result = inline "\"#{val[1]}\""
-    
+
     result
 end
 
 # reduce 35 omitted
 
 def _reduce_36(val, _values, result)
- result = val[1] 
+ result = val[1]
     result
 end
 
 def _reduce_37(val, _values, result)
- result = inline val[1] 
+ result = inline val[1]
     result
 end
 
 def _reduce_38(val, _values, result)
       result = val[0].append val[1]
-    
+
     result
 end
 
 def _reduce_39(val, _values, result)
       result = val[0].append val[1]
-    
+
     result
 end
 
 def _reduce_40(val, _values, result)
       result = val[0]
-    
+
     result
 end
 
 def _reduce_41(val, _values, result)
       result = inline val[0]
-    
+
     result
 end
 
@@ -940,25 +940,25 @@ end https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rd/inline_parser.rb#L940
 
 def _reduce_43(val, _values, result)
       result = val[0].append val[1]
-    
+
     result
 end
 
 def _reduce_44(val, _values, result)
       result = inline val[0]
-    
+
     result
 end
 
 def _reduce_45(val, _values, result)
       result = val[0].append val[1]
-    
+
     result
 end
 
 def _reduce_46(val, _values, result)
       result = val[0]
-    
+
     result
 end
 
@@ -984,24 +984,24 @@ end https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rd/inline_parser.rb#L984
 
 def _reduce_57(val, _values, result)
       result = val[0]
-    
+
     result
 end
 
 def _reduce_58(val, _values, result)
       result = inline val[0]
-    
+
     result
 end
 
 def _reduce_59(val, _values, result)
       result = inline val[0]
-    
+
     result
 end
 
 def _reduce_60(val, _values, result)
- result << val[1] 
+ result << val[1]
     result
 end
 
@@ -1009,7 +1009,7 @@ end https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rd/inline_parser.rb#L1009
 
 def _reduce_62(val, _values, result)
       result << val[1]
-    
+
     result
 end
 
@@ -1017,7 +1017,7 @@ end https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rd/inline_parser.rb#L1017
 
 def _reduce_64(val, _values, result)
       result << val[1]
-    
+
     result
 end
 
@@ -1048,7 +1048,7 @@ end https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rd/inline_parser.rb#L1048
 # reduce 77 omitted
 
 def _reduce_78(val, _values, result)
- result << val[1] 
+ result << val[1]
     result
 end
 
@@ -1099,13 +1099,13 @@ end https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rd/inline_parser.rb#L1099
 def _reduce_101(val, _values, result)
       index = @block_parser.add_footnote val[1].rdoc
       result = "{*#{index}}[rdoc-label:foottext-#{index}:footmark-#{index}]"
-    
+
     result
 end
 
 def _reduce_102(val, _values, result)
       result = inline "<tt>#{val[1]}</tt>", val[1]
-    
+
     result
 end
 
@@ -1122,7 +1122,7 @@ end https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rd/inline_parser.rb#L1122
 # reduce 108 omitted
 
 def _reduce_109(val, _values, result)
- result << val[1] 
+ result << val[1]
     result
 end
 
@@ -1130,24 +1130,24 @@ end https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rd/inline_parser.rb#L1130
 
 def _reduce_111(val, _values, result)
       result = inline val[0]
-    
+
     result
 end
 
 # reduce 112 omitted
 
 def _reduce_113(val, _values, result)
- result = val[1] 
+ result = val[1]
     result
 end
 
 def _reduce_114(val, _values, result)
- result = val[1] 
+ result = val[1]
     result
 end
 
 def _reduce_115(val, _values, result)
- result = val[1] 
+ result = val[1]
     result
 end
 
@@ -1192,7 +1192,7 @@ end https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rd/inline_parser.rb#L1192
 # reduce 135 omitted
 
 def _reduce_136(val, _values, result)
- result << val[1] 
+ result << val[1]
     result
 end
 
Index: test/rdoc/test_rdoc_code_object.rb
===================================================================
--- test/rdoc/test_rdoc_code_object.rb	(revision 42975)
+++ test/rdoc/test_rdoc_code_object.rb	(revision 42976)
@@ -129,7 +129,7 @@ class TestRDocCodeObject < XrefTestCase https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_code_object.rb#L129
     @store.rdoc.options.visibility = :nodoc
 
     @co.store = @store
-    
+
     assert @co.document_children
 
     @co.document_children = false
@@ -144,7 +144,7 @@ class TestRDocCodeObject < XrefTestCase https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_code_object.rb#L144
     @store.rdoc.options.visibility = :nodoc
 
     @co.store = @store
-    
+
     assert @co.document_self
 
     @co.document_self = false
@@ -197,7 +197,7 @@ class TestRDocCodeObject < XrefTestCase https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_code_object.rb#L197
     @store.rdoc.options.visibility = :nodoc
 
     @co.store = @store
-    
+
     refute @co.done_documenting
 
     @co.done_documenting = true
@@ -410,7 +410,7 @@ class TestRDocCodeObject < XrefTestCase https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_code_object.rb#L410
     @store.rdoc.options.visibility = :nodoc
 
     @co.store = @store
-    
+
     assert @co.document_self
     assert @co.document_children
 
@@ -430,7 +430,7 @@ class TestRDocCodeObject < XrefTestCase https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_code_object.rb#L430
     @store.rdoc.options.visibility = :nodoc
 
     @co.store = @store
-    
+
     refute @co.suppressed?
 
     @co.suppress
Index: test/rdoc/test_rdoc_parser_c.rb
===================================================================
--- test/rdoc/test_rdoc_parser_c.rb	(revision 42975)
+++ test/rdoc/test_rdoc_parser_c.rb	(revision 42976)
@@ -1718,7 +1718,7 @@ path_to_s(VALUE self) { } https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_parser_c.rb#L1718
  */
 static VALUE
 path_aref_m(int argc, VALUE *argv, VALUE str) { }
- 
+
 /*
  *  call-seq:
  *     string <=> other_string   -> -1, 0, +1 or nil

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]