luislavena-rake-compiler 0.2.0 → 0.2.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/History.txt +14 -0
- data/tasks/rdoc.rake +1 -1
- data/tasks/rubygems.rake +2 -2
- metadata +4 -2
data/History.txt
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
=== 0.2.1 / 2008-11-30
|
|
2
|
+
|
|
3
|
+
* 2 Major Enhancements:
|
|
4
|
+
|
|
5
|
+
* Allow cross compilation (cross compile) using mingw32 on Linux or OSX.
|
|
6
|
+
* Allow packaging of gems for Windows on Linux or OSX.
|
|
7
|
+
|
|
8
|
+
* 1 Minor Enhancement:
|
|
9
|
+
|
|
10
|
+
* Made generation of extensions safe and target folders per-platform
|
|
11
|
+
|
|
12
|
+
* 1 Bug Fix:
|
|
13
|
+
|
|
14
|
+
* Ensure binaries for the specific platform are copied before packaging.
|
data/tasks/rdoc.rake
CHANGED
|
@@ -5,5 +5,5 @@ Rake::RDocTask.new(:rdoc) do |rd|
|
|
|
5
5
|
rd.main = 'README.rdoc'
|
|
6
6
|
rd.rdoc_dir = 'doc/api'
|
|
7
7
|
rd.options << '--main' << 'README.rdoc' << '--title' << 'rake-compiler -- Documentation'
|
|
8
|
-
rd.rdoc_files.include %w(README.rdoc LICENSE.txt lib/**/*.rb)
|
|
8
|
+
rd.rdoc_files.include %w(README.rdoc LICENSE.txt History.txt lib/**/*.rb)
|
|
9
9
|
end
|
data/tasks/rubygems.rake
CHANGED
|
@@ -3,7 +3,7 @@ require 'rake/gempackagetask'
|
|
|
3
3
|
spec = Gem::Specification.new do |s|
|
|
4
4
|
# basic information
|
|
5
5
|
s.name = "rake-compiler"
|
|
6
|
-
s.version = "0.2.
|
|
6
|
+
s.version = "0.2.1"
|
|
7
7
|
s.platform = Gem::Platform::RUBY
|
|
8
8
|
|
|
9
9
|
# description and details
|
|
@@ -34,7 +34,7 @@ spec = Gem::Specification.new do |s|
|
|
|
34
34
|
s.has_rdoc = true
|
|
35
35
|
s.rdoc_options << '--main' << 'README.rdoc' << '--title' << 'rake-compiler -- Documentation'
|
|
36
36
|
|
|
37
|
-
s.extra_rdoc_files = %w(README.rdoc LICENSE.txt)
|
|
37
|
+
s.extra_rdoc_files = %w(README.rdoc LICENSE.txt History.txt)
|
|
38
38
|
|
|
39
39
|
# project information
|
|
40
40
|
s.homepage = 'http://github.com/luislavena/rake-compiler'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: luislavena-rake-compiler
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Luis Lavena
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2008-11-
|
|
12
|
+
date: 2008-11-29 21:00:00 -08:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
@@ -34,6 +34,7 @@ extensions: []
|
|
|
34
34
|
extra_rdoc_files:
|
|
35
35
|
- README.rdoc
|
|
36
36
|
- LICENSE.txt
|
|
37
|
+
- History.txt
|
|
37
38
|
files:
|
|
38
39
|
- features/compile.feature
|
|
39
40
|
- features/cross-compile.feature
|
|
@@ -59,6 +60,7 @@ files:
|
|
|
59
60
|
- tasks/rubygems.rake
|
|
60
61
|
- Rakefile
|
|
61
62
|
- README.rdoc
|
|
63
|
+
- History.txt
|
|
62
64
|
- LICENSE.txt
|
|
63
65
|
- cucumber.yml
|
|
64
66
|
has_rdoc: true
|