10 lines
312 B
Ruby
10 lines
312 B
Ruby
source 'https://rubygems.org'
|
|
|
|
# Look for $WORKSPACE, otherwise use "workspace" as dev path.
|
|
workspace = ENV["WORKSPACE"] || "~/workspace"
|
|
|
|
# Assumes you have already cloned pg_migrate_ruby in your workspace
|
|
# $ cd [workspace]
|
|
# $ git clone https://github.com/sethcall/pg_migrate_ruby
|
|
gem 'pg_migrate', '0.1.11'
|