-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from le0pard/v5-support
Support middleman v5
- Loading branch information
Showing
9 changed files
with
84 additions
and
52 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,20 +1,25 @@ | ||
dist: xenial | ||
language: ruby | ||
|
||
cache: | ||
bundler: true | ||
|
||
rvm: | ||
- ruby-head | ||
- jruby-head | ||
- jruby-19mode | ||
- 2.2 | ||
- 2.1 | ||
- 2.0 | ||
- 2.7 | ||
- 2.6 | ||
- 2.5 | ||
os: | ||
- linux | ||
- osx | ||
matrix: | ||
|
||
jobs: | ||
fast_finish: true | ||
allow_failures: | ||
- rvm: ruby-head | ||
- rvm: jruby-19mode | ||
- rvm: jruby-head | ||
|
||
script: "bundle exec rake test" | ||
|
||
env: TEST=true | ||
env: TEST=true |
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,16 +1,19 @@ | ||
source "https://rubygems.org" | ||
source 'https://rubygems.org' | ||
|
||
gem "middleman-cli", :github => "middleman/middleman", :branch => "master" | ||
gem "middleman-core", :github => "middleman/middleman", :branch => "master" | ||
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" } | ||
|
||
gem "middleman-cli", github: "middleman/middleman", branch: "master" | ||
gem "middleman-core", github: "middleman/middleman", branch: "master" | ||
|
||
# Specify your gem's dependencies in middleman-minify-html.gemspec | ||
gemspec | ||
|
||
gem "rake", "~> 10.0.3", :require => false | ||
gem "yard", "~> 0.8.0", :require => false | ||
gem "rake", ">= 10.0.3", require: false | ||
gem "yard", ">= 0.8.0", require: false | ||
|
||
gem "cucumber", "~> 1.3.1" | ||
gem "cucumber", ">= 1.3.1" | ||
gem "capybara", ">= 0" | ||
gem "fivemat" | ||
gem "aruba", "~> 0.5.1" | ||
gem "rspec", "~> 2.12" | ||
gem "builder", "~> 3.0.0" | ||
gem "aruba", ">= 0.5.1" | ||
gem "rspec", ">= 2.12" | ||
gem "builder", ">= 3.0.0" |
This file was deleted.
Oops, something went wrong.
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
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,5 +1,5 @@ | ||
module Middleman | ||
module MinifyHtml | ||
VERSION = "3.4.1" | ||
VERSION = "4.0.0" | ||
end | ||
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