forked from nhocki/paperclip-s3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaperclip-s3.gemspec
25 lines (20 loc) · 1018 Bytes
/
paperclip-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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "paperclip-s3/version"
Gem::Specification.new do |s|
s.name = "paperclip-s3"
s.version = Paperclip::S3::VERSION
s.authors = ["Nicolás Hock Isaza"]
s.email = ["[email protected]"]
s.homepage = ""
s.summary = %q{Simple gem that makes paperclip save the attachments on Amazon S3 for a production Rails application.}
s.description = %q{The gem will simply extend the has_attached_file to make it store on Amazon S3 when the application is on production. Great for Heroku applications.}
s.rubyforge_project = "paperclip-s3"
s.add_dependency('paperclip', '~> 2.4')
s.add_dependency('aws-sdk', '~> 1.2.5')
s.add_development_dependency('rake', '~> 0.9.2')
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end