Sha256: 18a638587a98cfbd85c9f9e02ab81bd9238cbaec0899d114e7f3c5afa0bd2d34
Contents?: true
Size: 1.58 KB
Versions: 1
Compression:
Stored size: 1.58 KB
Contents
# frozen_string_literal: true # coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'phone_sites/version' Gem::Specification.new do |spec| spec.name = "phone_sites" spec.version = PhoneSites::VERSION spec.authors = ["Igor Pavlov"] spec.email = ["gophan1992@gmail.com"] spec.summary = "Gem for web-scraping data for phone sites" spec.description = "Description" spec.homepage = "http://bitbucket.org/BEaStia/phone_sites/" 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'] = "http://rubygems.org" #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 = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.12" spec.add_development_dependency "rake", "~> 10.0" spec.add_runtime_dependency "faraday", "~> 0.9.2" spec.add_development_dependency "minitest", "~>5.9.0", ">= 5.9.0" spec.add_runtime_dependency "nokogiri", "~>1.6.8", ">= 1.6.8" spec.add_development_dependency "rubocop", '~> 0' spec.add_runtime_dependency "memoist", '~> 0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
phone_sites-0.0.4 | PhoneSites.gemspec |