Skip to content

Commit

Permalink
Fixed lib loading in sashimi.rb
Browse files Browse the repository at this point in the history
  • Loading branch information
Luca Guidi committed May 19, 2008
1 parent 1296e1d commit 661b2f9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
@@ -1,3 +1,5 @@
* Fixed lib loading in sashimi.rb

* Added setup.rb

* Added PluginNotFound to improve OOP in exceptions handling
Expand Down
9 changes: 6 additions & 3 deletions lib/sashimi.rb
@@ -1,8 +1,11 @@
$:.unshift(File.dirname(__FILE__)) unless
$:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))

require 'uri'
require 'yaml'
require 'fileutils'
require 'rubygems'
require 'activesupport'
require 'lib/sashimi/plugin'
require 'lib/sashimi/repositories'
require 'lib/sashimi/version'
require 'sashimi/plugin'
require 'sashimi/repositories'
require 'sashimi/version'

0 comments on commit 661b2f9

Please sign in to comment.