-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmiddleman-images.gemspec
27 lines (24 loc) · 1.11 KB
/
middleman-images.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "middleman-images/version"
Gem::Specification.new do |s|
s.name = "middleman-images"
s.version = MiddlemanImages::VERSION.dup
s.platform = Gem::Platform::RUBY
s.licenses = ["MIT"]
s.authors = ["Ruben Grimm", "Julian Schneider"]
s.email = ["ruben.grimm@zweitag.de", "julian.schneider@zweitag.de"]
s.homepage = "https://www.github.com/zweitag/middleman-images"
s.summary = "Resize and optimize images for Middleman"
s.description = "" "
Resize and optimize your images on the fly with Middleman. Just run middleman build
and all your images will get the minimizing treatment. Middleman Images currently
depends on mini_magick for resizing and image_optim for optimizing your images.
" ""
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.require_paths = ["lib"]
s.required_ruby_version = ">= 2.5.0"
s.add_runtime_dependency("middleman-core", [">= 4.1.14", "< 5.1"])
end