Sha256: 76943d949a6d79a0d28485de03aac2bc5f457e8cb4f576de259a146a0f260ae8

Contents?: true

Size: 1.06 KB

Versions: 4

Compression:

Stored size: 1.06 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "easystats/version"
require "complex"
include Math

Gem::Specification.new do |s|
  s.name        = "easystats"
  s.version     = Easystats::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Matthew Grigajtis"]
  s.email       = ["matthew@grigajtis.org"]
  s.homepage    = "https://github.com/mgrigajtis/easystats"
  s.summary     = %q{Easy to use statistics functions}
  s.description = %q{This gem contains statistics functions that are very easy to use.  The gem is still in its infancy, but it currently provides easy to use methods for sum, mean, standard deviation, median, range, mode, and variance.  More functions will be added as the gem matures, please feel free to fork on Github or send me bug reports!}

  s.rubyforge_project = "easystats"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
easystats-0.0.7 easystats.gemspec
easystats-0.0.6 easystats.gemspec
easystats-0.0.5 easystats.gemspec
easystats-0.0.4 easystats.gemspec