-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby-aws.gemspec
More file actions
31 lines (24 loc) · 1.33 KB
/
ruby-aws.gemspec
File metadata and controls
31 lines (24 loc) · 1.33 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
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'ruby-aws/version'
Gem::Specification.new do |s|
s.name = "ruby-aws"
s.rubyforge_project = "ruby-aws"
s.version = RubyAWS::VERSION
s.platform = 'ruby'
s.authors = ["David J Parrott"]
s.email = ["ruby-aws-develop@rubyforge.org"]
s.description = "Libraries for Amazon Web Services (ruby-aws) is a set of libraries and tools designed to make it easier for you to build solutions leveraging Amazon Web Services like Amazon Mechanical Turk. The goals of the libraries are: * To abstract you from the \"muck\" of using web services * To simplify using the various Amazon Web Service APIs * To allow you to focus more on solving the business problem and less on managing technical details"
s.bindir = 'bin'
s.has_rdoc = true
s.rdoc_options = ['--main', 'README.rdoc']
s.executables = ['ruby-aws']
s.extra_rdoc_files = %w(History.txt LICENSE.txt NOTICE.txt)
s.files = Dir.glob("{bin,lib,samples,test}/**/*") + s.extra_rdoc_files + %w(README.rdoc)
s.test_files = Dir.glob("test/**/")
s.homepage = "http://rubyforge.org/projects/ruby-aws/"
s.require_paths = ["lib"]
s.rubygems_version = "1.3.7"
s.summary = "Ruby libraries for working with Amazon Web Services ( Mechanical Turk )"
s.add_dependency 'highline', ['>= 1.2.7']
end