forked from pygmystack/pygmy-legacy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pygmy.gemspec
34 lines (30 loc) · 1.45 KB
/
pygmy.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'pygmy/version'
Gem::Specification.new do |s|
s.name = 'pygmy'
s.version = Pygmy::VERSION
s.date = Pygmy::DATE
s.summary = 'pygmy provides the required servies to run the ' \
'amazee.io Drupal local development environment on linux.'
s.description = 'To fully and easy run a local Drupal development system you ' \
'need more then just a docker container with the Drupal running. ' \
'Default development workflows involves running multiple sites at the same time, ' \
'interacting with other services which are authenticated via ssh and more.' \
'Pygmy makes usre that the required Docker containers are started and that you' \
'comfortably can access the Drupal Containers just via the browser.'
s.authors = ['Michael Schmid']
s.email = '[email protected]'
s.files = ['lib/pygmy.rb'] + Dir['lib/pygmy/**/*']
s.homepage = 'https://github.com/amazeeio/pygmy'
s.license = 'MIT'
s.executables << 'pygmy'
s.add_runtime_dependency 'colorize', '~> 0.7'
s.add_runtime_dependency 'thor', '~> 0.19'
s.add_runtime_dependency 'ptools', '~> 1.3'
s.add_development_dependency 'rspec', '~> 3.4'
s.add_development_dependency 'rake', '~> 10.5'
s.add_development_dependency 'byebug', '~> 8.2'
s.add_development_dependency 'codeclimate-test-reporter', '~> 0.5'
end