Sha256: 236560bfc833bdffb938ee2eb40d8fc953a2aa5ef10dca331c960124fef98bb5

Contents?: true

Size: 1.03 KB

Versions: 1

Compression:

Stored size: 1.03 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'breathe_in/version'

Gem::Specification.new do |spec|
  spec.name          = 'breathe_in'
  spec.version       = BreatheIn::VERSION
  spec.authors       = ['eric-an']
  spec.email         = ['erican@me.com']

  spec.summary       = %q{AQI scraper gem}
  spec.description   = %q{Check the air quality index (AQI) for a zipcode.}
  spec.homepage      = "https://github.com/eric-an/breathe-in"
  spec.license       = 'MIT'
  spec.executables << 'breathe_in'

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = 'bin'
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.10"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec", "~> 0"
  spec.add_development_dependency "pry"

  spec.add_dependency "nokogiri"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
breathe_in-0.1.0 breathe_in.gemspec