forked from rbuchberger/jekyll_picture_tag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjekyll-picture-tag.gemspec
32 lines (25 loc) · 1.36 KB
/
jekyll-picture-tag.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = "jekyll-picture-tag"
spec.version = '0.3.0'
spec.authors = ['Robert Wierzbowski', "Brendan Tobolaski"]
spec.email = ['[email protected]', "[email protected]"]
spec.summary = %q{Easy responsive images for Jekyll.}
spec.description = <<-EOF
Jekyll Picture Tag is a liquid tag that adds responsive images to your Jekyll static site. It follows the picture
element pattern, and polyfills older browsers with Picturefill. Jekyll Picture Tag automatically creates resized
source images, is fully configurable, and covers all use cases — including art direction and resolution switching —
with a little YAML configuration and a simple template tag.
EOF
spec.homepage = 'https://github.com/robwierzbowski/jekyll-picture-tag'
spec.license = 'BSD-3-Clause'
spec.require_paths = ['lib']
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.add_development_dependency "bundler", "~> 1.8"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_dependency 'mini_magick', '~> 3.8.0'
spec.add_dependency 'fastimage', '~> 1.6.4'
spec.add_runtime_dependency 'jekyll', '< 4'
end