forked from thoughtbot/paperclip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
paperclip.gemspec
27 lines (23 loc) · 1.08 KB
/
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
# frozen_string_literal: true
require_relative 'lib/paperclip/version'
Gem::Specification.new do |spec|
spec.name = 'paperclip'
spec.version = Paperclip::VERSION
spec.platform = Gem::Platform::RUBY
spec.author = 'AppFolio'
spec.email = '[email protected]'
spec.description = 'Easy upload management for ActiveRecord'
spec.summary = 'File attachments as attributes for ActiveRecord'
spec.homepage = 'https://github.com/appfolio/paperclip'
spec.license = 'MIT'
spec.files = Dir['**/*'].select { |f| f[/^(lib\/|.*gemspec)/] }
spec.require_paths = ['lib']
spec.requirements << 'ImageMagick'
spec.required_ruby_version = Gem::Requirement.new('< 3.4')
spec.metadata['allowed_push_host'] = 'https://rubygems.pkg.github.com/appfolio'
spec.add_dependency('activemodel', ['>= 6.1', '< 7.3'])
spec.add_dependency('activesupport', ['>= 6.1', '< 7.3'])
spec.add_dependency('terrapin', ['>= 0.6', '< 0.7'])
spec.add_dependency('marcel', ['>= 1.0.1', '< 2'])
spec.add_dependency('mime-types', ['>= 3.3', '< 4'])
end