forked from FreedomBen/dory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dory.gemspec
37 lines (32 loc) · 1.47 KB
/
dory.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'dory/version'
Gem::Specification.new do |s|
s.name = 'dory'
s.version = Dory.version
s.date = Dory.date
s.summary = 'Your development proxy for Docker'
s.description = 'Dory lets you forget about IP addresses and ' \
'port numbers while you are developing your application. ' \
'Through the magic of local DNS and a reverse proxy, you ' \
'can access your app at the domain of your choosing. For ' \
'example, http://myapp.docker or http://this-is-a-really-long-name.but-its-cool-cause-i-like-it. ' \
'Check it out on github at: https://github.com/FreedomBen/dory'
s.authors = ['Ben Porter']
s.email = 'BenjaminPorter86@gmail.com'
s.files = ['lib/dory.rb'] + Dir['lib/dory/**/*']
s.homepage = 'https://github.com/FreedomBen/dory'
s.license = 'MIT'
s.required_ruby_version = '>= 2.1.0'
s.executables << 'dory'
s.add_runtime_dependency 'colorize', '~> 0.8'
s.add_runtime_dependency 'thor', '~> 0.20'
s.add_runtime_dependency 'ptools', '~> 1.3'
s.add_runtime_dependency 'activesupport', '>= 5.2', '< 7.0'
s.add_development_dependency 'rspec', '~> 3.8'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'byebug', '~> 10.0'
s.add_development_dependency 'codeclimate-test-reporter', '~> 0.6'
s.add_development_dependency 'rubocop', '~> 0.58'
end