# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'cocoapods-embed-flutter/gem_version.rb' Gem::Specification.new do |spec| repo = 'DartBuild/cocoapods-embed-flutter' repo_url = "https://github.com/#{repo}" spec.name = 'cocoapods-embed-flutter' spec.version = CocoapodsEmbedFlutter::VERSION spec.homepage = repo_url spec.license = 'MIT' spec.authors = ['Soumya Ranjan Mahunt'] spec.email = ['devsoumyamahunt@gmail.com'] spec.summary = %q{Embed flutter modules in iOS projects.} spec.description = <<-EOF Straight forward way of declaring flutter modules as dependency for targets, just like cocoapods does with pods. EOF spec.files = `git ls-files`.split($/).grep_v(%r{^(example|.github)/}) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ['lib'] spec.add_runtime_dependency 'yaml' spec.add_runtime_dependency 'fileutils' spec.add_runtime_dependency 'cocoapods' spec.add_development_dependency 'bundler' spec.add_development_dependency 'rake' spec.required_ruby_version = '>= 2.6' spec.metadata = { 'bug_tracker_uri' => "#{repo_url}/issues", 'changelog_uri' => "#{repo_url}/blob/main/CHANGELOG.md", 'source_code_uri' => repo_url, 'github_repo' => "git@github.com:#{repo}.git" } end