forked from waynehoover/s3_direct_upload
-
Notifications
You must be signed in to change notification settings - Fork 2
/
s3-upnow.gemspec
23 lines (19 loc) · 962 Bytes
/
s3-upnow.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# encoding: utf-8
require File.expand_path('../lib/s3-upnow/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Carlos Eduardo Rodrigues Diógenes"]
gem.email = ["[email protected]"]
gem.description = %q{Direct Upload to Amazon S3 With CORS and jquery-file-upload}
gem.summary = %q{Gives a form helper for Rails which allows direct uploads to s3. Based on RailsCast#383}
gem.homepage = ""
gem.files = Dir["{lib,app}/**/*"] + ["LICENSE", "README.md"]
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "s3-upnow"
gem.require_paths = ["lib"]
gem.version = S3UpNow::VERSION
gem.add_dependency 'rails', '>= 3.1'
gem.add_dependency 'coffee-rails', '>= 3.1'
gem.add_dependency 'sass-rails', '>= 3.1'
gem.add_dependency 'jquery-fileupload-rails', '~> 0.4.1'
end