Include Gemfile and lock, update README to utilize bundle install, Makefile update

This commit is contained in:
Bradley Taunt 2024-07-25 10:43:46 -04:00
parent c0404efaa8
commit 9a0e20a6c3
4 changed files with 33 additions and 4 deletions

6
Gemfile Normal file
View file

@ -0,0 +1,6 @@
source 'https://rubygems.org'
ruby '3.3.0'
gem 'kramdown', '~> 2.4.0'
gem 'rss', '~> 0.3.0'

24
Gemfile.lock Normal file
View file

@ -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

View file

@ -1,6 +1,6 @@
build:
rm -rf build && mkdir build
ruby wruby.rb
bundle exec ruby wruby.rb
clean:
rm -rf build/*

View file

@ -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