-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathd2s3.gemspec
More file actions
18 lines (15 loc) · 798 Bytes
/
d2s3.gemspec
File metadata and controls
18 lines (15 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require File.expand_path('../lib/d2s3/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Matthew Williams"]
gem.email = ["matthew.d.williams@gmail.com"]
gem.description = %q{d2s3 (direct to s3) is a simple Ruby on Rails helper that generates an upload form that will take a given file and upload it directly to your S3 bucket, bypassing your server}
gem.summary = %q{Ruby on Rails helper to generate S3 upload form}
gem.homepage = "https://github.com/mwilliams/d2s3"
gem.license = ""
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {spec}/*`.split("\n")
gem.name = "d2s3"
gem.require_paths = ["lib"]
gem.version = D2S3::VERSION
gem.add_development_dependency 'rake'
end