Sha256: 7825c894347bade31631b65064be6cdc597ecadb12cb22c538a2930a4d883a5f
Contents?: true
Size: 1.31 KB
Versions: 2
Compression:
Stored size: 1.31 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'pm_25/version' Gem::Specification.new do |spec| spec.name = 'pm_25' spec.version = PM25::VERSION spec.authors = ['Jakukyo Friel'] spec.email = ['weakish@gmail.com'] spec.summary = %q{Fetch PM 2.5 data in China.} spec.description = %q{A Ruby wrapper for pm25.in API and other PM 2.5 related utility functions.} spec.homepage = 'https://github.com/weakish/pm_25' spec.license = 'MIT' spec.metadata = { 'repository' => 'https://github.com/weakish/pm_25.git', 'documentation' => 'http://www.rubydoc.info/gems/pm_25/', 'issues' => 'https://github.com/weakish/pm_25/issues', 'wiki' => 'https://github.com/weakish/pm_25/wiki' } spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ['lib'] spec.add_runtime_dependency 'nokogiri', '~> 1.6' spec.add_runtime_dependency 'rest_client', '~> 1.8' spec.add_runtime_dependency 'time-lord', '~> 1.0' spec.add_development_dependency 'bundler', '~> 1.7' spec.add_development_dependency 'rake', '~> 10.0' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
pm_25-0.0.2 | pm_25.gemspec |
pm_25-0.0.1 | pm_25.gemspec |