-
Notifications
You must be signed in to change notification settings - Fork 2
/
dynamic_paperclip.gemspec
31 lines (25 loc) · 1.2 KB
/
dynamic_paperclip.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
26
27
28
29
30
31
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "dynamic_paperclip/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "dynamic_paperclip"
s.version = DynamicPaperclip::VERSION
s.author = 'Jim Ryan'
s.email = ["[email protected]"]
s.homepage = "http://github.com/room118solutions/dynamic_paperclip"
s.summary = "Generate Paperclip attachment styles on the fly"
s.description = "Let's your views define attachment styles, and delays processing all the way to the first user who requests it."
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["test/**/*"]
s.add_dependency 'rack'
s.add_dependency "paperclip", ">= 3.5.1"
s.add_dependency 'activesupport'
# Required for ActionController::DataStreaming::FileBody (Rails 4) or ActionDispatch::Response::FileBody (Rails 5)
s.add_dependency "actionpack", ">= 3.2"
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'shoulda'
s.add_development_dependency 'mocha'
s.add_development_dependency "rails", "~> 5.0.2"
s.add_development_dependency 'appraisal'
end