Sha256: fdcd5d424e486a0869370282d4537dd816f1eb64cd183d6129bae5486bb908f2

Contents?: true

Size: 1.16 KB

Versions: 6

Compression:

Stored size: 1.16 KB

Contents

# -*- 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        = "s3"
  s.version     = S3::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Kuba Kuźma"]
  s.email       = ["kuba@jah.pl"]
  s.homepage    = "http://github.com/qoobaa/s3"
  s.summary     = "Library for accessing S3 objects and buckets"
  s.description = "S3 library provides access to Amazon's Simple Storage Service. It supports both: European and US buckets through REST API."
  s.license     = "MIT"

  s.required_rubygems_version = ">= 1.3.6"
  s.rubyforge_project         = "s3"

  s.add_dependency "proxies", "~> 0.2.0"
  s.add_development_dependency "rake"
  s.add_development_dependency "test-unit"
  s.add_development_dependency "mocha"
  s.add_development_dependency "bundler"

  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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
s3-0.3.25 s3.gemspec
s3-0.3.24 s3.gemspec
s3-0.3.23 s3.gemspec
s3-0.3.22 s3.gemspec
s3-0.3.21 s3.gemspec
s3-0.3.20 s3.gemspec