Commit bb3535af authored by Eloy Duran's avatar Eloy Duran

Release 0.3.0

parent f2c30689
......@@ -88,7 +88,7 @@ task :build_examples do
puts
Dir.chdir(example.to_s) do
sh "rm -rf Pods DerivedData"
sh "../../bin/pod install --verbose"
sh "#{'../../bin/' unless ENV['FROM_GEM']}pod install --verbose"
command = "xcodebuild -workspace '#{example.basename}.xcworkspace' -scheme '#{example.basename}'"
if (example + 'Podfile').read.include?('platform :ios')
# Specifically build against the simulator SDK so we don't have to deal with code signing.
......
......@@ -4,7 +4,7 @@ require File.expand_path('../lib/cocoapods', __FILE__)
Gem::Specification.new do |s|
s.name = "cocoapods"
s.version = Pod::VERSION
s.date = "2011-11-12"
s.date = "2011-11-13"
s.license = "MIT"
s.email = "eloy.de.enige@gmail.com"
s.homepage = "https://github.com/CocoaPods/CocoaPods"
......@@ -20,8 +20,7 @@ Gem::Specification.new do |s|
"in, third party open-source libraries, by creating a more centralized " \
"ecosystem."
s.files = Dir["lib/**/*.rb"] +
%w{ bin/pod README.md LICENSE CHANGELOG.md }
s.files = Dir["lib/**/*.rb"] + %w{ bin/pod README.md LICENSE CHANGELOG.md }
s.executables = %w{ pod }
s.require_paths = %w{ lib }
......
module Pod
VERSION = '0.2.0'
VERSION = '0.3.0'
class Informative < StandardError
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