├── .gitignore ├── CHANGES.markdown ├── MIT-LICENSE ├── README.markdown ├── Rakefile ├── VERSION ├── init.rb ├── lib └── statistics.rb ├── statistics.gemspec └── test └── statistics_test.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acatighera/statistics/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.markdown: -------------------------------------------------------------------------------- 1 | Version 0.1, 27.05.09 - initial release -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acatighera/statistics/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acatighera/statistics/HEAD/README.markdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acatighera/statistics/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acatighera/statistics/HEAD/init.rb -------------------------------------------------------------------------------- /lib/statistics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acatighera/statistics/HEAD/lib/statistics.rb -------------------------------------------------------------------------------- /statistics.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acatighera/statistics/HEAD/statistics.gemspec -------------------------------------------------------------------------------- /test/statistics_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acatighera/statistics/HEAD/test/statistics_test.rb --------------------------------------------------------------------------------