Sha256: 9a9165b90502d86b28b77ea48c689d603d09ec269889bdbbe92321b708eeb7cb
Contents?: true
Size: 1.79 KB
Versions: 1
Compression:
Stored size: 1.79 KB
Contents
# frozen_string_literal: true lib = File.expand_path('../lib', __FILE__) # rubocop:disable Style/ExpandPathArguments $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'svcbase/version' # rubocop:disable BlockLength Gem::Specification.new do |spec| spec.name = 'svcbase' spec.version = Svcbase::VERSION spec.authors = ['Joe Nardone'] spec.email = ['jnardone@secureauth.com'] spec.summary = 'Base service code' spec.homepage = 'http://no' # 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'] = 'https://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' spec.add_development_dependency 'climate_control' spec.add_development_dependency 'rack-test' spec.add_development_dependency 'rake' spec.add_development_dependency 'rspec' spec.add_development_dependency 'rubocop' spec.add_development_dependency 'simplecov' spec.add_development_dependency 'simplecov-rcov' spec.add_development_dependency 'timecop' spec.add_runtime_dependency 'activesupport' spec.add_runtime_dependency 'grape' spec.add_runtime_dependency 'http_accept_language' spec.add_runtime_dependency 'i18n' spec.add_runtime_dependency 'rack' spec.add_runtime_dependency 'request_store' spec.add_runtime_dependency 'shortuuid' end # rubocop:enable BlockLength
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
svcbase-0.1.17 | svcbase.gemspec |