Sha256: 6e319cf2838af90d4c0a62586cfb2da2978258614e1fe527f5167e979ac04bb2

Contents?: true

Size: 1.53 KB

Versions: 9

Compression:

Stored size: 1.53 KB

Contents

# frozen_string_literal: true

$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.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 'timecop'
  s.add_development_dependency 'webmock'

  s.license = 'GPL-3.0'
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
lhc-12.3.0 lhc.gemspec
lhc-12.2.1 lhc.gemspec
lhc-12.2.0 lhc.gemspec
lhc-12.1.3 lhc.gemspec
lhc-12.1.2 lhc.gemspec
lhc-12.1.1 lhc.gemspec
lhc-12.1.0 lhc.gemspec
lhc-12.0.3 lhc.gemspec
lhc-12.0.2 lhc.gemspec