# Generated by jeweler # DO NOT EDIT THIS FILE DIRECTLY # Instead, edit Jeweler::Tasks in rakefile, and run the gemspec command # -*- encoding: utf-8 -*- Gem::Specification.new do |s| s.name = %q{least_squares} s.version = "0.1.1" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Shane Emmons"] s.date = %q{2010-05-17} s.description = %q{This gem adds methods to the Math module to aid in calculating the Least Squares Regression Line given two arrays.} s.email = %q{semmons99@gmail.com} s.extra_rdoc_files = [ "CHANGELOG", "LICENSE", "README.md" ] s.files = [ ".gitignore", ".yardopts", "CHANGELOG", "LICENSE", "README.md", "Rakefile", "VERSION", "least_squares.gemspec", "lib/least_squares.rb", "spec/least_squares_spec.rb", "spec/spec.opts", "spec/spec_helper.rb" ] s.homepage = %q{http://github.com/semmons99/least_squares} s.rdoc_options = ["--charset=UTF-8"] s.require_paths = ["lib"] s.rubygems_version = %q{1.3.7} s.summary = %q{Calulate the Least Squares Regression Line} s.test_files = [ "spec/least_squares_spec.rb", "spec/spec_helper.rb" ] if s.respond_to? :specification_version then current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION s.specification_version = 3 if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then s.add_development_dependency(%q, [">= 1.3.0"]) s.add_development_dependency(%q, [">= 0.5.4"]) else s.add_dependency(%q, [">= 1.3.0"]) s.add_dependency(%q, [">= 0.5.4"]) end else s.add_dependency(%q, [">= 1.3.0"]) s.add_dependency(%q, [">= 0.5.4"]) end end