Skip to content

Commit

Permalink
move class under module
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
scambra committed Dec 19, 2024
1 parent 0d5dbfe commit d780d06
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions lib/active_scaffold/data_structures/action_link_separator.rb
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
class ActionLinkSeparator
def initialize(weight)
@weight = weight
end
module ActiveScaffold::DataStructures
class ActionLinkSeparator
def initialize(weight)
@weight = weight
end

attr_reader :weight
attr_reader :weight

def ==(other)
other == :separator
end
def ==(other)
other == :separator
end

def name_to_cache; end # :nodoc:
def name_to_cache; end # :nodoc:
end
end

0 comments on commit d780d06

Please sign in to comment.