-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathrest_connection.gemspec
100 lines (95 loc) · 4.01 KB
/
rest_connection.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
97
98
99
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{rest_connection}
s.version = "0.0.23"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Jeremy Deininger"]
s.date = %q{2011-10-26}
s.description = %q{provides rest_connection}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"README.rdoc"
]
s.files = [
"README.rdoc",
"Rakefile",
"VERSION",
"config/rest_api_config.yaml.sample",
"examples/README.txt",
"examples/console.rb",
"examples/cucumber/2mysql_5.x_v2_beta_from_scratch.feature",
"examples/cucumber/step_definitions/deployment_steps.rb",
"examples/cucumber/step_definitions/mysql_steps.rb",
"examples/cucumber/step_definitions/recipe_steps.rb",
"examples/cucumber/step_definitions/spot_check_steps.rb",
"examples/relaunch_deployment.rb",
"examples/right_scale_ec2_instances_api_test.rb",
"lib/rest_connection.rb",
"lib/rest_connection/rightscale/alert_spec.rb",
"lib/rest_connection/rightscale/audit_entry.rb",
"lib/rest_connection/rightscale/credential.rb",
"lib/rest_connection/rightscale/deployment.rb",
"lib/rest_connection/rightscale/ec2_ebs_snapshot.rb",
"lib/rest_connection/rightscale/ec2_ebs_volume.rb",
"lib/rest_connection/rightscale/ec2_elastic_ip.rb",
"lib/rest_connection/rightscale/ec2_security_group.rb",
"lib/rest_connection/rightscale/ec2_server_array.rb",
"lib/rest_connection/rightscale/ec2_ssh_key.rb",
"lib/rest_connection/rightscale/ec2_ssh_key_internal.rb",
"lib/rest_connection/rightscale/executable.rb",
"lib/rest_connection/rightscale/instance.rb",
"lib/rest_connection/rightscale/mc_server.rb",
"lib/rest_connection/rightscale/multi_cloud_image.rb",
"lib/rest_connection/rightscale/multi_cloud_image_cloud_setting_internal.rb",
"lib/rest_connection/rightscale/multi_cloud_image_internal.rb",
"lib/rest_connection/rightscale/right_script.rb",
"lib/rest_connection/rightscale/right_script_internal.rb",
"lib/rest_connection/rightscale/rightscale_api_base.rb",
"lib/rest_connection/rightscale/rightscale_api_gateway.rb",
"lib/rest_connection/rightscale/rightscale_api_internal.rb",
"lib/rest_connection/rightscale/rightscale_api_resources.rb",
"lib/rest_connection/rightscale/rs_internal.rb",
"lib/rest_connection/rightscale/server.rb",
"lib/rest_connection/rightscale/server_internal.rb",
"lib/rest_connection/rightscale/server_template.rb",
"lib/rest_connection/rightscale/server_template_internal.rb",
"lib/rest_connection/rightscale/status.rb",
"lib/rest_connection/rightscale/tag.rb",
"lib/rest_connection/ssh_hax.rb",
"rest_connection.gemspec",
"spec/ec2_server_array_spec.rb",
"spec/ec2_ssh_key_internal_spec.rb",
"spec/image_jockey.rb",
"spec/method_missing_spec.rb",
"spec/right_script_internal.rb",
"spec/rs_internal_spec.rb",
"spec/server_internal_spec.rb",
"spec/server_spec.rb",
"spec/server_template_internal.rb",
"spec/spec_helper.rb",
"spec/tag_spec.rb"
]
s.homepage = %q{http://github.com/jeremyd/rest_connection}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.6.2}
s.summary = %q{lib for restful connections to the rightscale api}
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<activesupport>, ["= 2.3.10"])
s.add_runtime_dependency(%q<net-ssh>, [">= 0"])
s.add_runtime_dependency(%q<json>, [">= 0"])
else
s.add_dependency(%q<activesupport>, ["= 2.3.10"])
s.add_dependency(%q<net-ssh>, [">= 0"])
s.add_dependency(%q<json>, [">= 0"])
end
else
s.add_dependency(%q<activesupport>, ["= 2.3.10"])
s.add_dependency(%q<net-ssh>, [">= 0"])
s.add_dependency(%q<json>, [">= 0"])
end
end