Overview
| module url |
N/A |
| git repository |
https://bitbucket.org/arrizza-public/devrb-app-template |
| git command |
git clone git@bitbucket.org:arrizza-public/devrb-app-template.git |
| verification report |
https://arrizza.com/web-ver/devrb-app-template-report.html |
| version info |
| OS |
Language |
#Runs |
Last Run |
Cov% |
|
macOS 15.5
|
Ruby 3.3.5
|
4
|
2025-08-06
|
70.31
|
|
macOS 15.6
|
Ruby 3.3.5
|
5
|
2026-01-15
|
70.31%
|
|
Ubuntu 24.04 noble
|
Ruby 3.2.3
|
109
|
2026-01-14
|
70.31%
|
|
MINGW64_NT-10.0-26100
|
Ruby 3.3.6
|
11
|
2025-08-17
|
70.31%
|
|
MINGW64_NT-10.0-26200
|
Ruby 3.3.10
|
4
|
2026-01-14
|
0%
|
|
MSYS_NT-10.0-26100
|
Ruby 3.3.6
|
2
|
2025-07-29
|
70.31
|
|
Summary
This is a template for a Ruby application.
It contains a set of scripts and configuration files
that make creating, developing and maintaining a Ruby app easier.
How to use
- create a git for your app
- use a diff tool like meld, and copy contents from this repo into your app.
- Use the contents of lib as a starting point or replace completely with your app's content
Scripts
# clean it
./do_clean # start from scratch
# install it
./do_subm_update full # first time for submodules
./do_subm_update # ... thereafter
./do_install full # first time for OS and gems
./do_install # ...thereafter
# doc it
./do_doc # generate yardoc html and PDF
# check it
./do_check # check configs and files are okay
./do_lint # rubocop
# run it
./doit # run the app/sample code
./do_ver # run verification (if implemented)
./do_ut # run unit tests (if implemented)