cocoapods-plugins.gemspec in cocoapods-plugins-0.1.0 vs cocoapods-plugins.gemspec in cocoapods-plugins-0.1.1
- old
+ new
@@ -2,23 +2,28 @@
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.name = 'cocoapods-plugins'
spec.version = CocoapodsPlugins::VERSION
- spec.authors = ["David Grandinetti"]
+ spec.authors = ['David Grandinetti', 'Olivier Halligon']
spec.summary = %q{CocoaPods plugin which shows info about available CocoaPods plugins.}
- spec.homepage = "https://github.com/cocoapods/cocoapods-plugins"
- spec.license = "MIT"
+ 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.require_paths = ['lib']
- spec.add_runtime_dependency "cocoapods"
spec.add_runtime_dependency 'nap'
- spec.add_development_dependency "bundler", "~> 1.3"
- spec.add_development_dependency "rake"
+ spec.add_development_dependency 'bundler', '~> 1.3'
+ spec.add_development_dependency 'rake'
end