Sha256: 5833e9352ed12ae39de69a42842f730acca447403e9e084382e097b7595696c8
Contents?: true
Size: 1.03 KB
Versions: 2
Compression:
Stored size: 1.03 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'atol/version' Gem::Specification.new do |spec| spec.name = 'atol' spec.version = Atol::Version::LIB spec.authors = ['GeorgeGorbanev'] spec.email = ['GeorgeGorbanev@gmail.com'] spec.summary = 'ATOL KaaS client for Ruby' spec.homepage = 'https://github.com/sputnik8/atol-rb' spec.license = 'MIT' spec.required_ruby_version = '>= 2.5.0' 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_dependency 'anyway_config', '~> 1.0' spec.add_development_dependency 'bundler', '~> 1.15' spec.add_development_dependency 'rake', '~> 13.0' spec.add_development_dependency 'rspec', '~> 3.0' spec.add_development_dependency 'rubocop', '~> 0.90' spec.add_development_dependency 'webmock', '~> 3.0' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
atol-0.8.1 | atol-rb.gemspec |
atol-0.7.1 | atol-rb.gemspec |