nilac 0.0.3.5 → 0.0.3.6
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.
- data/bin/nilac +4 -2
- data/bin/nilac.rb +1 -1
- data/lib/nilac/version.rb +1 -1
- metadata +1 -1
    
        data/bin/nilac
    CHANGED
    
    | @@ -1,4 +1,6 @@ | |
| 1 | 
            -
            #!/usr/bin/env ruby | 
| 1 | 
            +
            #!/usr/bin/env ruby
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            #Nilac is the official Nila compiler. It compiles Nila into pure Javascript. Nilac is currently
         | 
| 2 4 | 
             
            #written in Ruby but will be self hosted in the upcoming years.
         | 
| 3 5 |  | 
| 4 6 | 
             
            #Nila and Nilac are being crafted by Adhithya Rajasekaran and Sri Madhavi Rajasekaran
         | 
| @@ -1550,7 +1552,7 @@ def create_mac_executable(input_file) | |
| 1550 1552 |  | 
| 1551 1553 | 
             
              end
         | 
| 1552 1554 |  | 
| 1553 | 
            -
              mac_file_contents = ["#!/usr/bin/env ruby"] + read_file_line_by_line(input_file)
         | 
| 1555 | 
            +
              mac_file_contents = ["#!/usr/bin/env ruby\n\n"] + read_file_line_by_line(input_file)
         | 
| 1554 1556 |  | 
| 1555 1557 | 
             
              mac_file_path = input_file.sub(".rb","")
         | 
| 1556 1558 |  | 
    
        data/bin/nilac.rb
    CHANGED
    
    | @@ -1550,7 +1550,7 @@ def create_mac_executable(input_file) | |
| 1550 1550 |  | 
| 1551 1551 | 
             
              end
         | 
| 1552 1552 |  | 
| 1553 | 
            -
              mac_file_contents = ["#!/usr/bin/env ruby"] + read_file_line_by_line(input_file)
         | 
| 1553 | 
            +
              mac_file_contents = ["#!/usr/bin/env ruby\n\n"] + read_file_line_by_line(input_file)
         | 
| 1554 1554 |  | 
| 1555 1555 | 
             
              mac_file_path = input_file.sub(".rb","")
         | 
| 1556 1556 |  | 
    
        data/lib/nilac/version.rb
    CHANGED