Sha256: a6e668841ff78a0d1260a1828d7a349ccfc2e8633319a6678433d2234029dee1

Contents?: true

Size: 1.49 KB

Versions: 9

Compression:

Stored size: 1.49 KB

Contents

$LOAD_PATH.push File.expand_path("../lib", __FILE__)

# Maintain your gem's version:
require "lhc/version"

# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
  s.name        = "lhc"
  s.version     = LHC::VERSION
  s.authors     = ['https://github.com/local-ch/lhc/contributors']
  s.email       = ['web@localsearch.ch']
  s.homepage    = 'https://github.com/local-ch/lhc'
  s.summary     = 'Advanced HTTP Client for Ruby, fueled with interceptors'
  s.description = 'LHC is an extended/advanced HTTP client. Implementing basic http-communication enhancements like interceptors, exception handling, format handling, accessing response data, configuring endpoints and placeholders and fully compatible, RFC-compliant URL-template support.'

  s.files        = `git ls-files`.split("\n")
  s.test_files   = `git ls-files -- spec/*`.split("\n")
  s.require_paths = ['lib']

  s.requirements << 'Ruby >= 2.0.0'
  s.required_ruby_version = '>= 2.3.0'

  s.add_dependency 'activesupport', '>= 4.2'
  s.add_dependency 'addressable'
  s.add_dependency 'typhoeus', '>= 0.11'

  s.add_development_dependency 'geminabox'
  s.add_development_dependency 'prometheus-client', '~> 0.7.1'
  s.add_development_dependency 'pry'
  s.add_development_dependency 'rails', '~> 4.2'
  s.add_development_dependency 'rspec-rails', '>= 3.0.0'
  s.add_development_dependency 'rubocop', '~> 0.57.1'
  s.add_development_dependency 'rubocop-rspec', '~> 1.26.0'
  s.add_development_dependency 'webmock'

  s.license = 'GPL-3'
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
lhc-10.1.2 lhc.gemspec
lhc-10.1.1 lhc.gemspec
lhc-10.1.0 lhc.gemspec
lhc-10.0.2 lhc.gemspec
lhc-9.4.4 lhc.gemspec
lhc-10.0.1 lhc.gemspec
lhc-10.0.0 lhc.gemspec
lhc-9.4.3 lhc.gemspec
lhc-9.4.2 lhc.gemspec