main
 1# coding: utf-8
 2lib = File.expand_path('../lib', __FILE__)
 3$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
 4require 'mathy/version'
 5
 6Gem::Specification.new do |spec|
 7  spec.name          = "mathy"
 8  spec.version       = Mathy::VERSION
 9  spec.authors       = ["mo khan"]
10  spec.email         = ["mo@mokhan.ca"]
11  spec.summary       = %q{a command line application to practice your math.}
12  spec.description   = %q{this is an application that my daughter and i are writing to help her practice her math.}
13  spec.homepage      = ""
14  spec.license       = "MIT"
15
16  spec.files         = `git ls-files -z`.split("\x0")
17  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
19  spec.require_paths = ["lib"]
20
21  spec.add_development_dependency "bundler", "~> 1.6"
22  spec.add_development_dependency "rake"
23  spec.add_development_dependency "minitest"
24end