bmicalc 0.0.1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 818200964f70024d929faf55c2e4f19b00f5c47d
4
+ data.tar.gz: abdf36b65d1b41fc4f66482a7ca57d0b9c2dd67c
5
+ SHA512:
6
+ metadata.gz: 46065139456ffe25d8315c7d6e91a435dbb84e286d023af75ad8b0fd98656906b8a2cbe9a2825746bcfeeca98ec533f9290c58774e098ae75d7075fcf472020f
7
+ data.tar.gz: d56f2babfd4389948a3d72ef2e6cbe8f341ff13de05a259e71a7e83e325a92ed5c62b55cfcef722ff871a7f2d4577d59908b12bf2f41fdfcb81d18bec76080b6
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in bmicalc.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Tom Kadwill
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,35 @@
1
+ =======
2
+ bmicalc
3
+ =======
4
+
5
+ Gem to calculate BMI
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ gem 'bmicalc'
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install bmicalc
20
+
21
+ ## Usage
22
+
23
+ bmi = Bmicalc.new
24
+ bmi.weight = 64 # in KGs
25
+ bmi.height = 1.78 # in meters
26
+
27
+ bmi.result # 20
28
+
29
+ ## Contributing
30
+
31
+ 1. Fork it ( http://github.com/<my-github-username>/bmicalc/fork )
32
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
33
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
34
+ 4. Push to the branch (`git push origin my-new-feature`)
35
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,5 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ Dir.glob('tasks/**/*.rake').each(&method(:import))
4
+
5
+ task default: :spec
data/bmicalc.gemspec ADDED
@@ -0,0 +1,24 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'bmicalc/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "bmicalc"
8
+ spec.version = Bmicalc::VERSION
9
+ spec.authors = ["Tom Kadwill"]
10
+ spec.email = ["tomkadwill@gmail.com"]
11
+ spec.summary = %q{Calculate BMI}
12
+ spec.description = %q{Calculate BMI}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.5"
22
+ spec.add_development_dependency "rake"
23
+ spec.add_development_dependency "rspec"
24
+ end
@@ -0,0 +1,3 @@
1
+ class Bmicalc
2
+ VERSION = "0.0.1"
3
+ end
data/lib/bmicalc.rb ADDED
@@ -0,0 +1,26 @@
1
+ require "bmicalc/version"
2
+
3
+ class Bmicalc
4
+
5
+ attr_accessor :weight, :height
6
+
7
+ def result
8
+ error unless weight && height
9
+ calculate_result
10
+ end
11
+
12
+ private
13
+
14
+ def calculate_result
15
+ (weight / (height * height)).round
16
+ end
17
+
18
+ def error
19
+ if weight
20
+ raise StandardError, 'height not set'
21
+ else
22
+ raise StandardError, 'weight not set'
23
+ end
24
+ end
25
+
26
+ end
@@ -0,0 +1,42 @@
1
+ require 'bmicalc'
2
+
3
+ describe Bmicalc do
4
+
5
+ context 'returns bmi' do
6
+
7
+ it 'underweight' do
8
+ subject.weight = 54
9
+ subject.height = 1.78
10
+ expect(subject.result).to eq(17)
11
+ end
12
+
13
+ it 'ideal' do
14
+ subject.weight = 64
15
+ subject.height = 1.78
16
+ expect(subject.result).to eq(20)
17
+ end
18
+
19
+ it 'overweight' do
20
+ subject.weight = 68
21
+ subject.height = 1.48
22
+ expect(subject.result).to eq(31)
23
+ end
24
+
25
+ it 'obese' do
26
+ subject.weight = 118
27
+ subject.height = 1.68
28
+ expect(subject.result).to eq(42)
29
+ end
30
+ end
31
+
32
+ it 'returns correct error message for weight' do
33
+ subject.height = 1.78
34
+ proc { subject.result }.should raise_error(StandardError, 'weight not set')
35
+ end
36
+
37
+ it 'returns correct error message for height' do
38
+ subject.weight = 64
39
+ proc { subject.result }.should raise_error(StandardError, 'height not set')
40
+ end
41
+
42
+ end
metadata ADDED
@@ -0,0 +1,98 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bmicalc
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Tom Kadwill
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-06-01 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.5'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.5'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: Calculate BMI
56
+ email:
57
+ - tomkadwill@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".rspec"
64
+ - Gemfile
65
+ - LICENSE.txt
66
+ - README.md
67
+ - Rakefile
68
+ - bmicalc.gemspec
69
+ - lib/bmicalc.rb
70
+ - lib/bmicalc/version.rb
71
+ - spec/bmicalc_spec.rb
72
+ homepage: ''
73
+ licenses:
74
+ - MIT
75
+ metadata: {}
76
+ post_install_message:
77
+ rdoc_options: []
78
+ require_paths:
79
+ - lib
80
+ required_ruby_version: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ version: '0'
85
+ required_rubygems_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ requirements: []
91
+ rubyforge_project:
92
+ rubygems_version: 2.2.2
93
+ signing_key:
94
+ specification_version: 4
95
+ summary: Calculate BMI
96
+ test_files:
97
+ - spec/bmicalc_spec.rb
98
+ has_rdoc: