File: run_snippets.sh

package info (click to toggle)
ruby-rspec-rails 8.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,820 kB
  • sloc: ruby: 10,902; sh: 199; makefile: 6
file content (13 lines) | stat: -rwxr-xr-x 178 bytes parent folder | download | duplicates (3)
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
)