-
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.
- Loading branch information
Showing
8 changed files
with
73 additions
and
36 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,33 +1,31 @@ | ||
# Travis CI | ||
sudo: false | ||
language: ruby | ||
rvm: | ||
- 2.0 | ||
- 2.1 | ||
- 2.2 | ||
before_script: | ||
- chmod +x script | ||
#matrix: | ||
# include: | ||
# - rvm: 1.9.3 | ||
# env: BUNTO_VERSION=2.5 | ||
#env: | ||
# matrix: | ||
# - BUNTO_VERSION=2.5 | ||
# - BUNTO_VERSION=3.0 | ||
- 2.3.1 | ||
- 2.3.0 | ||
matrix: | ||
include: | ||
- rvm: 2.2.5 | ||
env: BUNTO_VERSION=3.0.0 | ||
env: | ||
matrix: | ||
- BUNTO_VERSION=3.0.0 | ||
- BUNTO_VERSION=3.2.1 | ||
branches: | ||
only: | ||
- master | ||
#install: | ||
#- travis_retry script/bootstrap | ||
#script: script/cibuild | ||
#notifications: | ||
# irc: | ||
# on_success: change | ||
# on_failure: change | ||
# channels: | ||
# - irc.freenode.org#bunto | ||
# template: | ||
# - '%{repository}#%{build_number} %{message} %{build_url}' | ||
# email: | ||
# on_success: never | ||
# on_failure: change | ||
before_script: | ||
- chmod a+x script/bootstrap | ||
- chmod a+x script/cibuild | ||
- chmod a+x script/test | ||
- chmod a+x script/test-watcher | ||
- bundle update | ||
script: script/cibuild | ||
notifications: | ||
irc: | ||
on_success: never | ||
on_failure: never | ||
email: | ||
on_success: never | ||
on_failure: never |
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,7 @@ | ||
## 1.0.0 / 2015-02-06 | ||
# HEAD | ||
|
||
## 2.0.0 / 2015-08-17 | ||
* Release 2.0.0 (Fix Travis CI errors) | ||
|
||
## 1.0.0 / 2015-02-06 | ||
* Birthday! |
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,4 +1,5 @@ | ||
Copyright (c) 2016-present Parker Moore | ||
Copyright (c) 2016-present Suriyaa Kudo | ||
|
||
MIT License | ||
|
||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
Gem::Specification.new do |spec| | ||
spec.name = "bunto-watch" | ||
spec.version = "1.0.0" | ||
spec.version = "2.0.0" | ||
spec.authors = ["Parker Moore", "Suriyaa Kudo"] | ||
spec.email = ["[email protected]", "[email protected]"] | ||
spec.summary = %q{Rebuild your Bunto site when a file changes with the `--watch` switch.} | ||
|
@@ -13,7 +13,8 @@ Gem::Specification.new do |spec| | |
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } | ||
spec.require_paths = ["lib"] | ||
|
||
spec.add_runtime_dependency "listen", "~> 3.0" | ||
# XXX: Remove the lock with Bunto 4 or in 2017 when Ruby 2.1 goes EOL. | ||
spec.add_runtime_dependency "listen", "~> 3.0", "< 3.1" | ||
|
||
require 'rbconfig' | ||
if RbConfig::CONFIG['host_os'] =~ /mswin|mingw|cygwin/ | ||
|
@@ -24,5 +25,5 @@ Gem::Specification.new do |spec| | |
spec.add_development_dependency "rubocop", "~> 0.35.1" | ||
spec.add_development_dependency "rake" | ||
spec.add_development_dependency "rspec", "~> 3.0" | ||
spec.add_development_dependency "bunto", ENV["BUNTO_VERSION"] ? "~> #{ENV["BUNTO_VERSION"]}" : ">= 1.0" | ||
spec.add_development_dependency "bunto", ENV["BUNTO_VERSION"] ? "~> #{ENV["BUNTO_VERSION"]}" : ">= 2.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
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