forked from igorkasyanchuk/active_storage_validations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
active_storage_validations.gemspec
30 lines (25 loc) · 1.2 KB
/
active_storage_validations.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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
# Maintain your gem's version:
require 'active_storage_validations/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'active_storage_validations'
s.version = ActiveStorageValidations::VERSION
s.authors = ['Igor Kasyanchuk']
s.email = ['igorkasyanchuk@gmail.com']
s.homepage = 'https://github.com/igorkasyanchuk/active_storage_validations'
s.summary = 'Validations for Active Storage'
s.description = 'Validations for Active Storage (presence)'
s.license = 'MIT'
s.files = Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md']
%w[activejob activemodel activestorage activesupport].each { |rails_subcomponent| s.add_dependency rails_subcomponent, '>= 5.2.0' }
s.add_development_dependency 'combustion', "~> 1.3"
s.add_development_dependency 'mini_magick', ">= 4.9.5"
s.add_development_dependency 'ruby-vips', ">= 2.1.0"
s.add_development_dependency 'pry'
s.add_development_dependency 'rubocop'
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'marcel'
s.add_development_dependency 'globalid'
end