From 9a0e20a6c3322f66392fc6c2dd0aa8e8cee8cf3d Mon Sep 17 00:00:00 2001 From: Bradley Taunt Date: Thu, 25 Jul 2024 10:43:46 -0400 Subject: Include Gemfile and lock, update README to utilize bundle install, Makefile update --- Gemfile | 6 ++++++ Gemfile.lock | 24 ++++++++++++++++++++++++ Makefile | 2 +- README.md | 5 ++--- 4 files changed, 33 insertions(+), 4 deletions(-) create mode 100644 Gemfile create mode 100644 Gemfile.lock diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..d578292 --- /dev/null +++ b/Gemfile @@ -0,0 +1,6 @@ +source 'https://rubygems.org' + +ruby '3.3.0' + +gem 'kramdown', '~> 2.4.0' +gem 'rss', '~> 0.3.0' \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..365171b --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,24 @@ +GEM + remote: https://rubygems.org/ + specs: + kramdown (2.4.0) + rexml + rexml (3.3.2) + strscan + rss (0.3.0) + rexml + strscan (3.1.0) + +PLATFORMS + arm64-darwin-23 + ruby + +DEPENDENCIES + kramdown (~> 2.4.0) + rss (~> 0.3.0) + +RUBY VERSION + ruby 3.3.0p0 + +BUNDLED WITH + 2.5.6 diff --git a/Makefile b/Makefile index 9d7e5a1..e8e197a 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ build: rm -rf build && mkdir build - ruby wruby.rb + bundle exec ruby wruby.rb clean: rm -rf build/* diff --git a/README.md b/README.md index 1552e33..f4bd11f 100644 --- a/README.md +++ b/README.md @@ -1,19 +1,18 @@ # wruby > This is a heavy work-in-progress and I am hardly a Ruby expert. -> > Please consider contributing to make the project better! Minimal blog and static site generator. The "w" is silent... ## Dependencies -- `ruby` +- `ruby 3.3.0` Install required gems: ``` -gem install kramdown rss +bundle install ``` ## Getting Started -- cgit v1.2.3-54-g00ecf