redcar 0.3.8 → 0.3.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGES +9 -2
- data/Rakefile +1 -1
- data/lib/redcar.rb +1 -1
- data/lib/redcar/installer.rb +2 -2
- data/plugins/textmate/lib/textmate/plist.rb +2 -1
- metadata +2 -2
data/CHANGES
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
|
|
2
|
-
Version 0.3.8 (
|
|
3
|
-
|
|
2
|
+
Version 0.3.8.1 (18 July 2010)
|
|
3
|
+
==============================
|
|
4
|
+
|
|
5
|
+
* Update xulrunner url to point to existing distribution. (huma-)
|
|
6
|
+
* Hack to make Rexml load invalid character correctly on 1.9.1. (huma-)
|
|
7
|
+
* Fix installer script to put openssl jar in the right place (Dan Lucraft)
|
|
8
|
+
|
|
9
|
+
Version 0.3.8 (12 July 2010)
|
|
10
|
+
============================
|
|
4
11
|
|
|
5
12
|
* Can switch between open trees in a window (Dan Lucraft)
|
|
6
13
|
* Runnables: extensible runnable tasks/build items/tests/generators for projects. (Dan Lucraft)
|
data/Rakefile
CHANGED
data/lib/redcar.rb
CHANGED
data/lib/redcar/installer.rb
CHANGED
|
@@ -91,7 +91,7 @@ module Redcar
|
|
|
91
91
|
|
|
92
92
|
JRUBY << "http://jruby.org.s3.amazonaws.com/downloads/1.5.0/jruby-complete-1.5.0.jar"
|
|
93
93
|
|
|
94
|
-
JOPENSSL_DIR = "
|
|
94
|
+
JOPENSSL_DIR = File.expand_path(File.join(File.dirname(__FILE__), "..", "openssl/lib/"))
|
|
95
95
|
JOPENSSL = {
|
|
96
96
|
"/jruby/bcmail-jdk14-139-#{Redcar::VERSION}.jar" => "bcmail-jdk14-139.jar",
|
|
97
97
|
"/jruby/bcprov-jdk14-139-#{Redcar::VERSION}.jar" => "bcprov-jdk14-139.jar",
|
|
@@ -103,7 +103,7 @@ module Redcar
|
|
|
103
103
|
"/application_swt-#{Redcar::VERSION}.jar" => "plugins/application_swt/lib/dist/application_swt.jar"
|
|
104
104
|
}
|
|
105
105
|
|
|
106
|
-
XULRUNNER_URI = "http://releases.mozilla.org/pub/mozilla.org/xulrunner/releases/1.9.2/runtimes/xulrunner-1.9.2.en-US.win32.zip"
|
|
106
|
+
XULRUNNER_URI = "http://releases.mozilla.org/pub/mozilla.org/xulrunner/releases/1.9.2.6/runtimes/xulrunner-1.9.2.6.en-US.win32.zip"
|
|
107
107
|
|
|
108
108
|
SWT_JARS = {
|
|
109
109
|
:osx => {
|
|
@@ -13,10 +13,11 @@ module Redcar
|
|
|
13
13
|
|
|
14
14
|
def self.plist_from_xml(xml_string) # :nodoc:
|
|
15
15
|
require 'rexml/document'
|
|
16
|
+
REXML::Text::VALID_CHAR << 0x3 if RUBY_VERSION >= '1.9.1'
|
|
16
17
|
xml = REXML::Document.new(xml_string)
|
|
17
18
|
plist_from_xml1(xml.root.elements.to_a.first)
|
|
18
19
|
end
|
|
19
|
-
|
|
20
|
+
|
|
20
21
|
def self.plist_from_xml1(element) # :nodoc:
|
|
21
22
|
case element.name
|
|
22
23
|
when "dict"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: redcar
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.8
|
|
4
|
+
version: 0.3.8.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel Lucraft
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2010-07-
|
|
12
|
+
date: 2010-07-18 00:00:00 +01:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|