summaryrefslogtreecommitdiffhomepage
path: root/lib/axlsx/stylesheet/gradient_stop.rb
diff options
context:
space:
mode:
authorZsolt Kozaroczy <[email protected]>2023-06-13 16:15:27 +0200
committerGitHub <[email protected]>2023-06-13 16:15:27 +0200
commite74c75b95d39fb51512387031e79f50e52a5874a (patch)
tree6b8ccc2cea0cbdc9c9255e986daf2c7dcbe0d4c5 /lib/axlsx/stylesheet/gradient_stop.rb
parent63a58ba6e35f4807710ba5d8935400d7e502cb30 (diff)
parentdd391d24da8e29525fe2c86ea7c32c1f76cfa938 (diff)
downloadcaxlsx-e74c75b95d39fb51512387031e79f50e52a5874a.tar.gz
caxlsx-e74c75b95d39fb51512387031e79f50e52a5874a.zip
Merge pull request #283 from tagliala/chore/lambda-style
Fix safe Style/Lambda offenses
Diffstat (limited to 'lib/axlsx/stylesheet/gradient_stop.rb')
-rw-r--r--lib/axlsx/stylesheet/gradient_stop.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/axlsx/stylesheet/gradient_stop.rb b/lib/axlsx/stylesheet/gradient_stop.rb
index dd0ea00f..b0d66683 100644
--- a/lib/axlsx/stylesheet/gradient_stop.rb
+++ b/lib/axlsx/stylesheet/gradient_stop.rb
@@ -24,7 +24,7 @@ module Axlsx
# @see color
def color=(v) DataTypeValidator.validate "GradientStop.color", Color, v; @color = v end
# @see position
- def position=(v) DataTypeValidator.validate "GradientStop.position", Float, v, lambda { |arg| arg >= 0 && arg <= 1 }; @position = v end
+ def position=(v) DataTypeValidator.validate "GradientStop.position", Float, v, ->(arg) { arg >= 0 && arg <= 1 }; @position = v end
# Serializes the object
# @param [String] str