You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
257 B
24 lines
257 B
#!/usr/bin/env bash
|
|
|
|
function idem_mise {
|
|
echo 'test mise'
|
|
}
|
|
|
|
function idem_ruby {
|
|
echo 'test ruby'
|
|
}
|
|
|
|
function idem_rails {
|
|
echo 'test rails'
|
|
}
|
|
|
|
function idem_sqlite {
|
|
echo 'test sqlite'
|
|
}
|
|
|
|
# main
|
|
|
|
idem_mise
|
|
idem_ruby
|
|
idem_rails
|
|
idem_sqlite
|