File: run_snippets.sh

package info (click to toggle)
ruby-rspec-rails 7.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,796 kB
  • sloc: ruby: 11,068; sh: 198; makefile: 6
file content (13 lines) | stat: -rwxr-xr-x 178 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
set -e

(
  cd snippets
  # This is required to load `bundle/inline`
  unset RUBYOPT
  for snippet in *.rb;
  do
    echo Running $snippet
    ruby $snippet
  done
)