Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added dylib files
  • Loading branch information
danielwestendorf committed Jan 30, 2012
1 parent ac58771 commit bb7af4b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/ruby_deploy
Expand Up @@ -327,10 +327,11 @@ class Deployer
def sign
log "Using codesign to sign files with #{@certificate}"
files = []
#get the .bundle, .rbo, .rb, and .framework
#get the .bundle, .rbo, .rb, .dylib, and .framework
files << Dir.glob(File.join(@app_bundle, '**', '*.bundle'))
files << Dir.glob(File.join(@app_bundle, '**', '*.rbo'))
files << Dir.glob(File.join(@app_bundle, '**', '*.rb'))
files << Dir.glob(File.join(@app_bundle, '**', '*.dylib'))
files << Dir.glob(File.join(@app_bundle, '**', '*.framework'))
files << @app_bundle

Expand Down

0 comments on commit bb7af4b

Please sign in to comment.