Skip to content

Commit

Permalink
Release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alloy committed Nov 13, 2011
1 parent f2c3068 commit bb3535a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -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.
Expand Down
5 changes: 2 additions & 3 deletions cocoapods.gemspec
Expand Up @@ -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"
Expand All @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion lib/cocoapods.rb
@@ -1,5 +1,5 @@
module Pod
VERSION = '0.2.0'
VERSION = '0.3.0'

class Informative < StandardError
end
Expand Down

0 comments on commit bb3535a

Please sign in to comment.