Commit 5ae76e23 authored by Eloy Duran's avatar Eloy Duran

Add a gemspec for cocoapods itself.

parent f44cfed6
*.swp *.swp
*.swo *.swo
*.rbo *.rbo
*.gem
.DS_Store .DS_Store
tmp tmp
examples/Pods examples/Pods
......
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "cocoapods"
s.version = "0.0.1"
s.date = "2011-09-17"
s.license = "MIT"
s.summary = "A simple Objective-C library package manager."
s.email = "eloy.de.enige@gmail.com"
s.homepage = "https://github.com/alloy/cocoapods"
s.authors = ["Eloy Duran"]
s.files = Dir["lib/**/*.rb"] +
Dir["xcode-project-templates/**/*.*"] +
%w{ bin/pod README.md LICENSE }
s.executables = %w{ pod }
s.require_paths = %w{ lib }
s.post_install_message = "To speed up load time of cocoapods consider compiling the Ruby source files:\n\n" \
" $ sudo macgem install rubygems-compile\n" \
" $ sudo macgem compile cocoapods\n\n"
## Make sure you can build the gem on older versions of RubyGems too:
s.rubygems_version = "1.6.2"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.specification_version = 3 if s.respond_to? :specification_version
end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment