-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathradosgw-s3.gemspec
33 lines (28 loc) · 1.43 KB
/
radosgw-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
28
29
30
31
32
33
# -*- encoding: utf-8 -*-
# Load version requiring the canonical "s3/version", otherwise Ruby will think
# is a different file and complaint about a double declaration of S3::VERSION.
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require "s3/version"
Gem::Specification.new do |s|
s.name = "radosgw-s3"
s.version = S3::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Thomas Alrin, Kishorekumar Neelamegam, Rajthilak, Kuba Kuźma"]
s.homepage = "http://github.com/megamsys/radosgw-s3"
s.summary = "Library for accessing ceph objects and buckets"
s.description = "radosgw-s3 library provides access to your ceph-radosgw. It supports both: radosgw user creation and bucket operation using REST API."
s.license = "Apache V2"
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "s3"
s.add_dependency "proxies", "~> 0.2.0"
s.add_dependency "net-ssh", "~> 3.0"
s.add_development_dependency "rake", "~> 10.4"
s.add_development_dependency "json", "~> 1.8"
s.add_development_dependency "test-unit", "~> 3.1"
s.add_development_dependency "mocha", "~> 1.1"
s.add_development_dependency "bundler", "~> 1.10"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = "lib"
end