debian-mirror-gitlab/ruby-statistics/lib/statistics/distribution.rb
2019-10-03 23:17:56 +05:30

11 lines
281 B
Ruby
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Dir[File.dirname(__FILE__) + '/distribution/**/*.rb'].each {|file| require file }
module Statistics
module Distribution
end
end
# If Distribution is not defined, setup alias.
if defined?(Statistics) && !(defined?(Distribution))
Distribution = Statistics::Distribution
end