forked from welaika/wordmove
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wordmove.gemspec
39 lines (31 loc) · 1.43 KB
/
wordmove.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
38
39
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/wordmove/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Stefano Verna", "Ju Liu"]
gem.email = ["stefano.verna@welaika.com", "ju.liu@welaika.com"]
gem.description = %q{Wordmove deploys your WordPress websites at the speed of light.}
gem.summary = %q{Wordmove, Capistrano for Wordpress}
gem.homepage = "https://github.com/welaika/wordmove"
gem.license = "MIT"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "wordmove"
gem.require_paths = ["lib"]
gem.version = Wordmove::VERSION
gem.add_dependency "colored"
gem.add_dependency "rake"
gem.add_dependency "thor"
gem.add_dependency "activesupport"
gem.add_dependency "i18n"
gem.add_dependency "photocopier", "~> 0.0.10"
gem.add_dependency "escape"
gem.add_development_dependency "rspec", '< 3'
gem.post_install_message = <<-EOF
============================================================================
Beware! From version 1.0, we have changed the wordmove flags' behaviour:
they used to tell wordmove what to _skip_, now they tell what to _include_.
Read `wordmove help` for more info.
============================================================================
EOF
end