lib = File.expand_path("lib", __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'fastlane/plugin/ios_cd/version' Gem::Specification.new do |spec| spec.name = 'fastlane-plugin-ios_cd' spec.version = Fastlane::IosCd::VERSION spec.author = 'Malo Léon' spec.email = 'malo.leon@wyatt-studio.fr' spec.summary = 'Testflight and AppStore deployment plugin for Fastlane, simplifying the build and deployment porcess to internal, external, and production channels, and promoting builds for testing.' # spec.homepage = "https://github.com//fastlane-plugin-ios_cd" spec.license = "MIT" spec.files = Dir["lib/**/*"] + %w(README.md LICENSE) spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ['lib'] spec.required_ruby_version = '>= 2.6' # Don't add a dependency to fastlane or fastlane_re # since this would cause a circular dependency # spec.add_dependency 'your-dependency', '~> 1.0.0' spec.add_development_dependency('bundler') spec.add_development_dependency('fastlane', '>= 2.212.2') spec.add_development_dependency('pry') spec.add_development_dependency('rake') spec.add_development_dependency('rspec') spec.add_development_dependency('rspec_junit_formatter') spec.add_development_dependency('rubocop', '1.12.1') spec.add_development_dependency('rubocop-performance') spec.add_development_dependency('rubocop-require_tools') spec.add_development_dependency('simplecov') end