Module: Elastico

Defined in:
lib/elastico.rb,
lib/elastico/index.rb,
lib/elastico/client.rb,
lib/elastico/import.rb,
lib/elastico/search.rb,
lib/elastico/version.rb,
lib/elastico/callbacks.rb,
lib/elastico/configuration.rb

Defined Under Namespace

Modules: Callbacks, Client, Configuration, Import, Index, Search

Constant Summary collapse

VERSION =
"0.0.8"

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object



10
11
12
13
14
15
16
17
18
# File 'lib/elastico.rb', line 10

def self.included(base)
 	base.extend Configuration
 	base.extend Index
 	base.extend Search
	base.extend Client
	base.extend Import

	base.send :include_callbacks
end