ZenTest 4.1.1 → 4.1.2
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.tar.gz.sig +0 -0
- data/History.txt +11 -0
- data/bin/multiruby_setup +2 -0
- data/lib/multiruby.rb +2 -2
- data/lib/zentest.rb +1 -1
- metadata +3 -3
- metadata.gz.sig +0 -0
data.tar.gz.sig
CHANGED
|
Binary file
|
data/History.txt
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
=== 4.1.2 / 2009-06-23
|
|
2
|
+
|
|
3
|
+
* 1 minor enhancement:
|
|
4
|
+
|
|
5
|
+
* multiruby configure now passes --enable-shared to support wilson and friends.
|
|
6
|
+
|
|
7
|
+
* 2 bug fixes:
|
|
8
|
+
|
|
9
|
+
* Delete RUBYOPT in multiruby_setup to avoid catastrophe. dbalatero
|
|
10
|
+
* Fixed version number munging for tarballs.
|
|
11
|
+
|
|
1
12
|
=== 4.1.1 / 2009-06-03
|
|
2
13
|
|
|
3
14
|
* 1 bug fix:
|
data/bin/multiruby_setup
CHANGED
data/lib/multiruby.rb
CHANGED
|
@@ -51,7 +51,7 @@ module Multiruby
|
|
|
51
51
|
TAGS = %w( 1_8_6 1_8_7 1_9_1)
|
|
52
52
|
BRANCHES = %w(1_8 1_8_6 1_8_7 trunk)
|
|
53
53
|
|
|
54
|
-
VERSIONS = env('VERSIONS', TAGS.join(":")).split(/:/)
|
|
54
|
+
VERSIONS = env('VERSIONS', TAGS.join(":").gsub(/_/, '.')).split(/:/)
|
|
55
55
|
MRI_SVN = env 'MRI_SVN', 'http://svn.ruby-lang.org/repos/ruby'
|
|
56
56
|
RBX_GIT = env 'RBX_GIT', 'git://git.rubini.us'
|
|
57
57
|
RUBY_URL = env 'RUBY_URL', 'http://ftp.ruby-lang.org/pub/ruby'
|
|
@@ -193,7 +193,7 @@ module Multiruby
|
|
|
193
193
|
|
|
194
194
|
def self.gnu_utils_build inst_dir
|
|
195
195
|
run "autoconf" unless test ?f, "configure"
|
|
196
|
-
run "./configure --prefix #{inst_dir}", "log.configure" unless
|
|
196
|
+
run "./configure --enable-shared --prefix #{inst_dir}", "log.configure" unless
|
|
197
197
|
test ?f, "Makefile"
|
|
198
198
|
run "(nice make -j4; nice make)", "log.build"
|
|
199
199
|
run "make install", "log.install"
|
data/lib/zentest.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ZenTest
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.1.
|
|
4
|
+
version: 4.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ryan Davis
|
|
@@ -31,7 +31,7 @@ cert_chain:
|
|
|
31
31
|
FBHgymkyj/AOSqKRIpXPhjC6
|
|
32
32
|
-----END CERTIFICATE-----
|
|
33
33
|
|
|
34
|
-
date: 2009-06-
|
|
34
|
+
date: 2009-06-23 00:00:00 -07:00
|
|
35
35
|
default_executable:
|
|
36
36
|
dependencies:
|
|
37
37
|
- !ruby/object:Gem::Dependency
|
|
@@ -42,7 +42,7 @@ dependencies:
|
|
|
42
42
|
requirements:
|
|
43
43
|
- - ">="
|
|
44
44
|
- !ruby/object:Gem::Version
|
|
45
|
-
version: 2.
|
|
45
|
+
version: 2.3.0
|
|
46
46
|
version:
|
|
47
47
|
description: |-
|
|
48
48
|
ZenTest provides 4 different tools: zentest, unit_diff, autotest, and
|
metadata.gz.sig
CHANGED
|
Binary file
|