redcar 0.3.8 → 0.3.8.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES CHANGED
@@ -1,6 +1,13 @@
1
1
 
2
- Version 0.3.8 (TBA)
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
@@ -1,4 +1,4 @@
1
- REDCAR_VERSION = "0.3.8"
1
+ REDCAR_VERSION = "0.3.8.1"
2
2
  require 'rubygems'
3
3
  require 'fileutils'
4
4
  require 'spec/rake/spectask'
@@ -41,7 +41,7 @@ require 'uri'
41
41
  #
42
42
  # and so on.
43
43
  module Redcar
44
- VERSION = '0.3.8'
44
+ VERSION = '0.3.8.1'
45
45
  VERSION_MAJOR = 0
46
46
  VERSION_MINOR = 3
47
47
  VERSION_RELEASE = 8
@@ -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 = "lib/openssl/lib/"
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-13 00:00:00 +01:00
12
+ date: 2010-07-18 00:00:00 +01:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency