Skip to content
This repository has been archived by the owner on Jan 16, 2022. It is now read-only.

Commit

Permalink
Bump some more dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregg Van Hove committed Feb 6, 2018
1 parent e31f2e4 commit abf7ac1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
9 changes: 6 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ source 'https://rubygems.org'

gemspec

gem 'jasmine', :git => 'https://github.com/pivotal/jasmine-gem.git'
# gem 'jasmine', :path => '../jasmine-gem'
if ENV['TRAVIS']
gem 'jasmine', :git => 'https://github.com/pivotal/jasmine-gem.git'
else
gem 'jasmine', :path => '../jasmine-gem'
end

gem 'rack', '< 2.0.0'
gem 'rack'
8 changes: 3 additions & 5 deletions jasmine_junitxml_formatter.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,12 @@ Gem::Specification.new do |spec|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]

spec.required_ruby_version = '>= 2.3'

spec.add_development_dependency "bundler", ">= 1.15.1"
spec.add_development_dependency 'rspec'
spec.add_development_dependency "rake"

spec.add_dependency 'jasmine', '~> 3.0'
if ruby_version_less_than([2,1,0])
spec.add_dependency 'nokogiri', '< 1.7.0'
else
spec.add_dependency 'nokogiri'
end
spec.add_dependency 'nokogiri'
end

0 comments on commit abf7ac1

Please sign in to comment.