Testing how dev and runtime dependencies work

This commit is contained in:
David Darnes 2016-10-02 12:31:57 +01:00
parent 624f5b67a2
commit d3bee81035
1 changed files with 18 additions and 10 deletions

View File

@ -1,11 +1,19 @@
Gem::Specification.new do |s|
s.name = 'garth-jekyll-theme'
s.version = '0.2.8'
s.license = 'MIT'
s.summary = 'A stupidly simple theme for Jekyll (3.2)'
s.description = 'A stupidly simple theme for Jekyll (3.2), using official Jekyll theme implementation'
s.author = 'David Darnes'
s.email = 'me@daviddarnes.com'
s.homepage = 'https://github.com/daviddarnes/garth-jekyll-theme'
s.files = `git ls-files -z`.split("\x0").grep(%r{^_(sass|includes|layouts)/})
# coding: utf-8
Gem::Specification.new do |spec|
spec.name = "garth-jekyll-theme"
spec.version = "0.2.9"
spec.authors = ["David Darnes"]
spec.email = ["me@daviddarnes.com"]
spec.summary = "A stupidly simple theme for Jekyll (3.2)"
spec.homepage = "https://github.com/daviddarnes/garth-jekyll-theme"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(_layouts|_includes|_sass|LICENSE|README)/i}) }
spec.add_runtime_dependency "jekyll", "~> 3.2"
spec.add_development_dependency "jekyll", "~> 3.2"
spec.add_development_dependency "bundler", "~> 1.12"
end