module WilksCalc
Public Class Methods
female(bodyweight, weight_lifted)
click to toggle source
# File lib/wilks_calc.rb, line 8 def self.female(bodyweight, weight_lifted) Calculator.new('F', bodyweight, weight_lifted).calculate end
male(bodyweight, weight_lifted)
click to toggle source
# File lib/wilks_calc.rb, line 4 def self.male(bodyweight, weight_lifted) Calculator.new('M', bodyweight, weight_lifted).calculate end