Skip to content

Commit

Permalink
Merge pull request #1 from alexharv074/add_support_for_ruby_2.0.0
Browse files Browse the repository at this point in the history
Add support for newer versions of Ruby
  • Loading branch information
lanyonm committed Apr 27, 2017
2 parents a9ca13f + 4b6dfc4 commit 8b1c14c
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions Gemfile
@@ -1,6 +1,15 @@
source 'https://rubygems.org'

ruby '2.1.1'

gem 'confluence-soap', '0.0.10'
gem 'markdown2confluence', '0.0.4'

if RUBY_VERSION.to_f < 2.3
gem 'nokogiri', '< 1.6.8'
else
gem 'nokogiri'
end
if RUBY_VERSION.to_f < 2.2
gem 'rack', '< 2'
else
gem 'rack'
end

0 comments on commit 8b1c14c

Please sign in to comment.