Sha256: 51511c67a61b2bb7777441e65bd62f57e75b1436fc09d34bc01204d8f23a400f

Contents?: true

Size: 1.29 KB

Versions: 4

Compression:

Stored size: 1.29 KB

Contents

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

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

  spec.files         = `git ls-files`.split($/)
  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 'nap'

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
cocoapods-plugins-0.3.1 cocoapods-plugins.gemspec
cocoapods-plugins-0.3.0 cocoapods-plugins.gemspec
cocoapods-plugins-0.2.0 cocoapods-plugins.gemspec
cocoapods-plugins-0.1.1 cocoapods-plugins.gemspec