Sha256: f39bb80726a7121a7f040cb5c08a8fbca38d9a5e03fc1211311cccda47dde95b

Contents?: true

Size: 1.09 KB

Versions: 8

Compression:

Stored size: 1.09 KB

Contents

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

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

# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
  s.name        = "lhs"
  s.version     = LHS::VERSION
  s.authors     = ['https://github.com/local-ch/lhs/graphs/contributors']
  s.email       = ['ws-operations@local.ch']
  s.homepage    = 'https://github.com/local-ch/lhs'
  s.summary     = 'Rails gem providing an easy, active-record-like interface to use http backend services'
  s.description = s.summary

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

  s.requirements << 'Ruby >= 1.9.2'
  s.required_ruby_version = '>= 1.9.2'

  s.add_dependency 'lhc', '>= 1.2.0'
  s.add_dependency 'lhc-core-interceptors', '>= 0.1.0'

  s.add_development_dependency 'rspec-rails', '>= 3.0.0'
  s.add_development_dependency 'rails', '>= 4.0.0'
  s.add_development_dependency 'webmock'
  s.add_development_dependency 'geminabox'
  s.add_development_dependency 'pry'
  s.add_development_dependency 'ciderizer'
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
lhs-3.1.3 lhs.gemspec
lhs-3.1.1 lhs.gemspec
lhs-3.1.0 lhs.gemspec
lhs-3.0.5 lhs.gemspec
lhs-3.0.4 lhs.gemspec
lhs-3.0.3 lhs.gemspec
lhs-3.0.2 lhs.gemspec
lhs-3.0.1 lhs.gemspec