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://github.com/grempe/amazon-ec2
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
6e318691 » grempe 2009-06-06 Converted to technicalpickl... 1 # -*- encoding: utf-8 -*-
a5a88323 » grempe 2008-04-25 Adding gemspec created with... 2
5b3a2c0a » grempe 2008-04-25 MAJOR cleanup of RubyForge ... 3 Gem::Specification.new do |s|
6e318691 » grempe 2009-06-06 Converted to technicalpickl... 4 s.name = %q{amazon-ec2}
8578bd90 » grempe 2009-06-11 Regenerated gemspec for ver... 5 s.version = "0.4.5"
f30da5c4 » grempe 2008-04-25 Updated gemspec and simplif... 6
6e318691 » grempe 2009-06-06 Converted to technicalpickl... 7 s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8 s.authors = ["Glenn Rempe"]
97796041 » grempe 2009-06-13 Updated gemspec for perfools. 9 s.date = %q{2009-06-13}
6e318691 » grempe 2009-06-06 Converted to technicalpickl... 10 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.}
11 s.email = %q{glenn@rempe.us}
97796041 » grempe 2009-06-13 Updated gemspec for perfools. 12 s.executables = ["ec2-gem-example.rb", "ec2-gem-profile.rb", "ec2sh", "setup.rb"]
6e318691 » grempe 2009-06-06 Converted to technicalpickl... 13 s.extra_rdoc_files = [
14 "ChangeLog",
15 "LICENSE",
16 "README.rdoc"
17 ]
18 s.files = [
19 ".gitignore",
8a099785 » grempe 2009-06-06 Regenerated gemspec for ver... 20 "ChangeLog",
6e318691 » grempe 2009-06-06 Converted to technicalpickl... 21 "LICENSE",
22 "README.rdoc",
23 "Rakefile",
24 "VERSION",
25 "amazon-ec2.gemspec",
26 "bin/ec2-gem-example.rb",
97796041 » grempe 2009-06-13 Updated gemspec for perfools. 27 "bin/ec2-gem-profile.rb",
6e318691 » grempe 2009-06-06 Converted to technicalpickl... 28 "bin/ec2sh",
29 "bin/setup.rb",
06df99e5 » grempe 2009-06-11 Added Rip dep.rip file (hel... 30 "deps.rip",
6e318691 » grempe 2009-06-06 Converted to technicalpickl... 31 "lib/EC2.rb",
32 "lib/EC2/availability_zones.rb",
33 "lib/EC2/console.rb",
34 "lib/EC2/elastic_ips.rb",
35 "lib/EC2/exceptions.rb",
36 "lib/EC2/image_attributes.rb",
37 "lib/EC2/images.rb",
38 "lib/EC2/instances.rb",
39 "lib/EC2/keypairs.rb",
40 "lib/EC2/products.rb",
41 "lib/EC2/responses.rb",
42 "lib/EC2/security_groups.rb",
43 "lib/EC2/snapshots.rb",
44 "lib/EC2/volumes.rb",
97796041 » grempe 2009-06-13 Updated gemspec for perfools. 45 "perftools/ec2prof",
46 "perftools/ec2prof-results.dot",
47 "perftools/ec2prof-results.txt",
48 "perftools/ec2prof.symbols",
6e318691 » grempe 2009-06-06 Converted to technicalpickl... 49 "test/test_EC2.rb",
50 "test/test_EC2_availability_zones.rb",
51 "test/test_EC2_console.rb",
52 "test/test_EC2_elastic_ips.rb",
53 "test/test_EC2_image_attributes.rb",
54 "test/test_EC2_images.rb",
55 "test/test_EC2_instances.rb",
56 "test/test_EC2_keypairs.rb",
57 "test/test_EC2_products.rb",
58 "test/test_EC2_responses.rb",
59 "test/test_EC2_s3_xmlsimple.rb",
60 "test/test_EC2_security_groups.rb",
61 "test/test_EC2_snapshots.rb",
62 "test/test_EC2_volumes.rb",
63 "test/test_helper.rb",
64 "wsdl/2007-08-29.ec2.wsdl",
65 "wsdl/2008-02-01.ec2.wsdl",
66 "wsdl/2008-05-05.ec2.wsdl",
67 "wsdl/2008-12-01.ec2.wsdl"
68 ]
69 s.homepage = %q{http://github.com/grempe/amazon-ec2}
5b3a2c0a » grempe 2008-04-25 MAJOR cleanup of RubyForge ... 70 s.rdoc_options = ["--quiet", "--title", "amazon-ec2 documentation", "--opname", "index.html", "--line-numbers", "--main", "README.rdoc", "--inline-source"]
6e318691 » grempe 2009-06-06 Converted to technicalpickl... 71 s.require_paths = ["lib"]
72 s.rubyforge_project = %q{amazon-ec2}
73 s.rubygems_version = %q{1.3.4}
74 s.summary = %q{Amazon EC2 Ruby Gem}
75 s.test_files = [
76 "test/test_EC2.rb",
77 "test/test_EC2_availability_zones.rb",
78 "test/test_EC2_console.rb",
79 "test/test_EC2_elastic_ips.rb",
80 "test/test_EC2_image_attributes.rb",
81 "test/test_EC2_images.rb",
82 "test/test_EC2_instances.rb",
83 "test/test_EC2_keypairs.rb",
84 "test/test_EC2_products.rb",
85 "test/test_EC2_responses.rb",
86 "test/test_EC2_s3_xmlsimple.rb",
87 "test/test_EC2_security_groups.rb",
88 "test/test_EC2_snapshots.rb",
89 "test/test_EC2_volumes.rb",
90 "test/test_helper.rb"
91 ]
5b3a2c0a » grempe 2008-04-25 MAJOR cleanup of RubyForge ... 92
6e318691 » grempe 2009-06-06 Converted to technicalpickl... 93 if s.respond_to? :specification_version then
94 current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
95 s.specification_version = 3
38637ea0 » grempe 2008-08-20 Better install instructions... 96
6e318691 » grempe 2009-06-06 Converted to technicalpickl... 97 if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
06df99e5 » grempe 2009-06-11 Added Rip dep.rip file (hel... 98 s.add_runtime_dependency(%q<xml-simple>, [">= 1.0.12"])
99 s.add_development_dependency(%q<mocha>, [">= 0.9.5"])
100 s.add_development_dependency(%q<test-spec>, [">= 0.10.0"])
6e318691 » grempe 2009-06-06 Converted to technicalpickl... 101 s.add_development_dependency(%q<rcov>, [">= 0.8.1.2.0"])
97796041 » grempe 2009-06-13 Updated gemspec for perfools. 102 s.add_development_dependency(%q<perftools.rb>, ["= 0.1.6"])
6e318691 » grempe 2009-06-06 Converted to technicalpickl... 103 else
06df99e5 » grempe 2009-06-11 Added Rip dep.rip file (hel... 104 s.add_dependency(%q<xml-simple>, [">= 1.0.12"])
105 s.add_dependency(%q<mocha>, [">= 0.9.5"])
106 s.add_dependency(%q<test-spec>, [">= 0.10.0"])
6e318691 » grempe 2009-06-06 Converted to technicalpickl... 107 s.add_dependency(%q<rcov>, [">= 0.8.1.2.0"])
97796041 » grempe 2009-06-13 Updated gemspec for perfools. 108 s.add_dependency(%q<perftools.rb>, ["= 0.1.6"])
6e318691 » grempe 2009-06-06 Converted to technicalpickl... 109 end
110 else
06df99e5 » grempe 2009-06-11 Added Rip dep.rip file (hel... 111 s.add_dependency(%q<xml-simple>, [">= 1.0.12"])
112 s.add_dependency(%q<mocha>, [">= 0.9.5"])
113 s.add_dependency(%q<test-spec>, [">= 0.10.0"])
6e318691 » grempe 2009-06-06 Converted to technicalpickl... 114 s.add_dependency(%q<rcov>, [">= 0.8.1.2.0"])
97796041 » grempe 2009-06-13 Updated gemspec for perfools. 115 s.add_dependency(%q<perftools.rb>, ["= 0.1.6"])
6e318691 » grempe 2009-06-06 Converted to technicalpickl... 116 end
a5a88323 » grempe 2008-04-25 Adding gemspec created with... 117 end