@@ -9,28 +9,29 @@ Gem::Specification.new do |spec|
99
1010 spec . name = 'cocoapods-embed-flutter'
1111 spec . version = CocoapodsEmbedFlutter ::VERSION
12- spec . authors = [ 'Soumya Ranjan Mahunt' ]
13- spec . email = [ 'devsoumyamahunt@gmail.com' ]
14- spec . description = %q{Embed flutter modules in iOS projects.}
15- spec . summary = <<-DESC
16- Straight forward way of declaring flutter modules as dependency for targets,
17- just like cocoapods does with pods.
18- DESC
1912 spec . homepage = repo_url
2013 spec . license = 'MIT'
14+ spec . authors = [ 'Soumya Ranjan Mahunt' ]
15+ spec . email = [ 'devsoumyamahunt@gmail.com' ]
16+ spec . summary = %q{Embed flutter modules in iOS projects.}
17+ spec . description = <<-EOF
18+ Straight forward way of declaring flutter modules as dependency for targets,
19+ just like cocoapods does with pods.
20+ EOF
2121
22- spec . files = `git ls-files` . split ( $/)
22+ spec . files = `git ls-files` . split ( $/) . grep_v ( %r{^(example|.github)/} )
2323 spec . executables = spec . files . grep ( %r{^bin/} ) { |f | File . basename ( f ) }
2424 spec . test_files = spec . files . grep ( %r{^(test|spec|features)/} )
2525 spec . require_paths = [ 'lib' ]
2626
27- spec . add_dependency 'yaml'
28- spec . add_dependency 'fileutils'
29- spec . add_dependency 'cocoapods'
27+ spec . add_runtime_dependency 'yaml'
28+ spec . add_runtime_dependency 'fileutils'
29+ spec . add_runtime_dependency 'cocoapods'
3030
3131 spec . add_development_dependency 'bundler'
3232 spec . add_development_dependency 'rake'
3333
34+ spec . required_ruby_version = '>= 2.6'
3435 spec . metadata = {
3536 'bug_tracker_uri' => "#{ repo_url } /issues" ,
3637 'changelog_uri' => "#{ repo_url } /blob/main/CHANGELOG.md" ,
0 commit comments