Skip to content

Commit

Permalink
Merge pull request #571 from xslim/master
Browse files Browse the repository at this point in the history
Podfile & Lockfile error handling
  • Loading branch information
xslim committed Oct 4, 2012
2 parents 11edeba + 303dbb5 commit 4b9f459
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion lib/cocoapods/lockfile.rb
Expand Up @@ -8,7 +8,11 @@ class Lockfile
#
def self.from_file(path)
return nil unless path.exist?
hash = YAML.load(File.open(path))
begin
hash = YAML.load(File.open(path))
rescue Exception => e
raise Informative, "Podfile.lock syntax error: #{e.inspect}"
end
lockfile = Lockfile.new(hash)
lockfile.defined_in_file = path
lockfile
Expand Down
6 changes: 5 additions & 1 deletion lib/cocoapods/podfile.rb
Expand Up @@ -177,7 +177,11 @@ def self.from_file(path)
string = File.open(path, 'r:utf-8') { |f| f.read }
# TODO: work around for Rubinius incomplete encoding in 1.9 mode
string.encode!('UTF-8') if string.respond_to?(:encoding) && string.encoding.name != "UTF-8"
eval(string, nil, path.to_s)
begin
eval(string, nil, path.to_s)
rescue Exception => e
raise Informative, "Podfile syntax error: #{e.inspect}"
end
end
podfile.defined_in_file = path
podfile.validate!
Expand Down

0 comments on commit 4b9f459

Please sign in to comment.