Skip to content

Commit

Permalink
Merge pull request nesquena#130 from acant/bug/nior4
Browse files Browse the repository at this point in the history
Limiting the nior4 dependency
  • Loading branch information
nesquena authored Mar 17, 2017
2 parents 570891f + 41b4ee3 commit a3edbaa
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@ sudo: false
addons:
code_climate:
repo_token: "18995229639977d370a4adf13644223c53baa31b9c7fc302a7ce263aa5bc6dbf"
after_success:
- bundle exec codeclimate-test-reporter
7 changes: 6 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
0.6.2
0.6.3

* fix gem dependencies to preserve Ruby v2.0.0 compatibility (@acant)
* add --host flag for setting the address for the web interface (@acant)

0.6.2 (July 5th 2016)

* add dependencies on tilt and celluloid-io to ensure correct install (@acant)

Expand Down
7 changes: 7 additions & 0 deletions gitdocs.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,15 @@ Gem::Specification.new do |s|
s.add_dependency 'celluloid-io', '~> 0.16.0'
# FIXME: listen cannot be upgraded until we drop support for Ruby <v2.1
s.add_dependency 'listen', '~> 3.0.5'
# FIXME: nior4 cannot be upgraded until we drop support for Ruby <v2.2.2
s.add_dependency 'nio4r', '~> 1.2.1'
# FIXME: nokoiri cannot be upgrade until we drop support for Ruby <v2.0.0
s.add_dependency 'nokogiri', '~> 1.6.8'

s.add_dependency 'sinatra', '~> 1.4.5'
# FIXME: Sinatra v1.4 appears to be incompatible with Rack >2, so it needs to
# be explicitly limited. This will likely be resolved with Sinatra v2.
s.add_dependency 'rack', '< 2.0'
s.add_dependency 'redcarpet', '~> 3.3.0'
s.add_dependency 'thor', '~> 0.19.1'
s.add_dependency 'coderay', '~> 1.1.0'
Expand Down
2 changes: 1 addition & 1 deletion lib/gitdocs/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Gitdocs
VERSION = '0.6.2'.freeze
VERSION = '0.6.3'.freeze
end
1 change: 0 additions & 1 deletion test/unit/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
require 'codeclimate-test-reporter'
SimpleCov.add_filter 'test'
SimpleCov.start
CodeClimate::TestReporter.start

# Load and configure the real code #############################################
require 'gitdocs'
Expand Down

0 comments on commit a3edbaa

Please sign in to comment.