]> git.pld-linux.org Git - packages/gem2rpm.git/blob - style.patch
use '>=' not '=>' in specs
[packages/gem2rpm.git] / style.patch
1 --- gem2rpm-0.8.1/lib/gem2rpm/helpers.rb~       2013-04-29 22:57:16.000000000 +0300
2 +++ gem2rpm-0.8.1/lib/gem2rpm/helpers.rb        2013-04-29 23:13:01.409116757 +0300
3 @@ -12,7 +12,7 @@
4        requirements.inject([]) do |output, r|
5          if r.first == '~>'
6           next_version = Gem::Version.create(r.last).bump
7 -         output << ['=>', r.last]
8 +         output << ['>=', r.last]
9           output << ['<', next_version]
10         else
11           output << r
This page took 0.134058 seconds and 3 git commands to generate.