Skip to content

Instantly share code, notes, and snippets.

@brennanbrown
Last active February 1, 2021 07:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brennanbrown/14ef974a8e90c406383fce01031dbad6 to your computer and use it in GitHub Desktop.
Save brennanbrown/14ef974a8e90c406383fce01031dbad6 to your computer and use it in GitHub Desktop.
Jekyll Theme Gem Spec
# ruby
# coding: utf-8
Gem::Specification.new do |spec|
spec.name = "testing123"
spec.version = "0.1.0"
spec.authors = [""]
spec.email = [""]
spec.summary = %q{TODO: Write a short summary, because Rubygems requires one.}
spec.homepage = "TODO: Put your gem's website or public repo URL here."
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(assets|_layouts|_includes|_sass|LICENSE|README)}i) }
spec.add_runtime_dependency "jekyll", "~> 3.6"
spec.add_development_dependency "bundler", "~> 1.12"
spec.add_development_dependency "rake", "~> 10.0"
end
# Credit: https://medium.com/@jameshamann/creating-your-own-jekyll-theme-gem-1f8180a0e4b8
# coding: utf-8
Gem::Specification.new do |spec|
spec.name = "awesome-jekyll-theme"
spec.version = "0.0.2"
spec.authors = ["David Darnes"]
spec.email = ["me@daviddarnes.com"]
spec.summary = %q{A short explanation of my awesome gem theme.}
spec.description = "A longer explanation of my awesome gem theme that isn’t the same as my summary."
spec.homepage = "https://alembic.darn.es"
spec.license = "MIT"
spec.files = git ls-files -z.split("\x0").select { |f| f.match(%r{^(assets|_layouts|_includes|_sass|LICENSE|README)}i) }
spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.0"
spec.add_development_dependency "jekyll", "~> 3.3"
spec.add_development_dependency "bundler", "~> 1.12"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment