caloriecalc 0.1.5 → 0.1.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.
- checksums.yaml +4 -4
- data/caloriecalc.gemspec +5 -1
- data/lib/caloriecalc/version.rb +1 -1
- metadata +7 -4
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 69268af4681b031414dd6bac312bc4a275fc3116
         | 
| 4 | 
            +
              data.tar.gz: 873222a2efdd9a56cb0edebe45f0464fc35a4cd6
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 120d83bb856c4646fa26a2db6bd0099dc3549d4b814248aeb3699d184255ed929dceaddeb64d668ae173352a34c3c24072c8a8b3d3391b5986deff190be526ee
         | 
| 7 | 
            +
              data.tar.gz: dc4059f372a2dd7e942d9f1c8aa07af884ef8b2033151a5711a95a1f6820266ea37938303d4231c7136ddb4922fdd2bc4a15482ff621eabb98ddf441560e5381
         | 
    
        data/caloriecalc.gemspec
    CHANGED
    
    | @@ -10,7 +10,11 @@ Gem::Specification.new do |spec| | |
| 10 10 | 
             
              spec.email         = ["kevin.deady@gmail.com"]
         | 
| 11 11 |  | 
| 12 12 | 
             
              spec.summary       = %q{A Gem to calculate the caories needed for a person for a day.}
         | 
| 13 | 
            -
              spec.description   = %q{ | 
| 13 | 
            +
              spec.description   = %q{Functions avaiable: 
         | 
| 14 | 
            +
                WHO, Harris Benedict and MifflinStJeor will return calore reqs 
         | 
| 15 | 
            +
                for a person based on the inputs age, height, weight, sex based on their respective algorithms.
         | 
| 16 | 
            +
                Function CalorieCalculation returns a hash containing the values for each algorithm. 
         | 
| 17 | 
            +
                Function CaloriesBurnedPerMinute takes the weight and MET and returns the caloie burn per minute for a person performing that exercise}
         | 
| 14 18 | 
             
              spec.homepage      = ""
         | 
| 15 19 | 
             
              spec.license       = "MIT"
         | 
| 16 20 |  | 
    
        data/lib/caloriecalc/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: caloriecalc
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0.1. | 
| 4 | 
            +
              version: 0.1.6
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - kevin.deady@gmail.com
         | 
| @@ -38,9 +38,12 @@ dependencies: | |
| 38 38 | 
             
                - - "~>"
         | 
| 39 39 | 
             
                  - !ruby/object:Gem::Version
         | 
| 40 40 | 
             
                    version: '10.0'
         | 
| 41 | 
            -
            description:  | 
| 42 | 
            -
               | 
| 43 | 
            -
               | 
| 41 | 
            +
            description: "Functions avaiable: \n    WHO, Harris Benedict and MifflinStJeor will
         | 
| 42 | 
            +
              return calore reqs \n    for a person based on the inputs age, height, weight, sex
         | 
| 43 | 
            +
              based on their respective algorithms.\n    Function CalorieCalculation returns a
         | 
| 44 | 
            +
              hash containing the values for each algorithm. \n    Function CaloriesBurnedPerMinute
         | 
| 45 | 
            +
              takes the weight and MET and returns the caloie burn per minute for a person performing
         | 
| 46 | 
            +
              that exercise"
         | 
| 44 47 | 
             
            email:
         | 
| 45 48 | 
             
            - kevin.deady@gmail.com
         | 
| 46 49 | 
             
            executables: []
         |