forked from OpenNeo/impress
19 lines
563 B
Ruby
19 lines
563 B
Ruby
|
# inspect the methods loaded in this module and their usage
|
||
|
# in the rails console by just typing:
|
||
|
# >> puts FlexSearch.flex.info
|
||
|
# you can eventually restrict the info to a single method by pasing its name:
|
||
|
# >> puts FlexSearch.flex.info :search
|
||
|
# see the detailed doc for this feature at https://github.com/ddnexus/flex/wiki/Selfdoc
|
||
|
|
||
|
module FlexSearch
|
||
|
|
||
|
extend self
|
||
|
|
||
|
include Flex::Loader
|
||
|
flex.load_search_source
|
||
|
|
||
|
# you may need to add more method here, usually wrapper methods
|
||
|
# that use one of the autogenerated methods from the loaded templates
|
||
|
|
||
|
end
|