forked from wshihadeh/swarm_orca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
swarm_orca.gemspec
26 lines (21 loc) · 921 Bytes
/
swarm_orca.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
# frozen_string_literal: true
require_relative 'lib/swarm_orca/version'
Gem::Specification.new do |gem|
gem.name = 'swarm_orca'
gem.version = SwarmOrca::VERSION
gem.summary = 'Swarm Orca'
gem.description = 'Orcastraction tool for rails application on swarm with capistrano'
gem.authors = ['Al-waleed Shiahdeh']
gem.email = 'wshihadh@gmail'
gem.homepage = 'https://github.com/wshihadeh/swarm_orca'
gem.files = `git ls-files`.split("\n")
gem.bindir = 'bin'
gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) }
gem.require_paths = ['lib']
gem.add_development_dependency 'bundler', '~> 1.13'
gem.add_development_dependency 'overcommit', '~> 0.47.0'
gem.add_development_dependency 'rake', '~> 13.0'
gem.add_development_dependency 'rubocop', '~> 0.66.0'
gem.add_dependency 'capistrano', '~> 3.2'
gem.add_dependency 'thor'
end