Skip to content

Commit d477e96

Browse files
committed
change docker agent paths
1 parent 7a353d8 commit d477e96

File tree

25 files changed

+30
-30
lines changed

25 files changed

+30
-30
lines changed

HYPERSTACK_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
'1.0.alpha1.8.0012'
1+
'1.0.alpha1.8.0014'

ruby/hyper-component/lib/hyper-component.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@
4747
require 'hyperstack/component/isomorphic_helpers'
4848
require 'hyperstack/ext/component/serializers'
4949

50-
Opal.append_path File.expand_path('../', __FILE__)
50+
Opal.append_path File.expand_path('../', __FILE__).untaint
5151
require 'react/react-source'
5252
end
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Hyperstack
22
module Component
3-
VERSION = '1.0.alpha1.8.0012' # '1.0.alpha1.5'
3+
VERSION = '1.0.alpha1.8.0014' # '1.0.alpha1.5'
44
end
55
end

ruby/hyper-component/lib/react/react-source.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
require "react/rails/asset_variant"
1414
variant = Hyperstack.env.production? ? :production : :development
1515
react_directory = React::Rails::AssetVariant.new({ variant: variant }).react_directory
16-
Opal.append_path react_directory
16+
Opal.append_path react_directory.untaint
1717
end

ruby/hyper-console/lib/hyper-console.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
require 'securerandom'
1010
else
1111
require 'hyperloop/console/engine'
12-
Opal.append_path File.expand_path('../', __FILE__)
12+
Opal.append_path File.expand_path('../', __FILE__).untaint
1313
end
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Hyperloop
22
module Console
3-
VERSION = '1.0.alpha1.8.0012'
3+
VERSION = '1.0.alpha1.8.0014'
44
end
55
end

ruby/hyper-i18n/lib/hyper-i18n.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@
1919
else
2020
require 'opal'
2121

22-
Opal.append_path File.expand_path('../', __FILE__)
22+
Opal.append_path File.expand_path('../', __FILE__).untaint
2323
end
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module HyperI18n
2-
VERSION = '1.0.alpha1.8.0012'
2+
VERSION = '1.0.alpha1.8.0014'
33
end
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Hyperstack
22
module I18n
3-
VERSION = '1.0.alpha1.8.0012'
3+
VERSION = '1.0.alpha1.8.0014'
44
end
55
end

ruby/hyper-model/lib/hyper-model.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@
6262
require_relative 'active_record_base'
6363
require 'hyper_model/version'
6464

65-
Opal.append_path File.expand_path('../sources/', __FILE__)
66-
Opal.append_path File.expand_path('../', __FILE__)
67-
Opal.append_path File.expand_path('../../vendor', __FILE__)
65+
Opal.append_path File.expand_path('../sources/', __FILE__).untaint
66+
Opal.append_path File.expand_path('../', __FILE__).untaint
67+
Opal.append_path File.expand_path('../../vendor', __FILE__).untaint
6868
end
6969
require 'enumerable/pluck'

0 commit comments

Comments
 (0)