Skip to content

Commit

Permalink
Make it depend on the minimal 2.0.0 version, Fixes #55 (#57)
Browse files Browse the repository at this point in the history
`~> 2.0.0` evaluates as `['>= 2.0.0', '< 2.0.0']` according to http://guides.rubygems.org/patterns/
We need it to depend on the MINIMAL 2.0 version
  • Loading branch information
renan authored and gael-ian committed Nov 21, 2016
1 parent 30056b7 commit 58de1ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vagrant-bindfs.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Gem::Specification.new do |s|
s.files = Dir["{lib,locales}/**/*"] + ["README.md", "Rakefile", "MIT-LICENSE"]
s.test_files = Dir["{test}/**/*"] + ["Vagrantfile"]

s.required_ruby_version = "~> 2.0.0"
s.required_ruby_version = ">= 2.0.0"
s.required_rubygems_version = ">= 1.3.6"

end

0 comments on commit 58de1ab

Please sign in to comment.