pauldowman / ec2onrails

EC2 on Rails - Deploy a Ruby on Rails app on EC2 in five minutes

ec2onrails / echoe_config.rb
100644 28 lines (21 sloc) 0.902 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
require "./lib/ec2onrails/version"
 
Echoe.new('ec2onrails', Ec2onrails::VERSION::STRING.dup) do |p|
  p.changelog = "CHANGELOG"
 
  p.author = ['Paul Dowman', 'Adam Greene']
  p.email = "paul@pauldowman.com"
 
  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