Sha256: 6d42319528c836b5388705ee0f91b039e5295dfb871bfc777122dc65464c1867

Contents?: true

Size: 1.52 KB

Versions: 1

Compression:

Stored size: 1.52 KB

Contents

# 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_runtime_dependency 'concurrent-ruby'

  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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cocoapods-embed-flutter-0.6.1 cocoapods-embed-flutter.gemspec