forked from pauldowman/ec2onrails
-
Notifications
You must be signed in to change notification settings - Fork 1
/
echoe_config.rb
27 lines (21 loc) · 902 Bytes
/
echoe_config.rb
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
require "./lib/ec2onrails/version"
Echoe.new('ec2onrails', Ec2onrails::VERSION::STRING.dup) do |p|
p.changelog = "CHANGELOG"
p.author = ['Paul Dowman', 'Adam Greene']
p.email = "[email protected]"
p.summary = <<-DESC.strip.gsub(/\n\s+/, " ")
Client-side libraries (Capistrano tasks) for managing and
deploying to EC2 on Rails servers.
DESC
#OTHER helpful options
# p.install_message = "perhaps telling them where to find the example docs?"
# p.rdoc_pattern
p.url = "http://ec2onrails.rubyforge.org"
p.need_zip = true
p.rdoc_pattern = /^(lib|README.textile|CHANGELOG)/
p.dependencies = [
'capistrano >=2.4.3',
'archive-tar-minitar >=0.5.2',
'optiflag >=0.6.5']
p.development_dependencies = ['rake >=0.7.1']
end