Skip to content

Commit

Permalink
Merge pull request ggiamarchi#211 from ggiamarchi/fix_matrix_ci_build
Browse files Browse the repository at this point in the history
Fix matrix ci build
  • Loading branch information
julienvey committed Feb 8, 2015
2 parents a010fb6 + 9918065 commit b256b80
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 30 deletions.
10 changes: 0 additions & 10 deletions gemfiles/latest_stable.gemfile

This file was deleted.

10 changes: 0 additions & 10 deletions gemfiles/minimal_release.gemfile

This file was deleted.

10 changes: 0 additions & 10 deletions gemfiles/previous_release.gemfile

This file was deleted.

11 changes: 11 additions & 0 deletions lib/vagrant-openstack-provider/errors.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ module VagrantPlugins
module Openstack
module Errors
class VagrantOpenstackError < Vagrant::Errors::VagrantError
#
# Added for vagrant 1.4.x compatibility This attribute had been
# added in Vagrant::Errors::VagrantError form the version 1.5.0
#
attr_accessor :extra_data

def initialize(args = nil)
@extra_data = args
super(args)
end

error_namespace('vagrant_openstack.errors')
error_key(:default)
end
Expand Down
1 change: 1 addition & 0 deletions vagrant-openstack-provider.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Gem::Specification.new do |gem|
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec', '~> 3.1.0'
gem.add_development_dependency 'rspec-its', '~> 1.0.1'
gem.add_development_dependency 'rspec-expectations', '~> 3.1.2'
gem.add_development_dependency 'webmock', '~> 1.18.0'
gem.add_development_dependency 'fakefs', '~> 0.5.2'

Expand Down

0 comments on commit b256b80

Please sign in to comment.