Sha256: 5bca886b21f130c73923d31dc29de4a07bdb152d1e072b46a536ff3348bb263d
Contents?: true
Size: 793 Bytes
Versions: 18
Compression:
Stored size: 793 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: 937468c2cbb0d7c0546b62d0fcbcba8a2a8b82714a64a52ffd0b951e71df626d 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
18 entries across 18 versions & 1 rubygems