File tree Expand file tree Collapse file tree 3 files changed +24
-7
lines changed Expand file tree Collapse file tree 3 files changed +24
-7
lines changed Original file line number Diff line number Diff line change 1
1
language : ruby
2
2
script : script/cibuild
3
- rvm :
4
- - 2.2
5
- - 2.1
6
- - 2.0
7
- - 1.9.3
8
3
sudo : false
9
4
notifications :
10
5
email : false
11
6
branches :
12
7
only :
13
8
- master
9
+
10
+ rvm :
11
+ - 2.2
12
+ - 2.1
13
+ - 2.0
14
+ env :
15
+ - " "
16
+ - JEKYLL_VERSION=3.0.0.beta8
17
+ - JEKYLL_VERSION=2.0
18
+ matrix :
19
+ include :
20
+ - # GitHub Pages
21
+ rvm : 2.1.1
22
+ env : GH_PAGES=true
23
+ - # Ruby 1.9
24
+ rvm : 1.9
25
+ env : JEKYLL_VERSION=2.0
Original file line number Diff line number Diff line change 1
1
source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in jekyll-gist.gemspec
4
2
gemspec
3
+
4
+ if ENV [ "GH_PAGES" ]
5
+ gem "github-pages"
6
+ elsif ENV [ "JEKYLL_VERSION" ]
7
+ gem "jekyll" , "~> #{ ENV [ "JEKYLL_VERSION" ] } "
8
+ end
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
+ set -e
2
3
3
4
bundle exec rspec
You can’t perform that action at this time.
0 commit comments