File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
2121 spec . require_paths = [ "lib" ]
2222
2323 spec . add_dependency 'fastlane_core' , '>= 0.44.0' , '< 1.0.0' # all shared code and dependencies
24- spec . add_dependency 'fastimage' , '~> 1.6.3 ' # fetch the image sizes
25- spec . add_dependency 'mini_magick' , '~> 4.5.1 ' # to add badge image on app icon
24+ spec . add_dependency 'fastimage' , '~> 1.6' # fetch the image sizes
25+ spec . add_dependency 'mini_magick' , '~> 4.5' # to add badge image on app icon
2626
2727end
Original file line number Diff line number Diff line change 11module Badge
22
3- VERSION = "0.5.0 "
3+ VERSION = "0.5.1 "
44 DESCRIPTION = "Add a badge overlay to your ios app icon"
55
66 def self . root
Original file line number Diff line number Diff line change @@ -108,7 +108,8 @@ def load_shield(shield_string)
108108 file . close
109109 end
110110 end
111- def self . check_imagemagick!
111+
112+ def check_imagemagick!
112113 return if `which convert` . include? ( 'convert' )
113114 return if `which gm` . include? ( 'gm' )
114115
You can’t perform that action at this time.
0 commit comments