csc360-a1-shell/ruby/Gemfile
Sami Samhuri 0d0bb73114
Use wordexp to support super fancy expansions
- Expands environment variables, e.g. $HOME -> /home/tina

- Expands tildes, e.g. ~/bin -> /home/queso/bin

- Performs command substitution, e.g. `date +%F` -> 2022-01-16
                                  or $(date +%F) -> 2022-01-16
2022-01-16 23:11:40 -08:00

4 lines
68 B
Ruby

source 'https://rubygems.org'
ruby '3.1.0'
gem 'wordexp', '~> 0.1'