Sha256: 0f26ea3e3252a22e5d2429e0e19dbe7b6ba5f96ec9923c709a58d87ef400026f
Contents?: true
Size: 1.29 KB
Versions: 1
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-plugins) 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cocoapods-plugins-0.3.2 | cocoapods-plugins.gemspec |