Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
rake-compiler
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Jobs
Commits
Open sidebar
Debian Ruby Team
rake-compiler
Commits
1a24d7b2
Commit
1a24d7b2
authored
Apr 01, 2013
by
Youhei SASAKI
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Imported Upstream version 0.8.3
parent
5b36b7ce
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
7 deletions
+12
-7
History.txt
History.txt
+5
-0
lib/rake/extensioncompiler.rb
lib/rake/extensioncompiler.rb
+1
-1
metadata.yml
metadata.yml
+5
-5
tasks/gem.rake
tasks/gem.rake
+1
-1
No files found.
History.txt
View file @
1a24d7b2
=== 0.8.3 / 2013-02-16
* Bugfixes:
* Support FreeBSD 'mingw32-gcc' cross compiler. Closes #72 [knu]
=== 0.8.2 / 2013-01-11
=== 0.8.2 / 2013-01-11
* Bugfixes:
* Bugfixes:
...
...
lib/rake/extensioncompiler.rb
100644 → 100755
View file @
1a24d7b2
...
@@ -39,7 +39,7 @@ module Rake
...
@@ -39,7 +39,7 @@ module Rake
paths
=
ENV
[
'PATH'
].
split
(
File
::
PATH_SEPARATOR
)
paths
=
ENV
[
'PATH'
].
split
(
File
::
PATH_SEPARATOR
)
# the pattern to look into (captures *nix and windows executables)
# the pattern to look into (captures *nix and windows executables)
pattern
=
"
i?86*mingw*
gcc{,.*}"
pattern
=
"
{mingw32-,i?86*mingw*}
gcc{,.*}"
@mingw_gcc_executable
=
paths
.
find
do
|
path
|
@mingw_gcc_executable
=
paths
.
find
do
|
path
|
# cleanup paths before globbing
# cleanup paths before globbing
...
...
metadata.yml
View file @
1a24d7b2
---
!ruby/object:Gem::Specification
---
!ruby/object:Gem::Specification
name
:
rake-compiler
name
:
rake-compiler
version
:
!ruby/object:Gem::Version
version
:
!ruby/object:Gem::Version
hash
:
5
9
hash
:
5
7
prerelease
:
prerelease
:
segments
:
segments
:
-
0
-
0
-
8
-
8
-
2
-
3
version
:
0.8.
2
version
:
0.8.
3
platform
:
ruby
platform
:
ruby
authors
:
authors
:
-
Luis Lavena
-
Luis Lavena
...
@@ -15,7 +15,7 @@ autorequire:
...
@@ -15,7 +15,7 @@ autorequire:
bindir
:
bin
bindir
:
bin
cert_chain
:
[]
cert_chain
:
[]
date
:
2013-0
1-12
00:00:00 Z
date
:
2013-0
2-16
00:00:00 Z
dependencies
:
dependencies
:
-
!ruby/object:Gem::Dependency
-
!ruby/object:Gem::Dependency
name
:
rake
name
:
rake
...
@@ -114,9 +114,9 @@ files:
...
@@ -114,9 +114,9 @@ files:
-
tasks/rspec.rake
-
tasks/rspec.rake
-
Rakefile
-
Rakefile
-
Isolate
-
Isolate
-
README.rdoc
-
History.txt
-
History.txt
-
LICENSE.txt
-
LICENSE.txt
-
README.rdoc
-
cucumber.yml
-
cucumber.yml
homepage
:
http://github.com/luislavena/rake-compiler
homepage
:
http://github.com/luislavena/rake-compiler
licenses
:
licenses
:
...
...
tasks/gem.rake
View file @
1a24d7b2
...
@@ -3,7 +3,7 @@ require 'rubygems/package_task'
...
@@ -3,7 +3,7 @@ require 'rubygems/package_task'
GEM_SPEC
=
Gem
::
Specification
.
new
do
|
s
|
GEM_SPEC
=
Gem
::
Specification
.
new
do
|
s
|
# basic information
# basic information
s
.
name
=
"rake-compiler"
s
.
name
=
"rake-compiler"
s
.
version
=
"0.8.
2
"
s
.
version
=
"0.8.
3
"
s
.
platform
=
Gem
::
Platform
::
RUBY
s
.
platform
=
Gem
::
Platform
::
RUBY
# description and details
# description and details
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment