forked from RLovelett/wordpress-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwordpress_deploy.gemspec
More file actions
31 lines (27 loc) · 1.52 KB
/
wordpress_deploy.gemspec
File metadata and controls
31 lines (27 loc) · 1.52 KB
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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/wordpress_deploy/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ['Ryan Lovelett']
gem.email = ['ryan@lovelett.me']
gem.description = %q{Wordpress Deploy provides an elegant DSL in Ruby for modeling and executing your deployments.}
gem.summary = %q{Wordpress Deploy is a RubyGem, written for Linux and Mac OSX, that allows you to easily perform Wordpress deployment operations. It provides you with an elegant DSL in Ruby for modeling your deployments.}
gem.homepage = %q{https://github.com/RLovelett/wordpress-deploy}
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = 'wordpress-deploy'
gem.require_paths = ['lib']
gem.version = WordpressDeploy::VERSION
##
# Gem dependencies
gem.add_dependency 'thor', ['~> 0.18.1']
gem.add_dependency 'colorize', ['~> 0.5.8']
gem.add_dependency 'titleize', ['~> 1.3.0']
gem.add_dependency 'actionpack', ['~> 3.2.13']
gem.add_dependency 'php-serialize_ryan', ['~> 1.1.0']
gem.add_dependency 'mysql2', ['~> 0.3.11']
gem.add_development_dependency 'rake', ['~> 10.0.0']
gem.add_development_dependency 'rspec', ['~> 2.13.0']
gem.add_development_dependency 'guard-rspec', ['~> 2.5.0']
gem.add_development_dependency 'rb-fsevent', ['~> 0.9.1']
end