Sha256: 481538824ca3c093cd5eff0e8440ee59c929389279c29274cc753079fe137867
Contents?: true
Size: 270 Bytes
Versions: 12
Compression:
Stored size: 270 Bytes
Contents
#!/bin/sh #bundle install if [ "$1" = "irb" ]; then bundle exec irb -Ilib -r postgresql_cursor elif [ "$1" = "setup" ]; then createdb postgresql_cursor_test echo "create table products ( id serial);" | psql postgresql_cursor_test else bundle exec ruby app.rb fi
Version data entries
12 entries across 12 versions & 1 rubygems