rake-compiler-dock 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +2 -0
- data.tar.gz.sig +0 -0
- data/.gitignore +14 -0
- data/Dockerfile +109 -0
- data/Gemfile +4 -0
- data/History.md +3 -0
- data/LICENSE.txt +22 -0
- data/README.md +60 -0
- data/Rakefile +6 -0
- data/bin/rake-compiler-dock +32 -0
- data/lib/rake_compiler_dock.rb +5 -0
- data/lib/rake_compiler_dock/version.rb +3 -0
- data/rake-compiler-dock.gemspec +23 -0
- data/src/rake-compiler-without-exts.diff +12 -0
- data/src/runas +13 -0
- data/src/sigfw.c +43 -0
- data/src/strip_wrapper +29 -0
- metadata +109 -0
- metadata.gz.sig +0 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 826e842d110c43f9b333aaf07ee5ee2dc86aeb97
|
4
|
+
data.tar.gz: 062e38a137965df768c35e2455acc45c24be0651
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 0f109af320b70531b5a2885e9259d43d7fa223ed3ca3238add01b012d00f77279e40021db6325aaf6351ac02411e76efd0eca59d46ada60f4f16f092ac7bcc86
|
7
|
+
data.tar.gz: 4fae5e1bea609687d558bc8433e5666224fc74e3141fec6dc2ac66f3b23b26820704efa4b994f521440202e1556b9a12a4147265e65a1065413335ff6dda4aab
|
checksums.yaml.gz.sig
ADDED
data.tar.gz.sig
ADDED
Binary file
|
data/.gitignore
ADDED
data/Dockerfile
ADDED
@@ -0,0 +1,109 @@
|
|
1
|
+
FROM ubuntu:14.04
|
2
|
+
|
3
|
+
RUN apt-get -y update && \
|
4
|
+
apt-get install -y curl git-core mingw32 xz-utils build-essential
|
5
|
+
|
6
|
+
RUN mkdir -p /opt/mingw && \
|
7
|
+
curl -SL http://sunet.dl.sourceforge.net/project/mingw-w64/Toolchains%20targetting%20Win32/Personal%20Builds/rubenvb/gcc-4.7-release/i686-w64-mingw32-gcc-4.7.2-release-linux64_rubenvb.tar.xz | \
|
8
|
+
tar -xJC /opt/mingw && \
|
9
|
+
echo "export PATH=\$PATH:/opt/mingw/mingw32/bin" >> /etc/rubybashrc && \
|
10
|
+
ln -s /opt/mingw/mingw32/bin/* /usr/local/bin/
|
11
|
+
|
12
|
+
RUN mkdir -p /opt/mingw && \
|
13
|
+
curl -SL http://softlayer-ams.dl.sourceforge.net/project/mingw-w64/Toolchains%20targetting%20Win64/Personal%20Builds/rubenvb/gcc-4.7-release/x86_64-w64-mingw32-gcc-4.7.2-release-linux64_rubenvb.tar.xz | \
|
14
|
+
tar -xJC /opt/mingw && \
|
15
|
+
echo "export PATH=\$PATH:/opt/mingw/mingw64/bin" >> /etc/rubybashrc && \
|
16
|
+
ln -s /opt/mingw/mingw64/bin/* /usr/local/bin/
|
17
|
+
|
18
|
+
# Add "rvm" as system group, to avoid conflicts with host GIDs typically starting with 1000
|
19
|
+
RUN groupadd -r rvm && useradd -r -g rvm -G sudo -p "" --create-home rvm && \
|
20
|
+
echo "source /etc/profile.d/rvm.sh" >> /etc/rubybashrc
|
21
|
+
USER rvm
|
22
|
+
|
23
|
+
# install rvm, RVM 1.26.0+ has signed releases, source rvm for usage outside of package scripts
|
24
|
+
RUN gpg --keyserver hkp://keys.gnupg.net --recv-keys D39DC0E3 && \
|
25
|
+
(curl -L http://get.rvm.io | sudo bash -s stable) && \
|
26
|
+
bash -c " \
|
27
|
+
source /etc/rubybashrc && \
|
28
|
+
rvmsudo rvm cleanup all "
|
29
|
+
|
30
|
+
ENV BASH_ENV /etc/rubybashrc
|
31
|
+
|
32
|
+
# install rubies and fix permissions on
|
33
|
+
RUN bash -c " \
|
34
|
+
export CFLAGS='-s -O3 -fno-fast-math -fPIC' && \
|
35
|
+
for v in 1.8.7-p374 1.9.3 2.2.2 ; do \
|
36
|
+
rvm install \$v; \
|
37
|
+
done && \
|
38
|
+
rvm cleanup all && \
|
39
|
+
find /usr/local/rvm -type d | sudo xargs chmod g+sw "
|
40
|
+
|
41
|
+
# Install rake-compiler and typical gems in all Rubies
|
42
|
+
# do not generate documentation for gems
|
43
|
+
RUN echo "gem: --no-ri --no-rdoc" >> ~/.gemrc && \
|
44
|
+
bash -c " \
|
45
|
+
rvm all do gem install bundler rake-compiler hoe mini_portile rubygems-tasks && \
|
46
|
+
find /usr/local/rvm -type d | sudo xargs chmod g+sw "
|
47
|
+
|
48
|
+
# Install rake-compiler's cross rubies in global dir instead of /root
|
49
|
+
RUN sudo mkdir -p /usr/local/rake-compiler && \
|
50
|
+
sudo chown rvm.rvm /usr/local/rake-compiler && \
|
51
|
+
ln -s /usr/local/rake-compiler ~/.rake-compiler
|
52
|
+
|
53
|
+
# Patch rake-compiler to avoid build of ruby extensions
|
54
|
+
ADD src/rake-compiler-without-exts.diff /home/rvm/
|
55
|
+
RUN cd /usr/local/rvm/gems/ruby-1.8.7-p374/gems/rake-compiler-0.9.5 && patch -p1 < /home/rvm/rake-compiler-without-exts.diff && \
|
56
|
+
cd /usr/local/rvm/gems/ruby-1.9.3-p551/gems/rake-compiler-0.9.5 && patch -p1 < /home/rvm/rake-compiler-without-exts.diff && \
|
57
|
+
cd /usr/local/rvm/gems/ruby-2.2.2/gems/rake-compiler-0.9.5 && patch -p1 < /home/rvm/rake-compiler-without-exts.diff
|
58
|
+
|
59
|
+
# Build 1.8.7 with mingw32 compiler (GCC 4.2)
|
60
|
+
# Use just one CPU for building 1.8.7 and 1.9.3
|
61
|
+
RUN bash -c "rvm use 1.8.7-p374 && \
|
62
|
+
export CFLAGS='-s -O1 -fno-omit-frame-pointer -fno-fast-math' && \
|
63
|
+
rake-compiler cross-ruby VERSION=1.8.7-p374 HOST=i586-mingw32msvc && \
|
64
|
+
rm -rf ~/.rake-compiler/builds ~/.rake-compiler/sources"
|
65
|
+
|
66
|
+
RUN bash -c "rvm use 1.9.3 && \
|
67
|
+
export CFLAGS='-s -O1 -fno-omit-frame-pointer -fno-fast-math' && \
|
68
|
+
rake-compiler cross-ruby VERSION=1.9.3-p550 HOST=i586-mingw32msvc && \
|
69
|
+
rm -rf ~/.rake-compiler/builds ~/.rake-compiler/sources"
|
70
|
+
|
71
|
+
RUN bash -c "rvm use 2.2.2 --default && \
|
72
|
+
export MAKE=\"make -j`nproc`\" CFLAGS='-s -O1 -fno-omit-frame-pointer -fno-fast-math' && \
|
73
|
+
rake-compiler cross-ruby VERSION=2.0.0-p645 HOST=i686-w64-mingw32 && \
|
74
|
+
rake-compiler cross-ruby VERSION=2.0.0-p645 HOST=x86_64-w64-mingw32 && \
|
75
|
+
rake-compiler cross-ruby VERSION=2.1.6 HOST=i686-w64-mingw32 && \
|
76
|
+
rake-compiler cross-ruby VERSION=2.1.6 HOST=x86_64-w64-mingw32 && \
|
77
|
+
rake-compiler cross-ruby VERSION=2.2.2 HOST=i686-w64-mingw32 && \
|
78
|
+
rake-compiler cross-ruby VERSION=2.2.2 HOST=x86_64-w64-mingw32 && \
|
79
|
+
rm -rf ~/.rake-compiler/builds ~/.rake-compiler/sources && \
|
80
|
+
find /usr/local/rvm -type d | sudo xargs chmod g+sw "
|
81
|
+
|
82
|
+
RUN bash -c " \
|
83
|
+
rvm alias create 1.8 1.8.7-p374 && \
|
84
|
+
rvm alias create 1.9 1.9.3 && \
|
85
|
+
rvm alias create 2.2 2.2.2 "
|
86
|
+
|
87
|
+
USER root
|
88
|
+
|
89
|
+
# Fix paths in rake-compiler/config.yml and add rvm to the global bashrc
|
90
|
+
RUN sed -i -- "s:/root/.rake-compiler:/usr/local/rake-compiler:g" /usr/local/rake-compiler/config.yml && \
|
91
|
+
echo "source /etc/profile.d/rvm.sh" >> /etc/bash.bashrc
|
92
|
+
|
93
|
+
# Install wrappers for strip commands as a workaround for "Protocol error" in boot2docker.
|
94
|
+
ADD src/strip_wrapper /root/
|
95
|
+
RUN mv /opt/mingw/mingw32/bin/i686-w64-mingw32-strip /opt/mingw/mingw32/bin/i686-w64-mingw32-strip.bin && \
|
96
|
+
mv /opt/mingw/mingw64/bin/x86_64-w64-mingw32-strip /opt/mingw/mingw64/bin/x86_64-w64-mingw32-strip.bin && \
|
97
|
+
mv /usr/bin/i586-mingw32msvc-strip /usr/bin/i586-mingw32msvc-strip.bin && \
|
98
|
+
ln /root/strip_wrapper /opt/mingw/mingw32/bin/i686-w64-mingw32-strip && \
|
99
|
+
ln /root/strip_wrapper /opt/mingw/mingw64/bin/x86_64-w64-mingw32-strip && \
|
100
|
+
ln /root/strip_wrapper /usr/bin/i586-mingw32msvc-strip
|
101
|
+
|
102
|
+
# Install SIGINT forwarder
|
103
|
+
ADD src/sigfw.c /root/
|
104
|
+
RUN gcc $HOME/sigfw.c -o /usr/local/bin/sigfw
|
105
|
+
|
106
|
+
# Install user mapper
|
107
|
+
ADD src/runas /usr/local/bin/
|
108
|
+
|
109
|
+
CMD bash
|
data/Gemfile
ADDED
data/History.md
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2015 Lars Kanis
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,60 @@
|
|
1
|
+
# rake-compiler-dock
|
2
|
+
|
3
|
+
Docker based cross compiler environment for building binary windows gems.
|
4
|
+
|
5
|
+
This is similar to [rake-compiler-dev-box](https://github.com/tjschuck/rake-compiler-dev-box) but is based on lightweight Docker containers and is wrapped as a gem for easier usage.
|
6
|
+
|
7
|
+
|
8
|
+
## Installation
|
9
|
+
|
10
|
+
Install docker natively on Linux:
|
11
|
+
|
12
|
+
$ sudo apt-get install docker.io
|
13
|
+
|
14
|
+
... or use the installer on Windows: [boot2docker](https://docs.docker.com/installation/windows)
|
15
|
+
|
16
|
+
Install rake-compiler-dock as a gem. This will download the docker image at the first run:
|
17
|
+
|
18
|
+
$ gem install rake-compiler-dock
|
19
|
+
|
20
|
+
... or build your own gem and docker image:
|
21
|
+
|
22
|
+
$ git clone https://github.com/larskanis/rake-compiler-dock
|
23
|
+
$ rake install
|
24
|
+
|
25
|
+
|
26
|
+
## Usage
|
27
|
+
|
28
|
+
`rake-compiler-dock` can be used to issue commands within the docker image.
|
29
|
+
It mounts the current working directory into the docker environment.
|
30
|
+
All commands are executed with the current user and group of the host.
|
31
|
+
|
32
|
+
`rake-compiler-dock` without arguments starts an interactive shell session.
|
33
|
+
You can choose between different ruby versions by `rvm use <version>` .
|
34
|
+
All changes within the current working directory are shared with the host.
|
35
|
+
But all other changes to the file system are dropped at the end of the session.
|
36
|
+
|
37
|
+
`rake-compiler-dock` can also take the build command(s) from STDIN or as command arguments.
|
38
|
+
|
39
|
+
To build x86- and x64 Windows (Mingw) binary gems, it is typically called like this:
|
40
|
+
|
41
|
+
$ cd your-gem-dir/
|
42
|
+
$ rake-compiler-dock bash -c "bundle && rake cross native gem RUBYOPT=--disable-rubygems"
|
43
|
+
|
44
|
+
The installed cross rubies can be listed like this:
|
45
|
+
|
46
|
+
$ rake-compiler-dock bash -c 'rvmsudo rake-compiler update-config'
|
47
|
+
|
48
|
+
The environment variable `RUBY_CC_VERSION` is predefined and includes all these versions:
|
49
|
+
|
50
|
+
$ rake-compiler-dock bash -c 'echo $RUBY_CC_VERSION' # => 1.8.7:1.9.3:2.0.0:2.1.6:2.2.2
|
51
|
+
|
52
|
+
Overwrite it, if the given gem does not support all of them.
|
53
|
+
|
54
|
+
## Contributing
|
55
|
+
|
56
|
+
1. Fork it ( https://github.com/larskanis/rake-compiler-dock/fork )
|
57
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
58
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
59
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
60
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'rake_compiler_dock'
|
4
|
+
|
5
|
+
if RUBY_PLATFORM =~ /mingw|mswin/
|
6
|
+
# Change Path from "C:\Path" to "/c/Path" as used by boot2docker
|
7
|
+
pwd = Dir.pwd.gsub(/^([a-z]):/i){ "/#{$1.downcase}" }
|
8
|
+
uid = 1000
|
9
|
+
gid = 1000
|
10
|
+
else
|
11
|
+
pwd = Dir.pwd
|
12
|
+
uid = Process.uid
|
13
|
+
gid = Process.gid
|
14
|
+
end
|
15
|
+
user = `id -nu`.chomp
|
16
|
+
group = `id -ng`.chomp
|
17
|
+
args = ARGV.empty? ? ['bash'] : ARGV
|
18
|
+
image = ENV['RAKE_COMPILER_DOCK_IMAGE'] || "larskanis/rake-compiler-dock:#{RakeCompilerDock::VERSION}"
|
19
|
+
|
20
|
+
cmd = ["docker", "run", "--rm", "-i", "-t",
|
21
|
+
"-v", "#{pwd}:#{pwd}",
|
22
|
+
"-e", "UID=#{uid}",
|
23
|
+
"-e", "GID=#{gid}",
|
24
|
+
"-e", "USER=#{user}",
|
25
|
+
"-e", "GROUP=#{group}",
|
26
|
+
"-w", pwd,
|
27
|
+
image,
|
28
|
+
"sigfw", "runas", *args]
|
29
|
+
|
30
|
+
puts cmd.join(" ")
|
31
|
+
system(*cmd)
|
32
|
+
exit $?.exitstatus
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'rake_compiler_dock/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "rake-compiler-dock"
|
8
|
+
spec.version = RakeCompilerDock::VERSION
|
9
|
+
spec.authors = ["Lars Kanis"]
|
10
|
+
spec.email = ["lars@greiz-reinsdorf.de"]
|
11
|
+
spec.summary = %q{Docker based cross compiler environment for building binary windows gems.}
|
12
|
+
spec.description = %q{Use rake-compiler-dock to enter an interactive shell session.}
|
13
|
+
spec.homepage = "https://github.com/larskanis/rake-compiler-dock"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.7"
|
22
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
23
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
diff --git a/tasks/bin/cross-ruby.rake b/tasks/bin/cross-ruby.rake
|
2
|
+
index 6acc816..6aa2a49 100644
|
3
|
+
--- a/tasks/bin/cross-ruby.rake
|
4
|
+
+++ b/tasks/bin/cross-ruby.rake
|
5
|
+
@@ -135,6 +135,7 @@ file "#{USER_HOME}/builds/#{MINGW_HOST}/#{RUBY_CC_VERSION}/Makefile" => ["#{USER
|
6
|
+
"--build=#{RUBY_BUILD}",
|
7
|
+
'--enable-shared',
|
8
|
+
'--disable-install-doc',
|
9
|
+
+ '--with-ext=',
|
10
|
+
'--without-tk',
|
11
|
+
'--without-tcl'
|
12
|
+
]
|
data/src/runas
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
#!/bin/bash
|
2
|
+
|
3
|
+
groupadd -g $GID $GROUP
|
4
|
+
mkdir -p /tmp/home
|
5
|
+
useradd -g $GID -u $UID -G rvm,sudo -p "" -b /tmp/home -m $USER
|
6
|
+
|
7
|
+
HOME=$(bash <<< "echo ~$USER")
|
8
|
+
ln -s /usr/local/rake-compiler $HOME/.rake-compiler
|
9
|
+
|
10
|
+
sudo -u $USER --set-home \
|
11
|
+
BASH_ENV=/etc/rubybashrc \
|
12
|
+
RUBY_CC_VERSION=1.8.7:1.9.3:2.0.0:2.1.6:2.2.2 \
|
13
|
+
-- "$@"
|
data/src/sigfw.c
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
/*
|
2
|
+
* This program handles SIGINT and forwards it to another process.
|
3
|
+
* It is intended to be run as PID 1.
|
4
|
+
*
|
5
|
+
* Docker starts processes with "docker run" as PID 1.
|
6
|
+
* On Linux, the default signal handler for PID 1 ignores any signals.
|
7
|
+
* Therefore Ctrl-C aka SIGINT is ignored per default.
|
8
|
+
*/
|
9
|
+
|
10
|
+
#include <signal.h>
|
11
|
+
#include <sys/types.h>
|
12
|
+
#include <sys/wait.h>
|
13
|
+
|
14
|
+
int pid = 0;
|
15
|
+
|
16
|
+
void
|
17
|
+
handle_sigint (int signum)
|
18
|
+
{
|
19
|
+
if(pid)
|
20
|
+
kill(pid, SIGINT);
|
21
|
+
}
|
22
|
+
|
23
|
+
int main(int argc, char *argv[]){
|
24
|
+
struct sigaction new_action;
|
25
|
+
int status = -1;
|
26
|
+
|
27
|
+
/* Set up the structure to specify the new action. */
|
28
|
+
new_action.sa_handler = handle_sigint;
|
29
|
+
sigemptyset (&new_action.sa_mask);
|
30
|
+
new_action.sa_flags = 0;
|
31
|
+
|
32
|
+
sigaction (SIGINT, &new_action, (void*)0);
|
33
|
+
|
34
|
+
pid = fork();
|
35
|
+
if(pid){
|
36
|
+
wait(&status);
|
37
|
+
return WEXITSTATUS(status);
|
38
|
+
}else{
|
39
|
+
status = execvp(argv[1], &argv[1]);
|
40
|
+
perror("exec");
|
41
|
+
return status;
|
42
|
+
}
|
43
|
+
}
|
data/src/strip_wrapper
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
# Strip file on local folder instead of a Virtualbox shared folder
|
4
|
+
# to work around this bug: https://www.virtualbox.org/ticket/8463
|
5
|
+
|
6
|
+
require 'tempfile'
|
7
|
+
require 'fileutils'
|
8
|
+
|
9
|
+
strip = "#{File.basename($0)}.bin"
|
10
|
+
|
11
|
+
files = ARGV.reject{|f| f=~/^-/ }.map do |arg|
|
12
|
+
tmp = Tempfile.new 'strip'
|
13
|
+
FileUtils.cp arg, tmp.path
|
14
|
+
[tmp, arg]
|
15
|
+
end
|
16
|
+
|
17
|
+
options = ARGV.select{|f| f=~/^-/ } + files.map{|t,o| t.path }
|
18
|
+
|
19
|
+
unless system( strip, *options )
|
20
|
+
puts "unable to execute #{strip}"
|
21
|
+
exit 127
|
22
|
+
end
|
23
|
+
code = $?.exitstatus
|
24
|
+
|
25
|
+
files.each do |tmp, orig|
|
26
|
+
FileUtils.cp tmp.path, orig
|
27
|
+
end
|
28
|
+
|
29
|
+
exit code
|
metadata
ADDED
@@ -0,0 +1,109 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rake-compiler-dock
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Lars Kanis
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain:
|
11
|
+
- |
|
12
|
+
-----BEGIN CERTIFICATE-----
|
13
|
+
MIIDLjCCAhagAwIBAgIBAzANBgkqhkiG9w0BAQUFADA9MQ4wDAYDVQQDDAVrYW5p
|
14
|
+
czEXMBUGCgmSJomT8ixkARkWB2NvbWNhcmQxEjAQBgoJkiaJk/IsZAEZFgJkZTAe
|
15
|
+
Fw0xNTAyMjYxNDIyNDRaFw0xNjAyMjYxNDIyNDRaMD0xDjAMBgNVBAMMBWthbmlz
|
16
|
+
MRcwFQYKCZImiZPyLGQBGRYHY29tY2FyZDESMBAGCgmSJomT8ixkARkWAmRlMIIB
|
17
|
+
IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApop+rNmg35bzRugZ21VMGqI6
|
18
|
+
HGzPLO4VHYncWn/xmgPU/ZMcZdfj6MzIaZJ/czXyt4eHpBk1r8QOV3gBXnRXEjVW
|
19
|
+
9xi+EdVOkTV2/AVFKThcbTAQGiF/bT1n2M+B1GTybRzMg6hyhOJeGPqIhLfJEpxn
|
20
|
+
lJi4+ENAVT4MpqHEAGB8yFoPC0GqiOHQsdHxQV3P3c2OZqG+yJey74QtwA2tLcLn
|
21
|
+
Q53c63+VLGsOjODl1yPn/2ejyq8qWu6ahfTxiIlSar2UbwtaQGBDFdb2CXgEufXT
|
22
|
+
L7oaPxlmj+Q2oLOfOnInd2Oxop59HoJCQPsg8f921J43NCQGA8VHK6paxIRDLQID
|
23
|
+
AQABozkwNzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQUvgTdT7fe
|
24
|
+
x17ugO3IOsjEJwW7KP4wDQYJKoZIhvcNAQEFBQADggEBAE4pDPwv7zV/guo2ZETn
|
25
|
+
V+oVXMvEtUv7lPLpUYTM/g1qHP+mue4vZrhHTZbqEgxZEv03noz/4yIHizMQljED
|
26
|
+
6aUw0DSCQiOtK39LeHE2SfVPnpJdl6R9WX6ObdhNvN3Q9bJL2Ng3TTPidj9on2jO
|
27
|
+
6SevWmI9NMDsupzXOjeuNKbUivcCKgIsp3+qjw1gGURF6eITEM+kxV+u4eC5ah/f
|
28
|
+
iV4wuwAX30bHxaaOA2owy1BJBOHwTl5XBJFKWBf+HlTIGL6yrOjTb+rB+/rSTttv
|
29
|
+
1i6jssufMLmyDB9b1ss72d7xQQpCHH7oizgt84wKAcsV8b83kGbAhtoszY3TgGiJ
|
30
|
+
rww=
|
31
|
+
-----END CERTIFICATE-----
|
32
|
+
date: 2015-05-28 00:00:00.000000000 Z
|
33
|
+
dependencies:
|
34
|
+
- !ruby/object:Gem::Dependency
|
35
|
+
name: bundler
|
36
|
+
requirement: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.7'
|
41
|
+
type: :development
|
42
|
+
prerelease: false
|
43
|
+
version_requirements: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.7'
|
48
|
+
- !ruby/object:Gem::Dependency
|
49
|
+
name: rake
|
50
|
+
requirement: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.0'
|
55
|
+
type: :development
|
56
|
+
prerelease: false
|
57
|
+
version_requirements: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '10.0'
|
62
|
+
description: Use rake-compiler-dock to enter an interactive shell session.
|
63
|
+
email:
|
64
|
+
- lars@greiz-reinsdorf.de
|
65
|
+
executables:
|
66
|
+
- rake-compiler-dock
|
67
|
+
extensions: []
|
68
|
+
extra_rdoc_files: []
|
69
|
+
files:
|
70
|
+
- ".gitignore"
|
71
|
+
- Dockerfile
|
72
|
+
- Gemfile
|
73
|
+
- History.md
|
74
|
+
- LICENSE.txt
|
75
|
+
- README.md
|
76
|
+
- Rakefile
|
77
|
+
- bin/rake-compiler-dock
|
78
|
+
- lib/rake_compiler_dock.rb
|
79
|
+
- lib/rake_compiler_dock/version.rb
|
80
|
+
- rake-compiler-dock.gemspec
|
81
|
+
- src/rake-compiler-without-exts.diff
|
82
|
+
- src/runas
|
83
|
+
- src/sigfw.c
|
84
|
+
- src/strip_wrapper
|
85
|
+
homepage: https://github.com/larskanis/rake-compiler-dock
|
86
|
+
licenses:
|
87
|
+
- MIT
|
88
|
+
metadata: {}
|
89
|
+
post_install_message:
|
90
|
+
rdoc_options: []
|
91
|
+
require_paths:
|
92
|
+
- lib
|
93
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
94
|
+
requirements:
|
95
|
+
- - ">="
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: '0'
|
98
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - ">="
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '0'
|
103
|
+
requirements: []
|
104
|
+
rubyforge_project:
|
105
|
+
rubygems_version: 2.4.5
|
106
|
+
signing_key:
|
107
|
+
specification_version: 4
|
108
|
+
summary: Docker based cross compiler environment for building binary windows gems.
|
109
|
+
test_files: []
|
metadata.gz.sig
ADDED
Binary file
|