Skip to content

Commit

Permalink
lessen typhoeus dependency for compatability with gh pages health check
Browse files Browse the repository at this point in the history
  • Loading branch information
benbalter committed Oct 23, 2017
1 parent 7e457e4 commit 4c13449
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 0 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,3 @@
source "https://rubygems.org"

gemspec

gem "jekyll", :github => "jekyll/jekyll"
2 changes: 1 addition & 1 deletion jekyll-remote-theme.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Gem::Specification.new do |s|

s.add_dependency "jekyll", "~> 3.5"
s.add_dependency "rubyzip", "~> 1.2"
s.add_dependency "typhoeus", "~> 1.1"
s.add_dependency "typhoeus", ">= 0.7", "< 2.0"
s.add_development_dependency "jekyll-theme-primer", "~> 0.5"
s.add_development_dependency "pry", "~> 0.11"
s.add_development_dependency "rspec", "~> 3.0"
Expand Down
2 changes: 2 additions & 0 deletions spec/jekyll-remote-theme/integration_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
it "builds with the remote theme" do
Dir.chdir tmp_dir do
output, status = Open3.capture2e(*args)
output = output.encode("UTF-8",
:invalid => :replace, :undef => :replace, :replace => "")
expect(status.exitstatus).to eql(0), output
expect(output).to match("Remote Theme: Using theme pages-themes/primer")

Expand Down

0 comments on commit 4c13449

Please sign in to comment.