Sha256: c9b39c3646304ef5496f4a2ccbd66bd808b461cd692e5204cfb2e26c1bd94bc5
Contents?: true
Size: 1.26 KB
Versions: 10
Compression:
Stored size: 1.26 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require File.expand_path('../lib/vx/worker/version.rb', __FILE__) Gem::Specification.new do |spec| spec.name = "vx-worker" spec.version = Vx::Worker::VERSION spec.authors = ["Dmitry Galinsky"] spec.email = ["dima.exe@gmail.com"] spec.description = %q{ ci worker } spec.summary = %q{ ci worker } spec.homepage = "" spec.license = "MIT" spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_runtime_dependency 'vx-common', "= #{Vx::Worker::VERSION}" spec.add_runtime_dependency 'vx-message', "= #{Vx::Worker::VERSION}" spec.add_runtime_dependency 'vx-container_connector', "= #{Vx::Worker::VERSION}" spec.add_runtime_dependency 'vx-common-amqp', '~> 0.2.6' spec.add_runtime_dependency 'hashr', '= 0.0.22' spec.add_development_dependency "bundler", "~> 1.3" spec.add_development_dependency "rake" spec.add_development_dependency "rspec" spec.add_development_dependency "rr" end
Version data entries
10 entries across 10 versions & 1 rubygems