Skip to content

Commit a53afb5

Browse files
committed
feat: pin some dependencies to make it work with vagrant_2.2.9_x86_64.deb
1 parent 43e7ec2 commit a53afb5

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

Gemfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ source "https://rubygems.org"
22

33
gemspec
44

5-
group :development do
5+
#group :development do
66
# We depend on Vagrant for development, but we don't add it as a
77
# gem dependency because we expect to be installed within the
88
# Vagrant environment itself using `vagrant plugin`.
9-
gem "vagrant", :git => "https://github.com/mitchellh/vagrant.git"
10-
end
9+
# gem "vagrant", :git => "https://github.com/mitchellh/vagrant.git"
10+
#end
1111

12-
group :plugins do
13-
gem "vagrant-aws" , path: "."
14-
end
12+
#group :plugins do
13+
# gem "vagrant-aws" , path: "."
14+
#end

lib/vagrant-aws/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module VagrantPlugins
22
module AWS
3-
VERSION = '0.7.2'
3+
VERSION = '0.9.0'
44
end
55
end

vagrant-aws.gemspec

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ Gem::Specification.new do |s|
2222
# rspec 3.4 to mock File
2323
s.add_development_dependency "rspec", "~> 3.4"
2424
s.add_development_dependency "rspec-its"
25+
s.add_runtime_dependency "nokogiri", "= 1.12"
26+
s.add_runtime_dependency "activesupport", "= 6.1.7.1"
27+
s.add_runtime_dependency "dry-inflector", "= 0.2.1"
2528

2629
# The following block of code determines the files that should be included
2730
# in the gem. It does this by reading all the files in the directory where

0 commit comments

Comments
 (0)