Sha256: d82d44d1aa919a70eb9d66c03e65f4c4004ed6e5815a74ebf4499cbc80b005c8

Contents?: true

Size: 794 Bytes

Versions: 9

Compression:

Stored size: 794 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

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

9 entries across 9 versions & 1 rubygems

Version Path
cocoapods-try-1.0.0.beta.1 .travis.yml
cocoapods-try-0.5.1 .travis.yml
cocoapods-try-0.5.0 .travis.yml
cocoapods-try-0.4.5 .travis.yml
cocoapods-try-0.4.4 .travis.yml
cocoapods-try-0.4.3 .travis.yml
cocoapods-try-0.4.2 .travis.yml
cocoapods-try-0.4.1 .travis.yml
cocoapods-try-0.4.0 .travis.yml