-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjekyll-srcset-tag.gemspec
More file actions
25 lines (21 loc) · 959 Bytes
/
jekyll-srcset-tag.gemspec
File metadata and controls
25 lines (21 loc) · 959 Bytes
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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'jekyll/srcset_tag/version'
Gem::Specification.new do |gem|
gem.name = 'jekyll-srcset-tag'
gem.version = Jekyll::SrcsetTag::VERSION
gem.authors = ['Kevin Dew']
gem.email = ['kevindew@me.com']
gem.description = 'Provides a block that can take a source image and generate it to all sizes for srcset usage'
gem.summary = 'A Jekyll plugin to use img srcset-w images'
gem.homepage = 'https://github.com/kevindew/jekyll-srcset-tag'
gem.license = 'MIT'
all_files = `git ls-files -z`.split("\x0")
gem.files = all_files.grep(%r{^lib/})
gem.require_paths = ['lib']
gem.required_ruby_version = '>= 2.1.0'
gem.add_runtime_dependency 'jekyll', '>= 2.0.0'
gem.add_dependency 'nokogiri', '~> 1.6'
gem.add_dependency 'mini_magick', '~> 4.3'
end