-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcapistrano-wp.gemspec
97 lines (92 loc) · 3.81 KB
/
capistrano-wp.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
# stub: capistrano-wp 0.5.0 ruby lib
Gem::Specification.new do |s|
s.name = "capistrano-wp"
s.version = "0.5.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib"]
s.authors = ["Crowd Favorite"]
s.date = "2014-10-22"
s.description = "Recipes for deploying and maintaining remote WordPress installations with\nCapistrano. Pulls in WordPress from SVN, optionally using a local or\nremote cache, and supports a number of common operations and tasks towards\nthe care and feeding of sites that may not be 100% maintained through\nversion control.\n"
s.executables = ["capify-wp"]
s.extra_rdoc_files = [
"LICENSE.txt",
"README.md"
]
s.files = [
".document",
"Gemfile",
"Gemfile.lock",
"LICENSE.txt",
"README.md",
"Rakefile",
"VERSION",
"bin/capify-wp",
"capistrano-wp.gemspec",
"doc/examples/Capfile",
"doc/examples/config/deploy.rb",
"doc/examples/config/deploy/production.rb",
"doc/examples/config/deploy/staging.rb",
"doc/examples/config/staging-local-config.php",
"lib/capistrano-wp.rb",
"lib/capistrano/crowdfavorite/wordpress.rb",
"lib/capistrano/recipes/deploy/scm/git-enhanced.rb",
"lib/capistrano/templates/Capfile",
"lib/capistrano/templates/config/deploy.rb",
"lib/capistrano/templates/config/deploy/production.rb",
"lib/crowdfavorite.rb",
"lib/crowdfavorite/support/capistrano_extensions.rb",
"lib/crowdfavorite/support/namespace.rb",
"lib/crowdfavorite/tasks.rb",
"lib/crowdfavorite/tasks/localchanges.rb",
"lib/crowdfavorite/tasks/wordpress.rb",
"lib/crowdfavorite/version.rb",
"lib/crowdfavorite/wordpress.rb",
"spec/.rspec",
"spec/capistrano-wp_spec.rb",
"spec/localchanges_spec.rb",
"spec/spec_helper.rb",
"spec/support/capistrano.rb"
]
s.homepage = "http://github.com/crowdfavorite/gem-capistrano-wp"
s.licenses = ["Apache License version 2"]
s.rubygems_version = "2.2.2"
s.summary = "Crowd Favorite WordPress Capistrano recipes"
if s.respond_to? :specification_version then
s.specification_version = 4
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<capistrano>, ["~> 2.15.3"])
s.add_runtime_dependency(%q<capistrano-ext>, ["~> 1.2.1"])
s.add_runtime_dependency(%q<railsless-deploy>, ["~> 1.1.2"])
s.add_runtime_dependency(%q<erubis>, ["~> 2.7.0"])
s.add_development_dependency(%q<rspec>, ["~> 2.11"])
s.add_development_dependency(%q<bundler>, ["~> 1.0"])
s.add_development_dependency(%q<jeweler>, ["~> 1.8"])
s.add_development_dependency(%q<simplecov>, [">= 0"])
s.add_development_dependency(%q<capistrano-spec>, [">= 0"])
else
s.add_dependency(%q<capistrano>, ["~> 2.15.3"])
s.add_dependency(%q<capistrano-ext>, ["~> 1.2.1"])
s.add_dependency(%q<railsless-deploy>, ["~> 1.1.2"])
s.add_dependency(%q<erubis>, ["~> 2.7.0"])
s.add_dependency(%q<rspec>, ["~> 2.11"])
s.add_dependency(%q<bundler>, ["~> 1.0"])
s.add_dependency(%q<jeweler>, ["~> 1.8"])
s.add_dependency(%q<simplecov>, [">= 0"])
s.add_dependency(%q<capistrano-spec>, [">= 0"])
end
else
s.add_dependency(%q<capistrano>, ["~> 2.15.3"])
s.add_dependency(%q<capistrano-ext>, ["~> 1.2.1"])
s.add_dependency(%q<railsless-deploy>, ["~> 1.1.2"])
s.add_dependency(%q<erubis>, ["~> 2.7.0"])
s.add_dependency(%q<rspec>, ["~> 2.11"])
s.add_dependency(%q<bundler>, ["~> 1.0"])
s.add_dependency(%q<jeweler>, ["~> 1.8"])
s.add_dependency(%q<simplecov>, [">= 0"])
s.add_dependency(%q<capistrano-spec>, [">= 0"])
end
end