Sha256: e2550a35da77668ef0797ef3c775bb069ef8dafaad49fbc3c101450c226f80f5

Contents?: true

Size: 1.91 KB

Versions: 3

Compression:

Stored size: 1.91 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   = "This gem is for scraping data and organize workflow without storing something in databases.
    Usage: ```PhoneSites::GsmArena::Connection.get_manufacturers``` will return list of manufacturers.
    Then you can call ```manufacturer.models``` to get list of its models. Each model has method ```info``` that
    takes model data from site with 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

3 entries across 3 versions & 1 rubygems

Version Path
phone_sites-0.1.0 PhoneSites.gemspec
phone_sites-0.0.5 PhoneSites.gemspec
phone_sites-0.0.5a PhoneSites.gemspec