Sha256: c2d058765d724ad67adf74b96b72eb4b6b8717040c170ff6c386f569df38cc63
Contents?: true
Size: 845 Bytes
Versions: 8
Compression:
Stored size: 845 Bytes
Contents
# Sets Travis to run the Ruby specs on OS X machines to be as close as possible # to the user environment. # language: objective-c addons: code_climate: repo_token: e8abdb417b7d86d7427d8861e85209c7b194820bb372a1c05f0529835eac9c7c branches: only: - master - /.+-stable$/ env: - RVM_RUBY_VERSION=system # - RVM_RUBY_VERSION=1.8.7-p358 before_install: - export LANG=en_US.UTF-8 - curl http://curl.haxx.se/ca/cacert.pem -o /usr/local/share/cacert.pem - source ~/.rvm/scripts/rvm - if [[ $RVM_RUBY_VERSION != 'system' ]]; then rvm install $RVM_RUBY_VERSION; fi - rvm use $RVM_RUBY_VERSION - if [[ $RVM_RUBY_VERSION == 'system' ]]; then sudo gem install bundler --no-ri --no-rdoc; else gem install bundler --no-ri --no-rdoc; fi install: - sudo bundle install --without=documentation script: bundle exec rake spec
Version data entries
8 entries across 8 versions & 2 rubygems