-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsinatra-s3.gemspec
More file actions
25 lines (23 loc) · 820 Bytes
/
Copy pathsinatra-s3.gemspec
File metadata and controls
25 lines (23 loc) · 820 Bytes
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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'sinatra-s3/version'
spec = Gem::Specification.new do |s|
s.name = "sinatra-s3"
s.version = ::S3::VERSION
s.author = "David Ricciardi"
s.email = "nricciar@gmail.com"
s.homepage = "http://github.com/nricciar/sinatra-s3"
s.platform = Gem::Platform::RUBY
s.summary = "An implementation of the Amazon S3 API in Ruby"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_path = "lib"
s.description = File.read("README")
s.executables = ['sinatra-s3']
s.has_rdoc = false
s.extra_rdoc_files = ["README"]
s.add_dependency("sinatra", ">= 1.0")
s.add_dependency("builder")
s.add_dependency("haml", ">= 2.2.15")
end