Skip to content

Commit

Permalink
Moved clojure.jar to plugins/repl/vendor/ and added it to the installer.
Browse files Browse the repository at this point in the history
  • Loading branch information
danlucraft committed Jul 14, 2010
1 parent 5b749a0 commit 4e38f52
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -36,6 +36,7 @@ plugins/application_swt/dist
plugins/edit_view_swt/vendor/j*.jar
plugins/dans
plugins/*/lib/dist/
plugins/repl/vendor/clojure.jar
pkg

textmate/Bundles/asciidoc.tmbundle
Expand Down
7 changes: 6 additions & 1 deletion CHANGES
@@ -1,7 +1,12 @@

Version 0.3.8 (TBA)
Version 0.3.9 (TBA)
===================

* Clojure REPL (David Byrne)

Version 0.3.8 (12 July 2010)
============================

* Can switch between open trees in a window (Dan Lucraft)
* Runnables: extensible runnable tasks/build items/tests/generators for projects. (Dan Lucraft)
* Runnables: run scripts in edit tabs as processes. (Dan Lucraft)
Expand Down
3 changes: 2 additions & 1 deletion lib/redcar/installer.rb
Expand Up @@ -100,7 +100,8 @@ def redcar_jars_dir

REDCAR_JARS = {
"/java-mateview-#{Redcar::VERSION}.jar" => "plugins/edit_view_swt/vendor/java-mateview.jar",
"/application_swt-#{Redcar::VERSION}.jar" => "plugins/application_swt/lib/dist/application_swt.jar"
"/application_swt-#{Redcar::VERSION}.jar" => "plugins/application_swt/lib/dist/application_swt.jar",
"/clojure.jar" => "plugins/repl/vendor/clojure.jar"
}

XULRUNNER_URI = "http://releases.mozilla.org/pub/mozilla.org/xulrunner/releases/1.9.2/runtimes/xulrunner-1.9.2.en-US.win32.zip"
Expand Down
2 changes: 1 addition & 1 deletion plugins/repl/lib/repl.rb
@@ -1,7 +1,7 @@
require 'java'
require 'repl/internal_mirror'

require 'clojure.jar'
require File.dirname(__FILE__) + "/../vendor/clojure.jar"

include_class 'clojure.lang.Var'
include_class 'clojure.lang.RT'
Expand Down

0 comments on commit 4e38f52

Please sign in to comment.