summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Van Doorn <vandoorn.nick@gmail.com>2021-08-13 13:31:51 -0700
committerNicholas Van Doorn <vandoorn.nick@gmail.com>2021-08-13 13:33:41 -0700
commit96155a3c7c539abf0e7805d0ec369e1547aa430a (patch)
tree4de5d0f95d6008b706cd0811fda215654ac33d85
parent5aed6081b4e95b296c78dbbd2d9f39337295769b (diff)
Add gemfile
We rely on `erb` and `kramdown` so they belong in here.
-rw-r--r--Gemfile8
-rw-r--r--Gemfile.lock19
2 files changed, 27 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile
new file mode 100644
index 0000000..bc36c03
--- /dev/null
+++ b/Gemfile
@@ -0,0 +1,8 @@
+# frozen_string_literal: true
+
+source "https://rubygems.org"
+
+git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
+
+gem "erb", "~> 2.2"
+gem "kramdown", "~> 2.3"
diff --git a/Gemfile.lock b/Gemfile.lock
new file mode 100644
index 0000000..2beb319
--- /dev/null
+++ b/Gemfile.lock
@@ -0,0 +1,19 @@
+GEM
+ remote: https://rubygems.org/
+ specs:
+ cgi (0.2.0)
+ erb (2.2.3)
+ cgi
+ kramdown (2.3.1)
+ rexml
+ rexml (3.2.5)
+
+PLATFORMS
+ x86_64-darwin-20
+
+DEPENDENCIES
+ erb (~> 2.2)
+ kramdown (~> 2.3)
+
+BUNDLED WITH
+ 2.2.16