forked from digideskio/chintz-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchintz.gemspec
More file actions
24 lines (20 loc) · 831 Bytes
/
chintz.gemspec
File metadata and controls
24 lines (20 loc) · 831 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
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'chintz/version'
Gem::Specification.new do |spec|
spec.name = 'chintz'
spec.version = Chintz::VERSION
spec.authors = ['John Clevely', 'Joseph Wynn']
spec.email = ['john.clevely@bbc.co.uk', 'joseph.wynn@bbc.co.uk']
spec.summary = 'Responsive images for Jekyll via srcset'
spec.homepage = 'https://github.com/BBC-News/chintz-ruby'
spec.licenses = ['Apache-2.0']
spec.description = %q{
Ruby implementation of the BBC News Chintz specification
}
spec.files = `git ls-files`.split($/)
spec.test_files = `git ls-files -- spec/*`.split("\n")
spec.executables = []
spec.require_path = 'lib'
spec.add_runtime_dependency 'mustache', ['>= 1.0', '< 2.0']
end