Skip to content

Commit

Permalink
gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
dtenreiro committed Jun 6, 2024
1 parent 8432bc7 commit 3fc17a6
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 3 deletions.
11 changes: 9 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
# frozen_string_literal: true

source "https://rubygems.org"
gemspec
source 'https://rubygems.org' do
gem 'rails'
gem 'nokogiri'
end

source 'https://mytrustedsource.com' do
gem 'my_private_gem'
end

1 change: 0 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
title: Your awesome title
author:
name: Daniel Tenreiro
email: your-email@domain.com

# The `>` after `description:` means to ignore line-breaks until next key.
# If you want to omit the line-break after the end of text, use `>-` instead.
Expand Down
22 changes: 22 additions & 0 deletions minima.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# frozen_string_literal: true

Gem::Specification.new do |spec|

spec.summary = "A beautiful, minimal theme for Jekyll."
spec.homepage = "https://github.com/jekyll/minima"
spec.license = "MIT"

spec.metadata["plugin_type"] = "theme"

spec.files = `git ls-files -z`.split("\x0").select do |f|
f.match(%r!^(assets|_(includes|layouts|sass)/|(LICENSE|README)((\.(txt|md|markdown)|$)))!i)
end

spec.add_runtime_dependency "jekyll", ">= 3.5", "< 5.0"
spec.add_runtime_dependency "jekyll-feed", "~> 0.9"
spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.1"

# Update the Bundler development dependency to a secure version
spec.add_development_dependency "bundler", ">= 2.0.0"
end

0 comments on commit 3fc17a6

Please # to comment.