ldclient-rb 3.0.3 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
data/circle.yml DELETED
@@ -1,35 +0,0 @@
1
- machine:
2
- environment:
3
- RUBIES: "ruby-2.4.2 ruby-2.2.7 ruby-2.1.9 ruby-2.0.0 ruby-1.9.3 jruby-1.7.22 jruby-9.0.5.0 jruby-9.1.13.0"
4
- services:
5
- - redis
6
-
7
- dependencies:
8
- cache_directories:
9
- - '/opt/circleci/.rvm/rubies'
10
-
11
- override:
12
- - |
13
- set -e
14
- for i in $RUBIES;
15
- do
16
- rvm install $i;
17
- rvm use $i;
18
- if [[ $i == jruby* ]]; then
19
- gem install jruby-openssl; # required by bundler, no effect on Ruby MRI
20
- fi
21
- gem install bundler;
22
- bundle install;
23
- mv Gemfile.lock "Gemfile.lock.$i"
24
- done
25
-
26
- test:
27
- override:
28
- - |
29
- set -e
30
- for i in $RUBIES;
31
- do
32
- rvm use $i;
33
- cp "Gemfile.lock.$i" Gemfile.lock;
34
- bundle exec rspec spec;
35
- done