forked from jekyll/jekyll-sass-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into safe-load-paths
* origin/master: (24 commits) Don't need history sections. Update history to reflect merge of jekyll#52 [ci skip] Don't test Jekyll 2.5 against Ruby 2.3. Whoops, they have to be h3's Update history to reflect merge of jekyll#46 [ci skip] travis: Jekyll 3.1.2 travis: match rvm versions with jekyll/jekyll Release 💎 v1.4.0 Update history to reflect merge of jekyll#42 add_charset false by default, but still strip BOM Update history to reflect merge of jekyll#39 Update history to reflect merge of jekyll#41 Test Jekyll 2 & 3 explicitly fix converter spec for jekyll 3 travis: update to match jekyll-watch Travis: use container infra Update Gemfile Add Jekyll 2 & 3 to test matrix Update history to reflect merge of jekyll#40 Update the version of Sass to be 3.4.x ...
- Loading branch information
Showing
10 changed files
with
99 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,35 @@ | ||
sudo: false | ||
language: ruby | ||
script : script/cibuild | ||
rvm: | ||
- 2.1.0 | ||
- 2.0.0 | ||
- 1.9.3 | ||
- 2.2.4 | ||
- 2.1.8 | ||
- ruby-head | ||
matrix: | ||
allow_failures: | ||
- rvm: ruby-head | ||
include: | ||
- rvm: 1.9.3 | ||
env: JEKYLL_VERSION=2.5 | ||
- rvm: 2.3.0 | ||
env: JEKYLL_VERSION=3.1 | ||
env: | ||
matrix: | ||
- JEKYLL_VERSION=2.5 | ||
- JEKYLL_VERSION=3.1 | ||
branches: | ||
only: | ||
- master | ||
install: | ||
- travis_retry script/bootstrap | ||
script: script/cibuild | ||
notifications: | ||
email: false | ||
irc: | ||
on_success: change | ||
on_failure: change | ||
channels: | ||
- irc.freenode.org#jekyll | ||
template: | ||
- '%{repository}#%{build_number} %{message} %{build_url}' | ||
email: | ||
on_success: never | ||
on_failure: change |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
source 'https://rubygems.org' | ||
gemspec | ||
|
||
gem "jekyll", ENV["JEKYLL_VERSION"] ? "~> #{ENV["JEKYLL_VERSION"]}" : ">= 2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module JekyllSassConverter | ||
VERSION = "1.3.0" | ||
VERSION = "1.4.0" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#! /bin/bash | ||
|
||
bundle install | ||
bundle install -j8 || bundle install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters