mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-19 08:40:12 +01:00
6 lines
127 B
Ruby
Executable file
6 lines
127 B
Ruby
Executable file
class Object
|
|
def args_and_options(*args)
|
|
options = Hash === args.last ? args.pop : {}
|
|
return args, options
|
|
end
|
|
end
|