diff options
author | Bradley Taunt <bt@btxx.org> | 2024-07-25 10:48:40 -0400 |
---|---|---|
committer | Bradley Taunt <bt@btxx.org> | 2024-07-25 10:48:40 -0400 |
commit | c3f29bfbd2f38356ed18d8cd886a7705308f16fb (patch) | |
tree | b58eec30d90e2333122ef150ca771696275923b1 | |
parent | a22af1569c4404a936fc6c018da9ae5b7fd5f776 (diff) |
Carry over lockfile from core wruby project
-rw-r--r-- | Gemfile | 6 | ||||
-rw-r--r-- | Gemfile.lock | 24 | ||||
-rw-r--r-- | Makefile | 2 |
3 files changed, 31 insertions, 1 deletions
@@ -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 @@ -1,6 +1,6 @@ build: rm -rf build && mkdir build - ruby wruby.rb + bundle exec ruby wruby.rb clean: rm -rf build/* |