Skip to content

Commit

Permalink
Work around a bundler issue https://github.com/bundler/bundler/issues…
Browse files Browse the repository at this point in the history
  • Loading branch information
dldinternet committed Mar 27, 2017
1 parent ec23b2f commit 17666d7
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -31,3 +31,4 @@ tags
tests/digitalocean/fixtures/

providers/*/doc
.rakeTasks
8 changes: 6 additions & 2 deletions .travis.yml
Expand Up @@ -2,16 +2,20 @@ language: ruby

sudo: false

script: bundle exec rake test
script:
|
bundle config disable_exec_load true
bundle exec rake test

cache: bundler

rvm:
- 2.1
- 2.2
- jruby-head
# Unable to make these work right now [2017-03-25 Christo]
- 2.3.1
- 2.4.0
- jruby-head

gemfile:
- Gemfile
Expand Down
4 changes: 2 additions & 2 deletions Gemfile
@@ -1,8 +1,8 @@
source "https://rubygems.org" do

group :development, :test, :integration do
gem "coveralls", require: false
gem "term-ansicolor", require: false
# gem "coveralls", require: false
# gem "term-ansicolor", require: false
end

end
Expand Down
4 changes: 3 additions & 1 deletion fog-digitalocean.gemspec
Expand Up @@ -50,8 +50,10 @@ Gem::Specification.new do |s|
s.add_development_dependency 'mime-types'
s.add_development_dependency 'mime-types-data'
s.add_development_dependency 'rubocop'
s.add_development_dependency 'coveralls'
s.add_development_dependency 'term-ansicolor'

s.add_dependency 'fog-core', '~> 1.43'
s.add_dependency 'fog-core', '~> 1.42'
s.add_dependency 'fog-json', '>= 1.0'
s.add_dependency 'fog-xml', '>= 0.1'
s.add_dependency 'ipaddress', '>= 0.5'
Expand Down

0 comments on commit 17666d7

Please sign in to comment.