# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'how_is/version' Gem::Specification.new do |spec| spec.name = "how_is" spec.version = HowIs::VERSION spec.authors = ["Ellen Marie Dash"] spec.email = ["me@duckie.co"] spec.summary = %q{Quantify the health of a GitHub repository is.} spec.homepage = "https://github.com/duckinator/how_is" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_runtime_dependency "github_api", "~> 0.13.1" spec.add_runtime_dependency "configru", "~> 3.6.0" spec.add_runtime_dependency "contracts" spec.add_runtime_dependency "prawn" spec.add_runtime_dependency "mini_magick" spec.add_development_dependency "bundler", "~> 1.11" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" end