Skip to content

Commit

Permalink
Use version 1.8 of ruby for bundle items
Browse files Browse the repository at this point in the history
10.7 and 10.8 only include ruby 1.8, so all bundle items have been written to work with that. Optionally supporting ruby 1.9 and 2.0 is problematic as these versions are not fully backwards compatible.

#ignore
  • Loading branch information
infininight committed Jul 27, 2013
1 parent 6bed524 commit 2e5c80d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Support/shared/bin/checknest.rb
@@ -1,4 +1,4 @@
#!/usr/bin/ruby
#!/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby
#
# Program to check and fix nested blocks.
# By Sune Foldager, 2005.
Expand Down
2 changes: 1 addition & 1 deletion Support/shared/bin/man2html
@@ -1,4 +1,4 @@
#!/usr/bin/env ruby -wKU
#!/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby -wKU

sect, word = *ARGV
page = %x{ man #{sect} #{word}|col -b }
Expand Down
2 changes: 1 addition & 1 deletion Support/shared/lib/bluecloth.rb
@@ -1,4 +1,4 @@
#!/usr/bin/ruby
#!/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby
#
# Bluecloth is a Ruby implementation of Markdown, a text-to-HTML conversion
# tool.
Expand Down
2 changes: 1 addition & 1 deletion Support/shared/lib/markdown_to_help.rb
@@ -1,4 +1,4 @@
#!/usr/bin/env ruby -wKU
#!/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby -wKU
# encoding: utf-8

require ENV['TM_SUPPORT_PATH'] + '/lib/escape.rb'
Expand Down
2 changes: 1 addition & 1 deletion Support/shared/lib/textmate.rb
@@ -1,4 +1,4 @@
#!/usr/bin/env ruby
#!/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby
# encoding: utf-8

require "#{ENV['TM_SUPPORT_PATH']}/lib/osx/plist"
Expand Down

0 comments on commit 2e5c80d

Please sign in to comment.