gembuilder 1.1.1 → 1.1.3
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/History.txt +8 -0
- data/Rakefile +1 -0
- data/lib/gembuilderlib.rb +2 -2
- metadata +9 -6
data/History.txt
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
== 1.1.3 / 2007-05-19
|
|
2
|
+
|
|
3
|
+
* Arrg built last release with testing version of hoe
|
|
4
|
+
|
|
5
|
+
== 1.1.2 / 2007-05-19
|
|
6
|
+
|
|
7
|
+
* Play well with others (quite const redef warning)
|
|
8
|
+
|
|
1
9
|
== 1.1.1 / 2007-05-19
|
|
2
10
|
|
|
3
11
|
* Rename gembuilder.rb to gembuilderlib.rb -- capgem is using gembuilder.rb
|
data/Rakefile
CHANGED
data/lib/gembuilderlib.rb
CHANGED
|
@@ -8,8 +8,8 @@ require "fileutils"
|
|
|
8
8
|
Gem.manage_gems
|
|
9
9
|
|
|
10
10
|
class GemBuilderLib
|
|
11
|
-
VERSION = '1.1.
|
|
12
|
-
OBJEXT = ".#{Config::CONFIG["OBJEXT"]}"
|
|
11
|
+
VERSION = '1.1.3' unless const_defined?(:VERSION)
|
|
12
|
+
OBJEXT = ".#{Config::CONFIG["OBJEXT"]}" unless const_defined?(:OBJEXT)
|
|
13
13
|
|
|
14
14
|
# Helper that will do it all
|
|
15
15
|
def self.[](gem,conservative=false)
|
metadata
CHANGED
|
@@ -3,7 +3,7 @@ rubygems_version: 0.9.2
|
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: gembuilder
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 1.1.
|
|
6
|
+
version: 1.1.3
|
|
7
7
|
date: 2007-05-22 00:00:00 -04:00
|
|
8
8
|
summary: Create a binary gem, for the current platform.
|
|
9
9
|
require_paths:
|
|
@@ -38,10 +38,13 @@ files:
|
|
|
38
38
|
- test/test_gembuilderlib.rb
|
|
39
39
|
test_files:
|
|
40
40
|
- test/test_gembuilderlib.rb
|
|
41
|
-
rdoc_options:
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
41
|
+
rdoc_options:
|
|
42
|
+
- --main
|
|
43
|
+
- README.txt
|
|
44
|
+
extra_rdoc_files:
|
|
45
|
+
- History.txt
|
|
46
|
+
- Manifest.txt
|
|
47
|
+
- README.txt
|
|
45
48
|
executables:
|
|
46
49
|
- gembuilder
|
|
47
50
|
extensions: []
|
|
@@ -56,5 +59,5 @@ dependencies:
|
|
|
56
59
|
requirements:
|
|
57
60
|
- - ">="
|
|
58
61
|
- !ruby/object:Gem::Version
|
|
59
|
-
version: 1.2.
|
|
62
|
+
version: 1.2.1
|
|
60
63
|
version:
|