-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcortex-plugins-core.gemspec
38 lines (32 loc) · 1.26 KB
/
cortex-plugins-core.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
32
33
34
35
36
37
38
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "cortex/plugins/core/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "cortex-plugins-core"
s.version = Cortex::Plugins::Core::VERSION
s.authors = ['CareerBuilder Employer Site & Content Products']
s.email = '[email protected]'
s.summary = %q{The combined set of Core FieldTypes for the Cortex CMS platform}
s.homepage = "https://github.com/cortex-cms/cortex-plugins-core"
s.license = "Apache-2.0"
s.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
s.test_files = Dir["spec/**/*"]
s.require_paths = ["lib"]
s.add_dependency "rails", ">= 5"
s.add_dependency "cells", "~> 4.1"
s.add_dependency "cells-rails", "~> 0.0"
s.add_dependency "cells-haml", "~> 0.0"
s.add_dependency "jsonb_accessor", "~> 1.0"
# AssetFieldType
s.add_dependency "shrine", "~> 2.11"
s.add_dependency "aws-sdk-s3", "~> 1.17"
s.add_dependency "mimemagic", "~> 0.3"
s.add_dependency "image_processing", "~> 1.6"
s.add_dependency "mini_magick", "~> 4.8"
s.add_dependency "fastimage", "~> 2.1"
s.add_dependency "image_optim", "~> 0.26"
s.add_dependency "image_optim_pack", "~> 0.5"
end