forked from aemadrid/tiki_torch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tiki_torch.gemspec
39 lines (34 loc) · 1.5 KB
/
tiki_torch.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'tiki/torch/version'
Gem::Specification.new do |s|
s.name = 'tiki_torch'
current_branch = `git branch --remote --contains | sed "s|[[:space:]]*origin/||"`.strip
branch_commit = `git rev-parse HEAD`.strip[0..6]
s.version = current_branch == 'master' ? Tiki::Torch::VERSION : "#{Tiki::Torch::VERSION}-#{branch_commit}"
s.authors = ['Adrian Madrid']
s.email = ['aemadrid@gmail.com']
s.description = %q{Inter-service communication library for Ruby}
s.summary = %q{Tiki Torch is a Ruby asynchronous communication library through Amazon SQS.}
s.homepage = ''
s.license = 'MIT'
s.metadata['allowed_push_host'] = 'https://rubygems.pkg.github.com/acima-credit'
s.files = `git ls-files -z`.split("\x0")
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ['lib']
s.add_dependency 'aws-sdk-sqs', '~> 1'
s.add_dependency 'concurrent-ruby', '~> 1.0'
s.add_dependency 'concurrent-ruby-edge'
s.add_dependency 'lifeguard', '0.3.0'
s.add_dependency 'multi_json'
s.add_dependency 'virtus'
s.add_dependency 'pry'
s.add_dependency 'colorize'
s.add_development_dependency 'rspec', '~> 3.0'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'rake'
s.add_development_dependency 'fake_sqs'
s.add_development_dependency 'rubocop'
end