Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
omnibus-heptapod
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
heptapod
omnibus-heptapod
Commits
95b7c84f
Commit
95b7c84f
authored
5 years ago
by
DJ Mountney
Browse files
Options
Downloads
Patches
Plain Diff
Seperate proxy object from deprecations
parent
af78d445
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
files/gitlab-cookbooks/package/libraries/deprecations.rb
+4
-23
4 additions, 23 deletions
files/gitlab-cookbooks/package/libraries/deprecations.rb
files/gitlab-cookbooks/package/libraries/object_proxy.rb
+49
-0
49 additions, 0 deletions
files/gitlab-cookbooks/package/libraries/object_proxy.rb
with
53 additions
and
23 deletions
files/gitlab-cookbooks/package/libraries/deprecations.rb
+
4
−
23
View file @
95b7c84f
require
'chef/mixin/deprecation'
require_relative
'object_proxy'
require_relative
'helpers/logging_helper'
module
Gitlab
...
...
@@ -113,7 +112,7 @@
end
# Inspired by DeprecatedInstanceVariable in https://github.com/chef/chef/blob/master/lib/chef/mixin/deprecation.rb
class
NodeAttribute
<
::
Chef
::
Mixin
::
Deprecation
::
Deprecated
ObjectProxy
Base
class
NodeAttribute
<
ObjectProxy
def
self
.
log_deprecations?
@log_deprecations
||
false
end
...
...
@@ -128,5 +127,5 @@
@new_var_name
=
new_var_name
end
def
method_missing
(
method_name
,
*
args
,
&
block
)
def
method_missing
(
method_name
,
*
args
,
&
block
)
# rubocop:disable Style/MissingRespondToMissing
deprecated_msg
(
caller
[
0
..
2
])
if
NodeAttribute
.
log_deprecations?
...
...
@@ -132,23 +131,5 @@
deprecated_msg
(
caller
[
0
..
2
])
if
NodeAttribute
.
log_deprecations?
current_target
=
target
(
current_target
.
respond_to?
(
method_name
,
true
)
&&
current_target
.
send
(
method_name
,
*
args
,
&
block
))
||
super
end
def
respond_to_missing?
(
method_name
,
include_private
=
false
)
target
.
send
(
:respond_to_missing?
,
method_name
,
include_private
)
||
super
end
[
:nil?
,
:inspect
].
each
do
|
method_name
|
define_method
(
method_name
)
do
|*
args
,
&
block
|
target
.
send
(
method_name
,
*
args
,
&
block
)
end
end
def
target
# Support for defered procs/lambdas
return
@target
.
call
if
@target
.
respond_to?
(
:call
)
@target
super
end
private
...
...
This diff is collapsed.
Click to expand it.
files/gitlab-cookbooks/package/libraries/object_proxy.rb
0 → 100644
+
49
−
0
View file @
95b7c84f
#
# Copyright:: Copyright (c) 2019 GitLab Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
require
'chef/mixin/deprecation'
module
Gitlab
# Inspired by DeprecatedInstanceVariable in https://github.com/chef/chef/blob/master/lib/chef/mixin/deprecation.rb
class
ObjectProxy
<
::
Chef
::
Mixin
::
Deprecation
::
DeprecatedObjectProxyBase
def
initialize
(
target
)
@target
=
target
end
def
method_missing
(
method_name
,
*
args
,
&
block
)
current_target
=
target
(
current_target
.
respond_to?
(
method_name
,
true
)
&&
current_target
.
send
(
method_name
,
*
args
,
&
block
))
||
super
end
def
respond_to_missing?
(
method_name
,
include_private
=
false
)
target
.
send
(
:respond_to_missing?
,
method_name
,
include_private
)
||
super
end
[
:nil?
,
:inspect
].
each
do
|
method_name
|
define_method
(
method_name
)
do
|*
args
,
&
block
|
target
.
send
(
method_name
,
*
args
,
&
block
)
end
end
def
target
# Support for defered procs/lambdas
return
@target
.
call
if
@target
.
respond_to?
(
:call
)
@target
end
end
end
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment