iron_worker_ng 0.13.0 → 0.13.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/lib/iron_worker_ng/code/base.rb +0 -3
- data/lib/iron_worker_ng/code/builder.rb +4 -2
- data/lib/iron_worker_ng/code/container/base.rb +2 -2
- data/lib/iron_worker_ng/code/container/zip.rb +2 -2
- data/lib/iron_worker_ng/code/runtime/ruby.rb +1 -1
- data/lib/iron_worker_ng/version.rb +1 -1
- metadata +2 -2
@@ -257,9 +257,6 @@ RUNNER
|
|
257
257
|
builder = IronWorkerNG::Code::Builder.new
|
258
258
|
builder.builder_remote_build_command = @remote_build_command
|
259
259
|
|
260
|
-
builder.gem('iron_worker_ng')
|
261
|
-
builder.fixate
|
262
|
-
|
263
260
|
builder.bundle(container, local)
|
264
261
|
|
265
262
|
container.get_output_stream(@name + '.worker') do |wf|
|
@@ -38,12 +38,14 @@ BUILDER_SH
|
|
38
38
|
|
39
39
|
require 'json'
|
40
40
|
|
41
|
-
require 'iron_worker_ng'
|
42
|
-
|
43
41
|
File.open('.gemrc', 'w') do |gemrc|
|
44
42
|
gemrc.puts('gem: --no-ri --no-rdoc')
|
45
43
|
end
|
46
44
|
|
45
|
+
puts `gem install iron_worker_ng -v #{IronWorkerNG::VERSION}`
|
46
|
+
|
47
|
+
require 'iron_worker_ng'
|
48
|
+
|
47
49
|
IronWorkerNG::Feature::Ruby::MergeGem.merge_binary = true
|
48
50
|
|
49
51
|
code = IronWorkerNG::Code::Base.new(params[:code_name])
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: iron_worker_ng
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.13.
|
4
|
+
version: 0.13.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2012-11-
|
13
|
+
date: 2012-11-26 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: iron_core
|