ruboty-generator 1.0.2 → 1.0.3
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/CHANGELOG.md +5 -0
- data/lib/ruboty/generator/generate.rb +0 -1
- data/lib/ruboty/generator/version.rb +1 -1
- 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: a2c2cd97ea7b623ac0a2ae57387f2aaf98b68a0e
         | 
| 4 | 
            +
              data.tar.gz: 183870744fdaadb07584304081baf9ccb1bad7c9
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: fe6a795fc2e2cab75d65b59c765fd73ee6eacf5e926537c6a077fa6fcc9fc305441deb57ac3d0c78ed776130ed29e50a23a49e2f4f8d901fdb20f06e9c0f70ca
         | 
| 7 | 
            +
              data.tar.gz: 13fd5907138456aed87c958cd836d28c6926316338d4a67797bb4e184a134c515302eb9f4c1bea5e7b3c5132e58faeb9c1710b53e61eebcbafb24f49bfd400a8
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    
| @@ -127,7 +127,6 @@ end | |
| 127 127 | 
             
                def self.output_module(module_src, module_name)
         | 
| 128 128 | 
             
                  module_path = "./ruboty-#{module_name}/#{Ruboty::Generator::RUBOTY_MODULE_FILE}"
         | 
| 129 129 | 
             
                  FileUtils.mkdir_p(module_path)
         | 
| 130 | 
            -
                  puts module_src
         | 
| 131 130 | 
             
                  File.open("#{module_path}/#{module_name}.rb", 'w:utf-8') { |e| e.puts module_src }
         | 
| 132 131 | 
             
                end
         | 
| 133 132 | 
             
                private_class_method :output_module
         |