crud-service 0.0.6 → 0.0.7
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 +8 -8
- data/lib/crud-service.rb +0 -1
- metadata +1 -2
- data/lib/logger.rb +0 -24
    
        checksums.yaml
    CHANGED
    
    | @@ -1,15 +1,15 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            !binary "U0hBMQ==":
         | 
| 3 3 | 
             
              metadata.gz: !binary |-
         | 
| 4 | 
            -
                 | 
| 4 | 
            +
                YTdkNzU4YzU3MDNhODcxOWY5NzI5ZjUyMTMzZGE1Mzg5YjdhOGEyNA==
         | 
| 5 5 | 
             
              data.tar.gz: !binary |-
         | 
| 6 | 
            -
                 | 
| 6 | 
            +
                MmI4YTUwMjRhZWRjZDEzMWQ5OTA1Mjg0ZThjNTY2Mzg3Y2ZhODc3Nw==
         | 
| 7 7 | 
             
            !binary "U0hBNTEy":
         | 
| 8 8 | 
             
              metadata.gz: !binary |-
         | 
| 9 | 
            -
                 | 
| 10 | 
            -
                 | 
| 11 | 
            -
                 | 
| 9 | 
            +
                OTNlZDM5N2Y5NjI2ZTRiMzI0YjgzMjI1YTU2MTkxM2RlMGNhYmY5Zjg2N2Vh
         | 
| 10 | 
            +
                ZmM1ZDZlMjllNjdmODE3OTdkMjk4MjAzNDFjNjhhY2YzZWNjYjUwNTVkMjdm
         | 
| 11 | 
            +
                ZTcwZmI2M2NiODBiODRhZjY5OTM4ZjAwYjc2OWMzYWI2ODg4MWM=
         | 
| 12 12 | 
             
              data.tar.gz: !binary |-
         | 
| 13 | 
            -
                 | 
| 14 | 
            -
                 | 
| 15 | 
            -
                 | 
| 13 | 
            +
                ZGIwZGFkZDJlOThlYzUzNGFkYjQ3MjJlM2FhYjVkYmE5Yjg0MWU2OGM5Nzhm
         | 
| 14 | 
            +
                MjQ4OTdiZTMzYTRkODI3MDIzOWIxZWEwN2M4ZmMyM2NjMWIzNWMxNmM2ODA0
         | 
| 15 | 
            +
                NjA5MDI5OTQyMDc1YmFlNmZhODk4ODNhYTAyNGQwOTBhOTM4YzY=
         | 
    
        data/lib/crud-service.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: crud-service
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0.0. | 
| 4 | 
            +
              version: 0.0.7
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Tom Cully
         | 
| @@ -187,7 +187,6 @@ files: | |
| 187 187 | 
             
            - lib/api.rb
         | 
| 188 188 | 
             
            - lib/crud-service.rb
         | 
| 189 189 | 
             
            - lib/dal.rb
         | 
| 190 | 
            -
            - lib/logger.rb
         | 
| 191 190 | 
             
            - lib/service.rb
         | 
| 192 191 | 
             
            - spec/helper.rb
         | 
| 193 192 | 
             
            - spec/helpers_spec.rb
         | 
    
        data/lib/logger.rb
    DELETED
    
    | @@ -1,24 +0,0 @@ | |
| 1 | 
            -
            module CrudService
         | 
| 2 | 
            -
              # This class provides a Generic Logger.
         | 
| 3 | 
            -
              class Logger
         | 
| 4 | 
            -
                # Log a debug message
         | 
| 5 | 
            -
                def debug(str)
         | 
| 6 | 
            -
                  puts "DEBUG: #{str}"
         | 
| 7 | 
            -
                end
         | 
| 8 | 
            -
             | 
| 9 | 
            -
                # Log an info message
         | 
| 10 | 
            -
                def info(str)
         | 
| 11 | 
            -
                  puts "INFO: #{str}"
         | 
| 12 | 
            -
                end
         | 
| 13 | 
            -
             | 
| 14 | 
            -
                # Log a warning message
         | 
| 15 | 
            -
                def warn(str)
         | 
| 16 | 
            -
                  puts "WARN: #{str}"
         | 
| 17 | 
            -
                end
         | 
| 18 | 
            -
             | 
| 19 | 
            -
                # Log an error message
         | 
| 20 | 
            -
                def error(str)
         | 
| 21 | 
            -
                  puts "ERROR: #{str}"
         | 
| 22 | 
            -
                end
         | 
| 23 | 
            -
              end
         | 
| 24 | 
            -
            end
         |