forked from capistrano/drupal-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
capdrupal-drupal-deploy.gemspec
35 lines (25 loc) · 1.01 KB
/
capdrupal-drupal-deploy.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = 'capistrano-drupal-deploy'
spec.version = '0.0.2'
spec.license = 'MIT'
spec.authors = [ "Simon Perdrisat", "Gilles Doge" ]
spec.email = '[email protected]'
spec.homepage = %q{https://github.com/capistrano/drupal-deploy}
spec.platform = Gem::Platform::RUBY
spec.description = <<-DESC
A set of tasks for deploying Drupal 7 projects with Capistrano 3 and the help of Drush.
DESC
spec.summary = 'A set of tasks for deploying Drupal projects with Capistrano'
spec.extra_rdoc_files = [
"README.markdown"
]
spec.files = `git ls-files`.split($/)
spec.require_path = 'lib'
spec.add_dependency 'capistrano', '~> 3.2', '>= 3.2.0'
spec.add_dependency 'capistrano-composer', '~> 0.0.6'
spec.add_development_dependency 'bundler', '~> 1.9'
spec.add_development_dependency 'rake', '~> 10.4'
end