Cover arrays, loops, and iteration.
ruby -v
gem install bundler
bundle install
ruby bin/hello Alice
bundle exec rspec
bundle exec rubocop
- bin/hello — CLI entry point
- lib/tutorial/greeter.rb — core code
- spec/greeter_spec.rb — RSpec tests
- Gemfile — dependencies
- Rakefile — tasks
- .github/workflows/ci.yml — CI workflow
Each push runs RSpec & RuboCop.
MIT