forked from ksylvest/attached
-
Notifications
You must be signed in to change notification settings - Fork 0
/
attached.gemspec
22 lines (19 loc) · 907 Bytes
/
attached.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
$:.push File.join(File.dirname(__FILE__), 'lib')
require "attached/version"
Gem::Specification.new do |s|
s.name = "attached"
s.version = Attached::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Kevin Sylvestre"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/ksylvest/attached"
s.summary = "An attachment library designed with cloud processors in mind."
s.description = "Attached is a Ruby on Rails cloud attachment and processor library inspired by Paperclip. Attached lets users push files to the cloud, then perform remote processing on the files."
s.files = Dir["{bin,lib}/**/*"] + %w(LICENSE Rakefile README.rdoc)
s.test_files = Dir["test/**/*"]
s.add_dependency "fog"
s.add_dependency "identifier"
s.add_dependency "rails", "> 3.0.0"
s.add_development_dependency "appraisal"
end