Skip to content

Commit 0767956

Browse files
committed
remove ignored frozen string directive
1 parent 08b46c1 commit 0767956

File tree

13 files changed

+68
-20
lines changed

13 files changed

+68
-20
lines changed

contributed/jwishy.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# frozen_string_literal: true
21
# This one has a long lineage:
32
# It was originally adapted to Shoes in Ruby,
43
# from a Python example for Nodebox, and then, now

external_library/java/gicentreUtils/chart.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# encoding: utf-8
2-
# frozen_string_literal: true
31
load_library :gicentreUtils
42
include_package 'org.gicentre.utils.stat' # For chart classes.
53

processing_app/basics/color/blend_color.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# encoding: utf-8
2-
# frozen_string_literal: true
31
# example of processing blend_color (uses PImage blend_color under the hood)
42
# blend_color(c1, c2, MODE) returns a color int
53

processing_app/basics/color/color_wheel.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# encoding: utf-8
2-
# frozen_string_literal: true
31
# Subtractive Color Wheel
42
# by Ira Greenberg.
53
#

processing_app/basics/color/creating.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# encoding: utf-8
2-
# frozen_string_literal: true
31
# Creating Colors (Homage to Albers).
42
#
53
# Creating variables for colors that may be referred to

processing_app/basics/color/creating2.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# encoding: utf-8
2-
# frozen_string_literal: true
31
# Creating Colors (Homage to Albers).
42
#
53
# Creating variables for colors that may be referred to

processing_app/basics/color/hue.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# encoding: utf-8
2-
# frozen_string_literal: true
31
# Hue is the color reflected from or transmitted through an object
42
# typically referred to as the name of the color (red, blue, yellow, etc.)
53
# Move the cursor vertically over each bar to alter its hue.

processing_app/library/slider/slider_demo.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# encoding: utf-8
2-
# frozen_string_literal: true
31
load_library :slider
42
attr_reader :color1, :color2, :color3, :r, :gs, :b, :back
53

processing_app/library/slider/slider_example.rb

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# encoding: utf-8
2-
# frozen_string_literal: true
3-
41
load_library :slider
52
attr_reader :color1, :color2, :color3, :r, :gs, :b, :back
63

processing_app/library/slider/slider_simple.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# encoding: utf-8
2-
# frozen_string_literal: true
31
load_library :slider
42
attr_reader :color1, :color2, :color3, :r, :gs, :b, :back
53

0 commit comments

Comments
 (0)