Skip to content

Commit

Permalink
Must include info.plist files in gem
Browse files Browse the repository at this point in the history
  • Loading branch information
danlucraft committed Mar 7, 2010
1 parent 437eedd commit 390c8ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Rakefile
Expand Up @@ -75,7 +75,7 @@ end

spec = Gem::Specification.new do |s|
s.name = "redcar"
s.version = "0.3.4"
s.version = "0.3.4.1"
s.summary = "A JRuby text editor."
s.author = "Daniel Lucraft"
s.email = "dan@fluentradical.com"
Expand All @@ -93,6 +93,7 @@ spec = Gem::Specification.new do |s|
Dir.glob("textmate/Bundles/*.tmbundle/Syntaxes/**/*") +
Dir.glob("textmate/Bundles/*.tmbundle/Preferences/**/*") +
Dir.glob("textmate/Bundles/*.tmbundle/Snippets/**/*") +
Dir.glob("textmate/Bundles/*.tmbundle/info.plist") +
Dir.glob("textmate/Themes/*.tmTheme")
s.executables = FileList["bin/redcar"].map { |f| File.basename(f) }

Expand Down
1 change: 1 addition & 0 deletions plugins/project/lib/project.rb
Expand Up @@ -124,6 +124,7 @@ def self.open_file(path, win = Redcar.app.focussed_window)
# @param [String] path the path of the directory to view
# @param [Window] win the Window to open the Tree in
def self.open_dir(path, win = Redcar.app.focussed_window)
path = File.expand_path(path)
if !File.directory?(path)
raise 'Not a directory: ' + path
end
Expand Down

0 comments on commit 390c8ad

Please sign in to comment.