Sha256: 978bfcf17375a5da38fc57848117b283022f4367dedbe497fb1e69dbdaaeb5a9
Contents?: true
Size: 1.54 KB
Versions: 2
Compression:
Stored size: 1.54 KB
Contents
# coding: utf-8 lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "weatherbot/version" Gem::Specification.new do |spec| spec.name = "weatherbot" spec.version = Weatherbot::VERSION spec.authors = ["Janusz Szubert"] spec.email = ["TheInvalidNonce@gmail.com"] spec.summary = %q{A Ruby CLI wrapper using the OpenWeatherMap.org API} spec.description = %q{A Ruby CLI wrapper using the OpenWeatherMap.org API with interactive features that allow you to search any location's current weather and 3 day forecast.} spec.homepage = "https://github.com/TheInvalidNonce/weatherbot-cli-app" spec.license = "MIT" # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' # to allow pushing to a single host or delete this section to allow pushing to any host. # if spec.respond_to?(:metadata) # spec.metadata["allowed_push_host"] = ": Set to 'http://mygemserver.com'" # else # raise "RubyGems 2.0 or newer is required to protect against " \ # "public gem pushes." # end spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = "bin" spec.executables = ['weatherbot'] spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.15" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" spec.add_development_dependency "httparty", "~> 0.1" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
weatherbot-0.1.3.2 | weatherbot.gemspec |
weatherbot-0.1.3.1 | weatherbot.gemspec |