-
Notifications
You must be signed in to change notification settings - Fork 1
/
s3.gemspec
27 lines (21 loc) · 873 Bytes
/
s3.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
# -*- coding: utf-8 -*-
lib = File.expand_path("../lib/", __FILE__)
$:.unshift lib unless $:.include?(lib)
require "s3/version"
Gem::Specification.new do |s|
s.name = "s3"
s.version = S3::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Jakub Kuźma"]
s.email = "[email protected]"
s.homepage = "http://jah.pl/projects/s3.html"
s.summary = "Library for accessing S3 objects and buckets, with command line tool"
s.description = "S3 library provides access to Amazon's Simple Storage Service. It supports both: European and US buckets through REST API."
s.required_rubygems_version = ">= 1.3.6"
s.add_dependency "trollop"
s.add_dependency "proxies"
s.add_development_dependency "test-unit", ">= 2.0"
s.add_development_dependency "mocha"
s.files = Dir.glob("{bin,extra,lib}/**/*") + %w(LICENSE README.rdoc)
s.executables = ["s3"]
end