Commit bb3535af authored by Eloy Duran's avatar Eloy Duran

Release 0.3.0

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