blob: aca09abda6eedd4e7c6c7652135b14761f425d79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# ===GLSAMaker v2
# Copyright (C) 2010 Alex Legler <a3li@gentoo.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# For more information, see the LICENSE file.
module Glsamaker
module_function
def help
Helper.instance
end
class Helper
include Singleton
include ::ActionView::Helpers::TextHelper
end
end
|