public
Description: A Ruby Gem that gives you full access to several of the Amazon Web Services API from your Ruby/Ruby on Rails apps
Homepage: http://amazon-ec2.rubyforge.org/
Clone URL: git://github.com/grempe/amazon-ec2.git
Click here to lend your support to: amazon-ec2 and make a donation at www.pledgie.com !
grempe (author)
Sat Jun 13 11:16:56 -0700 2009
commit  97796041091a7ef43fdaffa2e36e71354b9437a3
tree    ef2e6460d65fb844a70aacee080656e308a65eb3
parent  bf7b7a80c370a7ee37a489f678b28b2534fad89b
amazon-ec2 / amazon-ec2.gemspec
100644 118 lines (113 sloc) 4.129 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{amazon-ec2}
  s.version = "0.4.5"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Glenn Rempe"]
  s.date = %q{2009-06-13}
  s.description = %q{An interface library that allows Ruby applications to easily connect to the HTTP 'Query API' for the Amazon Web Services Elastic Compute Cloud (EC2) and manipulate cloud servers.}
  s.email = %q{glenn@rempe.us}
  s.executables = ["ec2-gem-example.rb", "ec2-gem-profile.rb", "ec2sh", "setup.rb"]
  s.extra_rdoc_files = [
    "ChangeLog",
     "LICENSE",
     "README.rdoc"
  ]
  s.files = [
    ".gitignore",
     "ChangeLog",
     "LICENSE",
     "README.rdoc",
     "Rakefile",
     "VERSION",
     "amazon-ec2.gemspec",
     "bin/ec2-gem-example.rb",
     "bin/ec2-gem-profile.rb",
     "bin/ec2sh",
     "bin/setup.rb",
     "deps.rip",
     "lib/EC2.rb",
     "lib/EC2/availability_zones.rb",
     "lib/EC2/console.rb",
     "lib/EC2/elastic_ips.rb",
     "lib/EC2/exceptions.rb",
     "lib/EC2/image_attributes.rb",
     "lib/EC2/images.rb",
     "lib/EC2/instances.rb",
     "lib/EC2/keypairs.rb",
     "lib/EC2/products.rb",
     "lib/EC2/responses.rb",
     "lib/EC2/security_groups.rb",
     "lib/EC2/snapshots.rb",
     "lib/EC2/volumes.rb",
     "perftools/ec2prof",
     "perftools/ec2prof-results.dot",
     "perftools/ec2prof-results.txt",
     "perftools/ec2prof.symbols",
     "test/test_EC2.rb",
     "test/test_EC2_availability_zones.rb",
     "test/test_EC2_console.rb",
     "test/test_EC2_elastic_ips.rb",
     "test/test_EC2_image_attributes.rb",
     "test/test_EC2_images.rb",
     "test/test_EC2_instances.rb",
     "test/test_EC2_keypairs.rb",
     "test/test_EC2_products.rb",
     "test/test_EC2_responses.rb",
     "test/test_EC2_s3_xmlsimple.rb",
     "test/test_EC2_security_groups.rb",
     "test/test_EC2_snapshots.rb",
     "test/test_EC2_volumes.rb",
     "test/test_helper.rb",
     "wsdl/2007-08-29.ec2.wsdl",
     "wsdl/2008-02-01.ec2.wsdl",
     "wsdl/2008-05-05.ec2.wsdl",
     "wsdl/2008-12-01.ec2.wsdl"
  ]
  s.homepage = %q{http://github.com/grempe/amazon-ec2}
  s.rdoc_options = ["--quiet", "--title", "amazon-ec2 documentation", "--opname", "index.html", "--line-numbers", "--main", "README.rdoc", "--inline-source"]
  s.require_paths = ["lib"]
  s.rubyforge_project = %q{amazon-ec2}
  s.rubygems_version = %q{1.3.4}
  s.summary = %q{Amazon EC2 Ruby Gem}
  s.test_files = [
    "test/test_EC2.rb",
     "test/test_EC2_availability_zones.rb",
     "test/test_EC2_console.rb",
     "test/test_EC2_elastic_ips.rb",
     "test/test_EC2_image_attributes.rb",
     "test/test_EC2_images.rb",
     "test/test_EC2_instances.rb",
     "test/test_EC2_keypairs.rb",
     "test/test_EC2_products.rb",
     "test/test_EC2_responses.rb",
     "test/test_EC2_s3_xmlsimple.rb",
     "test/test_EC2_security_groups.rb",
     "test/test_EC2_snapshots.rb",
     "test/test_EC2_volumes.rb",
     "test/test_helper.rb"
  ]
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 3
 
    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
      s.add_runtime_dependency(%q<xml-simple>, [">= 1.0.12"])
      s.add_development_dependency(%q<mocha>, [">= 0.9.5"])
      s.add_development_dependency(%q<test-spec>, [">= 0.10.0"])
      s.add_development_dependency(%q<rcov>, [">= 0.8.1.2.0"])
      s.add_development_dependency(%q<perftools.rb>, ["= 0.1.6"])
    else
      s.add_dependency(%q<xml-simple>, [">= 1.0.12"])
      s.add_dependency(%q<mocha>, [">= 0.9.5"])
      s.add_dependency(%q<test-spec>, [">= 0.10.0"])
      s.add_dependency(%q<rcov>, [">= 0.8.1.2.0"])
      s.add_dependency(%q<perftools.rb>, ["= 0.1.6"])
    end
  else
    s.add_dependency(%q<xml-simple>, [">= 1.0.12"])
    s.add_dependency(%q<mocha>, [">= 0.9.5"])
    s.add_dependency(%q<test-spec>, [">= 0.10.0"])
    s.add_dependency(%q<rcov>, [">= 0.8.1.2.0"])
    s.add_dependency(%q<perftools.rb>, ["= 0.1.6"])
  end
end