Sha256: 858c23bfd8195ca0be05f4a9aafb4d801debd1da6e5e2a937a4be2ec8680c180

Contents?: true

Size: 300 Bytes

Versions: 5

Compression:

Stored size: 300 Bytes

Contents

#!/usr/bin/env bash

psql -h pg -U postgres -c "create database app_development"
psql -h pg -U postgres -c "create database app_test"

set -e

./bin/rake db:migrate
RAILS_ENV=test ./bin/rake db:migrate

echo "INSERT INTO users ( login ) VALUES ( 'admin' )  " | psql -h pg -U postgres app_development

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
appmap-0.22.0 spec/fixtures/rails_users_app/create_app
appmap-0.21.0 spec/fixtures/rails_users_app/create_app
appmap-0.20.0 spec/fixtures/rails_users_app/create_app
appmap-0.19.0 spec/fixtures/rails_users_app/create_app
appmap-0.18.1 spec/fixtures/rails_users_app/create_app