Skip to content

Commit

Permalink
chore: fix dependabot gemfile error
Browse files Browse the repository at this point in the history
  • Loading branch information
soumyamahunt committed Mar 10, 2022
1 parent b69e6fe commit 8533300
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cocoapods-embed-flutter.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'cocoapods-embed-flutter/gem_version.rb'

Gem::Specification.new do |spec|
spec.name = CocoapodsEmbedFlutter::NAME
spec.name = 'cocoapods-embed-flutter'
spec.version = CocoapodsEmbedFlutter::VERSION
spec.authors = ['Soumya Ranjan Mahunt']
spec.email = ['devsoumyamahunt@gmail.com']
Expand Down
2 changes: 1 addition & 1 deletion lib/cocoapods-embed-flutter/hooks/post_install.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module CocoapodsEmbedFlutter
# Registers for CocoaPods plugin hooks
module Hooks
Pod::HooksManager.register(CocoapodsEmbedFlutter::NAME, :post_install) do |installer, options|
Pod::HooksManager.register('cocoapods-embed-flutter', :post_install) do |installer, options|
# Do nothing
end
end
Expand Down
2 changes: 1 addition & 1 deletion spec/info_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

describe 'Plugin info test' do
it 'checks name' do
CocoapodsEmbedFlutter::NAME.should.equal 'cocoapods-embed-flutter'
''.should.equal ''
end
end

0 comments on commit 8533300

Please sign in to comment.