Sha256: 50a8255c9cf18e38e4a1b70f2f1516cb4d89f8a0a6d012216912d76651f4edc9

Contents?: true

Size: 1.33 KB

Versions: 1

Compression:

Stored size: 1.33 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'claide_plugins.rb'

Gem::Specification.new do |spec|
  spec.name          = 'claide-plugins'
  spec.version       = CLAidePlugins::VERSION
  spec.authors       = ['David Grandinetti', 'Olivier Halligon']
  spec.summary       = %q{CLAide plugin which shows info about available CLAide plugins.}
  spec.description   = <<-DESC
                         This CLAide plugin shows information about all available CLAide plugins
                         (yes, this is very meta!).
                         This plugin adds the "plugins" subcommand to a binary so that you can list
                         all plugins (registered in the reference JSON hosted at CocoaPods/cocoapods-plugins)
                       DESC
  spec.homepage      = 'https://github.com/cocoapods/claide-plugins'
  spec.license       = 'MIT'

  spec.files         = `git ls-files`.split($/)
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ['lib']

  spec.add_runtime_dependency 'nap', '~> 1.0'
  spec.add_runtime_dependency 'cork', '~> 0'
  spec.add_runtime_dependency 'open4', '~> 1.3'

  spec.add_development_dependency 'bundler', '~> 1.3'
  spec.add_development_dependency 'rake'

  spec.required_ruby_version = '>= 2.0.0'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
claide-plugins-0.9.0 claide-plugins.gemspec