My *.gemspec
file holds content like this:
Gem::Specification.new do |spec|
...
spec.add_development_dependency "guard", "~> 2.12.6"
spec.add_development_dependency "unicorn"
....
end
Is there an automated way to change/add all the versions to latest one? So at the end it would look like (assuming the versions stated here are the latest ones):
Gem::Specification.new do |spec|
...
spec.add_development_dependency "guard", "~> 2.13.0"
spec.add_development_dependency "unicorn", "~> 5.0.1"
....
end