Skip to content

Commit

Permalink
Merge pull request #7 from toshimaru/travis-ci
Browse files Browse the repository at this point in the history
TravisCI
  • Loading branch information
toshimaru committed Mar 23, 2016
2 parents 0eb8b51 + cec6904 commit 03ad136
Show file tree
Hide file tree
Showing 7 changed files with 44 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
language: ruby
rvm:
- 2.0
- 2.1
- 2.2
gemfile:
- gemfiles/jekyll_3.1.gemfile
- gemfiles/jekyll_3.gemfile
- gemfiles/jekyll_2.gemfile
11 changes: 11 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
appraise "jekyll-3.1" do
gem "jekyll", "3.1.2"
end

appraise "jekyll-3" do
gem "jekyll", "3.0.3"
end

appraise "jekyll-2" do
gem "jekyll", "2.5.3"
end
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# jekyll-toc

[![Build Status](https://travis-ci.org/toshimaru/jekyll-toc.svg?branch=master)](https://travis-ci.org/toshimaru/jekyll-toc)
[![Gem Version](https://badge.fury.io/rb/jekyll-toc.svg)](http://badge.fury.io/rb/jekyll-toc)
[![Dependency Status](https://gemnasium.com/toshimaru/jekyll-toc.svg)](https://gemnasium.com/toshimaru/jekyll-toc)
[![Code Climate](https://codeclimate.com/github/toshimaru/jekyll-toc/badges/gpa.svg)](https://codeclimate.com/github/toshimaru/jekyll-toc)
Expand Down
7 changes: 7 additions & 0 deletions gemfiles/jekyll_2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "jekyll", "2.5.3"

gemspec :path => "../"
7 changes: 7 additions & 0 deletions gemfiles/jekyll_3.1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "jekyll", "3.1.2"

gemspec :path => "../"
7 changes: 7 additions & 0 deletions gemfiles/jekyll_3.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "jekyll", "3.0.3"

gemspec :path => "../"
2 changes: 2 additions & 0 deletions jekyll-toc.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]

spec.add_runtime_dependency "nokogiri", "~> 1.6"

spec.add_development_dependency "appraisal"
spec.add_development_dependency 'minitest', "~> 5.0"
spec.add_development_dependency "jekyll", "~> 2.0"
spec.add_development_dependency "rake"
Expand Down

0 comments on commit 03ad136

Please sign in to comment.