2013-06-14 14:04:17 +01:00
|
|
|
language: ruby
|
|
|
|
rvm:
|
|
|
|
- 1.9.3
|
|
|
|
bundler_args: --without development
|
|
|
|
before_install:
|
2013-06-14 14:19:37 +01:00
|
|
|
- sudo apt-get update
|
2013-06-14 14:24:31 +01:00
|
|
|
- sudo apt-get --no-install-recommends install bash curl git patch bzip2 build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev libgdbm-dev ncurses-dev automake libtool bison subversion pkg-config libffi-dev libicu-dev
|
2013-06-14 14:04:17 +01:00
|
|
|
- gem update --system
|
|
|
|
- gem --version
|
2013-06-14 15:01:55 +01:00
|
|
|
before_script:
|
2013-06-14 14:04:17 +01:00
|
|
|
- cp config/database.yml.sample config/database.yml
|
2013-06-14 14:35:32 +01:00
|
|
|
- cp config/application.yml.travis config/application.yml
|
2013-06-14 15:45:30 +01:00
|
|
|
- bundle exec rake db:create db:structure:load db:migrate
|
2013-06-14 14:04:17 +01:00
|
|
|
branches:
|
|
|
|
only:
|
2013-06-14 16:23:27 +01:00
|
|
|
- master
|