rubymotionlisp 1.0.10 → 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/lib/rubylisp/prim_io.rb +5 -3
 - metadata +1 -1
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA1:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 10c9718f339ca93186dafa8165c1770ed3ac54ae
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: cbb7459b2700bd3e754e67a376be801cf9d8a554
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 9d1a6fb500711bb718ecd443a00dd49ae7e1da7262ea36e587c3d1c30e604b8d89ba88a08ed8df6beb03b240f163153409f5ee781adad39a7753f4818fbe5a0f
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: b08b3633a0fad3ccfda4e6824d40400cc983c4dfc7dc5aeeee2867dc8395241c83256f6b67697b162007e0e6add6bc64aaa992cc3f75c3ad199343fbfa3b43dc
         
     | 
    
        data/lib/rubylisp/prim_io.rb
    CHANGED
    
    | 
         @@ -73,7 +73,7 @@ module Lisp 
     | 
|
| 
       73 
73 
     | 
    
         
             
                  else
         
     | 
| 
       74 
74 
     | 
    
         
             
                    self.output_to_stdout(s.value)
         
     | 
| 
       75 
75 
     | 
    
         
             
                  end
         
     | 
| 
       76 
     | 
    
         
            -
             
     | 
| 
      
 76 
     | 
    
         
            +
                  Lisp::String.with_value("OK")
         
     | 
| 
       77 
77 
     | 
    
         
             
                end
         
     | 
| 
       78 
78 
     | 
    
         | 
| 
       79 
79 
     | 
    
         | 
| 
         @@ -86,7 +86,7 @@ module Lisp 
     | 
|
| 
       86 
86 
     | 
    
         
             
                  else
         
     | 
| 
       87 
87 
     | 
    
         
             
                    self.output_to_stdout("\n")
         
     | 
| 
       88 
88 
     | 
    
         
             
                  end
         
     | 
| 
       89 
     | 
    
         
            -
             
     | 
| 
      
 89 
     | 
    
         
            +
                  Lisp::String.with_value("OK")
         
     | 
| 
       90 
90 
     | 
    
         
             
                end
         
     | 
| 
       91 
91 
     | 
    
         | 
| 
       92 
92 
     | 
    
         | 
| 
         @@ -99,7 +99,7 @@ module Lisp 
     | 
|
| 
       99 
99 
     | 
    
         
             
                  else
         
     | 
| 
       100 
100 
     | 
    
         
             
                    self.output_to_stdout(args.car.print_string)
         
     | 
| 
       101 
101 
     | 
    
         
             
                  end
         
     | 
| 
       102 
     | 
    
         
            -
             
     | 
| 
      
 102 
     | 
    
         
            +
                  Lisp::String.with_value("OK")
         
     | 
| 
       103 
103 
     | 
    
         
             
                end
         
     | 
| 
       104 
104 
     | 
    
         | 
| 
       105 
105 
     | 
    
         | 
| 
         @@ -214,8 +214,10 @@ module Lisp 
     | 
|
| 
       214 
214 
     | 
    
         | 
| 
       215 
215 
     | 
    
         
             
                  if destination.port?
         
     | 
| 
       216 
216 
     | 
    
         
             
                    destination.value.write(combined_string)
         
     | 
| 
      
 217 
     | 
    
         
            +
                    Lisp::String.with_value("OK")
         
     | 
| 
       217 
218 
     | 
    
         
             
                  elsif destination.value
         
     | 
| 
       218 
219 
     | 
    
         
             
                    self.output_to_stdout(combined_string)
         
     | 
| 
      
 220 
     | 
    
         
            +
                    Lisp::String.with_value("OK")
         
     | 
| 
       219 
221 
     | 
    
         
             
                  else
         
     | 
| 
       220 
222 
     | 
    
         
             
                    return Lisp::String.with_value(combined_string)
         
     | 
| 
       221 
223 
     | 
    
         
             
                  end
         
     |