Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fastlane-plugin-import_from_template / fastlane-plugin-import_from_template.gemspec
Size: Mime:
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'fastlane/plugin/import_from_template/version'

Gem::Specification.new do |spec|
  spec.name          = "fastlane-plugin-import_from_template"
  spec.version       = Fastlane::Plugin::ImportFromTemplate::VERSION
  spec.authors       = ["Damien Danglard"]
  spec.email         = ["ddanglard@cegid.com"]

  spec.summary       = "Fastlane plugin for import repo as template"
  spec.homepage      = "https://github.com/damien-danglard/fastlane-plugin-import_from_template"
  spec.license       = "MIT"
  spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")

  spec.metadata["allowed_push_host"] = "https://push.fury.io/cegid-gems/"

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files         = Dir.chdir(File.expand_path('..', __FILE__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  end
  spec.require_paths = ["lib"]

  spec.add_development_dependency 'bundler'
  spec.add_development_dependency 'fastlane', '>= 2.158.0'
end