summaryrefslogtreecommitdiffhomepage
path: root/lib/felflame
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2022-01-03 08:25:17 -0500
committerrealtradam <[email protected]>2022-01-03 08:25:17 -0500
commitef9d4d0dcdebbd5ed314cb874e373031cae08438 (patch)
treeee70c5357d5969caaed08446c32746e656b223e6 /lib/felflame
parentaad51d646812804052ce2ae5e926b667b4e24d6d (diff)
downloadFelECS-ef9d4d0dcdebbd5ed314cb874e373031cae08438.tar.gz
FelECS-ef9d4d0dcdebbd5ed314cb874e373031cae08438.zip
Diffstat (limited to 'lib/felflame')
-rw-r--r--lib/felflame/order.rb7
-rw-r--r--lib/felflame/version.rb2
2 files changed, 5 insertions, 4 deletions
diff --git a/lib/felflame/order.rb b/lib/felflame/order.rb
index 3202b25..c11438d 100644
--- a/lib/felflame/order.rb
+++ b/lib/felflame/order.rb
@@ -1,11 +1,12 @@
+# frozen_string_literal: true
+
module FelFlame
module Order
-
- # Sets the priority of all items passed into this method
+ # Sets the priority of all items passed into this method
# according to the order they were passed.
# If an array is one of the elements then it will give all
# of those elements in the array the same priority.
- # @param sortables [(Systems and Array<Systems>) or (Scenes and Array<Scenes>)]
+ # @param sortables [(Systems and Array<Systems>) or (Scenes and Array<Scenes>)]
# @return [Boolean] +true+.
def self.sort(*sortables)
sortables.each_with_index do |sorted, index|
diff --git a/lib/felflame/version.rb b/lib/felflame/version.rb
index b200c26..9f7f09e 100644
--- a/lib/felflame/version.rb
+++ b/lib/felflame/version.rb
@@ -4,6 +4,6 @@
# Keeps the version of the Gem
module Felflame
# The version of the Gem
- VERSION = '3.0.0'
+ VERSION = '4.0.0'
end
# :nocov: