Skip to content

Commit

Permalink
chore: address the warnings displayed when building a gem and add sou…
Browse files Browse the repository at this point in the history
…rce code uri
  • Loading branch information
knarewski committed Sep 19, 2024
1 parent 1f04b98 commit f3346dc
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions morandi.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
spec.email = ['[email protected]']
spec.summary = 'Simple Image Edits'
spec.description = 'Apply simple edits to images'
spec.homepage = ''
spec.homepage = 'https://github.com/livelink/morandi-rb'
spec.license = 'MIT'

spec.required_ruby_version = '>= 2.0'
Expand All @@ -20,12 +20,13 @@ Gem::Specification.new do |spec|

spec.extensions = %w[ext/morandi_native/extconf.rb ext/gdk_pixbuf_cairo/extconf.rb]

spec.metadata['source_code_uri'] = 'https://github.com/livelink/morandi-rb'
spec.metadata['rubygems_mfa_required'] = 'true'

spec.add_dependency 'atk', '> 4.0.0'
spec.add_dependency 'cairo'
spec.add_dependency 'colorscore'
spec.add_dependency 'gdk_pixbuf2', '> 4.0.0'
spec.add_dependency 'pango', '> 4.0.0'
spec.add_dependency 'rake-compiler'
spec.add_dependency 'atk', '~> 4.0'
spec.add_dependency 'cairo', '~> 1.0'
spec.add_dependency 'colorscore', '~> 0.0'
spec.add_dependency 'gdk_pixbuf2', '~> 4.0'
spec.add_dependency 'pango', '~> 4.0'
spec.add_dependency 'rake-compiler', '~> 1.2'
end

0 comments on commit f3346dc

Please sign in to comment.