esse 0.0.5 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/exec/esse +3 -1
- data/lib/esse/backend/index/aliases.rb +7 -3
- data/lib/esse/backend/index/close.rb +6 -3
- data/lib/esse/backend/index/create.rb +19 -8
- data/lib/esse/backend/index/delete.rb +13 -8
- data/lib/esse/backend/index/documents.rb +2 -2
- data/lib/esse/backend/index/existance.rb +1 -1
- data/lib/esse/backend/index/open.rb +6 -3
- data/lib/esse/backend/index/refresh.rb +2 -2
- data/lib/esse/backend/index/reset.rb +2 -4
- data/lib/esse/backend/index/update.rb +37 -12
- data/lib/esse/backend/index.rb +5 -1
- data/lib/esse/backend/index_type/documents.rb +7 -7
- data/lib/esse/cli/event_listener.rb +87 -0
- data/lib/esse/cli/generate.rb +7 -3
- data/lib/esse/cli/index/base_operation.rb +76 -0
- data/lib/esse/cli/index/close.rb +26 -0
- data/lib/esse/cli/index/create.rb +26 -0
- data/lib/esse/cli/index/delete.rb +26 -0
- data/lib/esse/cli/index/import.rb +26 -0
- data/lib/esse/cli/index/open.rb +26 -0
- data/lib/esse/cli/index/reset.rb +26 -0
- data/lib/esse/cli/index/update_aliases.rb +32 -0
- data/lib/esse/cli/index/update_mapping.rb +33 -0
- data/lib/esse/cli/index/update_settings.rb +26 -0
- data/lib/esse/cli/index.rb +78 -2
- data/lib/esse/cli/templates/config.rb.erb +20 -0
- data/lib/esse/cli/templates/index.rb.erb +74 -9
- data/lib/esse/cli/templates/type_collection.rb.erb +41 -0
- data/lib/esse/cli/templates/{mappings.json → type_mappings.json} +0 -0
- data/lib/esse/cli/templates/{serializer.rb.erb → type_serializer.rb.erb} +9 -4
- data/lib/esse/cli.rb +75 -3
- data/lib/esse/cluster.rb +18 -2
- data/lib/esse/config.rb +39 -5
- data/lib/esse/core.rb +15 -33
- data/lib/esse/document.rb +43 -0
- data/lib/esse/errors.rb +47 -0
- data/lib/esse/events/bus.rb +103 -0
- data/lib/esse/events/event.rb +64 -0
- data/lib/esse/events/publisher.rb +119 -0
- data/lib/esse/events.rb +49 -0
- data/lib/esse/index/backend.rb +2 -1
- data/lib/esse/index/base.rb +4 -6
- data/lib/esse/index/mappings.rb +2 -3
- data/lib/esse/index/settings.rb +7 -8
- data/lib/esse/index.rb +2 -1
- data/lib/esse/index_mapping.rb +2 -2
- data/lib/esse/index_setting.rb +8 -4
- data/lib/esse/index_type/actions.rb +2 -1
- data/lib/esse/index_type/backend.rb +2 -1
- data/lib/esse/index_type/mappings.rb +2 -2
- data/lib/esse/index_type.rb +6 -1
- data/lib/esse/logging.rb +19 -0
- data/lib/esse/object_document_mapper.rb +110 -0
- data/lib/esse/primitives/hash_utils.rb +40 -0
- data/lib/esse/primitives/hstring.rb +4 -3
- data/lib/esse/primitives/output.rb +64 -0
- data/lib/esse/primitives.rb +1 -0
- data/lib/esse/template_loader.rb +1 -1
- data/lib/esse/version.rb +1 -1
- data/lib/esse.rb +12 -3
- metadata +108 -22
- data/.gitignore +0 -12
- data/.rubocop.yml +0 -128
- data/.tool-versions +0 -1
- data/.yardopts +0 -2
- data/CHANGELOG.md +0 -0
- data/Gemfile +0 -7
- data/Gemfile.lock +0 -62
- data/LICENSE.txt +0 -21
- data/README.md +0 -52
- data/Rakefile +0 -4
- data/bin/console +0 -22
- data/bin/setup +0 -8
- data/esse.gemspec +0 -40
- data/lib/esse/index_type/serializer.rb +0 -87
data/lib/esse/index.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require_relative '
|
3
|
+
require_relative 'object_document_mapper'
|
4
4
|
|
5
5
|
module Esse
|
6
6
|
class Index
|
@@ -13,6 +13,7 @@ module Esse
|
|
13
13
|
require_relative 'index/mappings'
|
14
14
|
require_relative 'index/descendants'
|
15
15
|
require_relative 'index/backend'
|
16
|
+
extend ObjectDocumentMapper
|
16
17
|
|
17
18
|
@cluster_id = nil
|
18
19
|
|
data/lib/esse/index_mapping.rb
CHANGED
@@ -12,14 +12,14 @@ module Esse
|
|
12
12
|
|
13
13
|
# This method will be overwrited when passing a block during the
|
14
14
|
# mapping defination
|
15
|
-
def
|
15
|
+
def to_h
|
16
16
|
return @mappings unless @mappings.empty?
|
17
17
|
|
18
18
|
from_template || @mappings
|
19
19
|
end
|
20
20
|
|
21
21
|
def body
|
22
|
-
|
22
|
+
to_h
|
23
23
|
end
|
24
24
|
|
25
25
|
def empty?
|
data/lib/esse/index_setting.rb
CHANGED
@@ -3,8 +3,12 @@
|
|
3
3
|
module Esse
|
4
4
|
# https://www.elastic.co/guide/en/elasticsearch/reference/1.7/indices.html
|
5
5
|
class IndexSetting
|
6
|
-
|
7
|
-
|
6
|
+
# @param [Hash] options
|
7
|
+
# @option options [Proc] :globals A proc that will be called to load global settings
|
8
|
+
# @option options [Array] :paths A list of paths to load settings from
|
9
|
+
# @option options [Hash] :body A hash of settings to override
|
10
|
+
def initialize(body: {}, paths: [], globals: nil)
|
11
|
+
@globals = globals || -> { {} }
|
8
12
|
@paths = Array(paths)
|
9
13
|
@settings = body
|
10
14
|
end
|
@@ -19,14 +23,14 @@ module Esse
|
|
19
23
|
# end
|
20
24
|
# end
|
21
25
|
#
|
22
|
-
def
|
26
|
+
def to_h
|
23
27
|
return @settings unless @settings.empty?
|
24
28
|
|
25
29
|
from_template || @settings
|
26
30
|
end
|
27
31
|
|
28
32
|
def body
|
29
|
-
@globals.
|
33
|
+
HashUtils.deep_merge(@globals.call, to_h)
|
30
34
|
end
|
31
35
|
|
32
36
|
protected
|
@@ -7,9 +7,9 @@ module Esse
|
|
7
7
|
# This method is only used to define mapping
|
8
8
|
def mappings(hash = {}, &block)
|
9
9
|
@mapping = Esse::IndexMapping.new(body: hash, paths: template_dirs, filenames: mapping_filenames)
|
10
|
-
return unless
|
10
|
+
return unless block
|
11
11
|
|
12
|
-
@mapping.define_singleton_method(:
|
12
|
+
@mapping.define_singleton_method(:to_h, &block)
|
13
13
|
end
|
14
14
|
|
15
15
|
# This is the actually content that will be passed through the ES api
|
data/lib/esse/index_type.rb
CHANGED
@@ -1,10 +1,15 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require_relative 'object_document_mapper'
|
4
|
+
|
3
5
|
module Esse
|
6
|
+
# Type is actually deprecated. Elasticsearch today uses _doc instead of type
|
7
|
+
# And in upcoming release it will be totally removed.
|
8
|
+
# But I want to keep compatibility with old versions of es.
|
4
9
|
class IndexType
|
5
10
|
require_relative 'index_type/actions'
|
6
11
|
require_relative 'index_type/mappings'
|
7
|
-
require_relative 'index_type/serializer'
|
8
12
|
require_relative 'index_type/backend'
|
13
|
+
extend ObjectDocumentMapper
|
9
14
|
end
|
10
15
|
end
|
data/lib/esse/logging.rb
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'logger'
|
2
|
+
|
3
|
+
module Esse
|
4
|
+
module Logging
|
5
|
+
def self.included(base)
|
6
|
+
base.extend(ClassMethods)
|
7
|
+
end
|
8
|
+
|
9
|
+
module ClassMethods
|
10
|
+
def logger
|
11
|
+
@logger ||= ::Logger.new($stdout)
|
12
|
+
end
|
13
|
+
|
14
|
+
def logger=(log)
|
15
|
+
@logger = log || ::Logger.new(File::NULL)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,110 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Esse
|
4
|
+
module ObjectDocumentMapper
|
5
|
+
# Convert ruby object to json. Arguments will be same of passed through the
|
6
|
+
# collection. It's allowed a block or a class with the `to_h` instance method.
|
7
|
+
# Example with block
|
8
|
+
# serializer do |model, **context|
|
9
|
+
# {
|
10
|
+
# id: model.id,
|
11
|
+
# admin: context[:is_admin],
|
12
|
+
# }
|
13
|
+
# end
|
14
|
+
# Example with serializer class
|
15
|
+
# serializer UserSerializer
|
16
|
+
def serializer(klass = nil, &block)
|
17
|
+
if block
|
18
|
+
@serializer_proc = block
|
19
|
+
elsif klass.is_a?(Class) && klass.instance_methods.include?(:to_h)
|
20
|
+
@serializer_proc = proc { |*args, **kwargs| klass.new(*args, **kwargs).to_h }
|
21
|
+
elsif klass.is_a?(Class) && klass.instance_methods.include?(:as_json) # backward compatibility
|
22
|
+
@serializer_proc = proc { |*args, **kwargs| klass.new(*args, **kwargs).as_json }
|
23
|
+
elsif klass.is_a?(Class) && klass.instance_methods.include?(:call)
|
24
|
+
@serializer_proc = proc { |*args, **kwargs| klass.new(*args, **kwargs).call }
|
25
|
+
else
|
26
|
+
msg = format('%<arg>p is not a valid serializer. The serializer should ' \
|
27
|
+
'respond with `to_h` instance method.', arg: klass,)
|
28
|
+
raise ArgumentError, msg
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
def serialize(model, *args, **kwargs)
|
33
|
+
unless @serializer_proc
|
34
|
+
raise NotImplementedError, format('there is no serializer defined for the %<k>p index', k: to_s)
|
35
|
+
end
|
36
|
+
|
37
|
+
@serializer_proc.call(model, *args, **kwargs)
|
38
|
+
end
|
39
|
+
|
40
|
+
# Used to define the source of data. A block is required. And its
|
41
|
+
# content should yield an array of each object that should be serialized.
|
42
|
+
# The list of arguments will be passed throught the serializer method.
|
43
|
+
#
|
44
|
+
# Here is an example of how this should work:
|
45
|
+
# collection do |conditions, &block|
|
46
|
+
# User.where(conditions).find_in_batches(batch_size: 5000) do |batch|
|
47
|
+
# block.call(batch, conditions)
|
48
|
+
# end
|
49
|
+
# end
|
50
|
+
def collection(collection_class = nil, &block)
|
51
|
+
raise ArgumentError, 'a collection class or a block is required' if block.nil? && collection_class.nil?
|
52
|
+
|
53
|
+
if block.nil? && collection_class.is_a?(Class) && !collection_class.include?(Enumerable)
|
54
|
+
msg = '%<arg>p is not a valid collection class.' \
|
55
|
+
' Collections should implement the Enumerable interface'
|
56
|
+
raise ArgumentError, format(msg, arg: collection_class)
|
57
|
+
end
|
58
|
+
|
59
|
+
@collection_proc = collection_class || block
|
60
|
+
end
|
61
|
+
|
62
|
+
# Used to fetch all batch of data defined on the collection model.
|
63
|
+
# Arguments can be anything. They will just be passed through the block.
|
64
|
+
# Useful when the collection depends on scope or any other conditions
|
65
|
+
# Example
|
66
|
+
# each_batch(active: true) do |data, _opts|
|
67
|
+
# puts data.size
|
68
|
+
# end
|
69
|
+
def each_batch(*args, **kwargs, &block)
|
70
|
+
unless @collection_proc
|
71
|
+
raise NotImplementedError, format('there is no collection defined for the %<k>p index', k: to_s)
|
72
|
+
end
|
73
|
+
|
74
|
+
case @collection_proc
|
75
|
+
when Class
|
76
|
+
@collection_proc.new(*args, **kwargs).each(&block)
|
77
|
+
else
|
78
|
+
@collection_proc.call(*args, **kwargs, &block)
|
79
|
+
end
|
80
|
+
rescue LocalJumpError
|
81
|
+
raise(SyntaxError, 'block must be explicitly declared in the collection definition')
|
82
|
+
end
|
83
|
+
|
84
|
+
# Wrap collection data into serialized batches
|
85
|
+
#
|
86
|
+
# @param args [*Object] Any argument is allowed here. The collection will be called with same arguments.
|
87
|
+
# And the serializer will be initialized with those arguments too.
|
88
|
+
# @yield [Array, *Object] serialized collection and method arguments
|
89
|
+
def each_serialized_batch(*args, **kwargs, &block)
|
90
|
+
each_batch(*args, **kwargs) do |batch|
|
91
|
+
entries = batch.map { |entry| serialize(entry, *args, **kwargs) }.compact
|
92
|
+
block.call(entries, *args, **kwargs)
|
93
|
+
end
|
94
|
+
end
|
95
|
+
|
96
|
+
# Wrap collection data into serialized documents
|
97
|
+
#
|
98
|
+
# Example:
|
99
|
+
# GeosIndex.documents(id: 1).first
|
100
|
+
#
|
101
|
+
# @return [Enumerator] All serialized entries
|
102
|
+
def documents(*args, **kargs)
|
103
|
+
Enumerator.new do |yielder|
|
104
|
+
each_serialized_batch(*args, **kargs) do |documents, *_inner_args, **_inner_kargs|
|
105
|
+
documents.each { |document| yielder.yield(document) }
|
106
|
+
end
|
107
|
+
end
|
108
|
+
end
|
109
|
+
end
|
110
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
require 'forwardable'
|
2
|
+
|
3
|
+
module Esse
|
4
|
+
# The idea here is to add useful methods to the ruby standard objects without
|
5
|
+
# monkey patching them
|
6
|
+
module HashUtils
|
7
|
+
module_function
|
8
|
+
|
9
|
+
def deep_transform_keys(hash, &block)
|
10
|
+
hash.each_with_object({}) do |(key, value), result|
|
11
|
+
result[yield(key)] = \
|
12
|
+
if value.is_a?(Hash)
|
13
|
+
deep_transform_keys(value, &block)
|
14
|
+
else
|
15
|
+
value
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def deep_merge(target, source)
|
21
|
+
target.merge(source) do |key, oldval, newval|
|
22
|
+
if oldval.is_a?(Hash) && newval.is_a?(Hash)
|
23
|
+
deep_merge(oldval, newval)
|
24
|
+
else
|
25
|
+
newval
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
def deep_merge!(target, source)
|
31
|
+
target.merge!(source) do |key, oldval, newval|
|
32
|
+
if oldval.is_a?(Hash) && newval.is_a?(Hash)
|
33
|
+
deep_merge!(oldval, newval)
|
34
|
+
else
|
35
|
+
newval
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
@@ -9,7 +9,7 @@ module Esse
|
|
9
9
|
class Hstring
|
10
10
|
extend Forwardable
|
11
11
|
|
12
|
-
def_delegators :@value, :==, :eq, :to_s, :inspect, :sub, :capitalize
|
12
|
+
def_delegators :@value, :==, :eq, :to_s, :to_sym, :inspect, :sub, :capitalize
|
13
13
|
attr_reader :value
|
14
14
|
|
15
15
|
def self.def_conventional(bang_method, conv_method = nil)
|
@@ -54,18 +54,19 @@ module Esse
|
|
54
54
|
def_conventional :demodulize!
|
55
55
|
|
56
56
|
def modulize!
|
57
|
-
@value = @value.split(%r{
|
57
|
+
@value = @value.split(%r{::|\\|/}).map { |part| self.class.new(part).camelize.to_s }.join('::')
|
58
58
|
self
|
59
59
|
end
|
60
60
|
def_conventional :modulize!
|
61
61
|
|
62
62
|
def underscore!
|
63
63
|
@value = @value
|
64
|
-
.sub(
|
64
|
+
.sub(/^::/, '')
|
65
65
|
.gsub('::', '/')
|
66
66
|
.gsub(/([A-Z]+)([A-Z][a-z])/, '\1_\2')
|
67
67
|
.gsub(/([a-z\d])([A-Z])/, '\1_\2')
|
68
68
|
.tr('-', '_')
|
69
|
+
.tr('.', '_')
|
69
70
|
.gsub(/\s/, '_')
|
70
71
|
.gsub(/__+/, '_')
|
71
72
|
.downcase
|
@@ -0,0 +1,64 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
begin
|
4
|
+
require 'rainbow'
|
5
|
+
rescue LoadError
|
6
|
+
end
|
7
|
+
|
8
|
+
module Esse
|
9
|
+
module Output
|
10
|
+
module_function
|
11
|
+
|
12
|
+
def formatted_runtime(number)
|
13
|
+
colorize(sprintf('%.3f ms', number), :lightgray)
|
14
|
+
end
|
15
|
+
|
16
|
+
def runtime_padding(number, extra = 2)
|
17
|
+
' ' * (extra + sprintf('%.3f ms', number).size)
|
18
|
+
end
|
19
|
+
|
20
|
+
def colorize(text, *attributes)
|
21
|
+
if defined? Rainbow
|
22
|
+
attributes.reduce(Rainbow(text)) { |p, a| p.public_send(a) }
|
23
|
+
else
|
24
|
+
text
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
def print_error(message_or_error, backtrace: false, **options)
|
29
|
+
options[:level] ||= :error
|
30
|
+
message = message_or_error.to_s
|
31
|
+
|
32
|
+
print_message(message, output: :stderr, **options)
|
33
|
+
|
34
|
+
if message_or_error.is_a?(Exception) && backtrace
|
35
|
+
limit = backtrace.is_a?(Integer) ? backtrace : -1
|
36
|
+
print_backtrace(message_or_error, limit: limit, level: options[:level])
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def print_backtrace(error, limit: -1, **options)
|
41
|
+
return unless error.respond_to?(:backtrace)
|
42
|
+
return if error.backtrace.nil?
|
43
|
+
|
44
|
+
error.backtrace[0..limit].each { |frame| print_error(frame, **options) }
|
45
|
+
end
|
46
|
+
|
47
|
+
def print_message(message, level: :info, output: $stdout, newline: true, **fields)
|
48
|
+
output = \
|
49
|
+
case output
|
50
|
+
when :stdout, 'stdout'
|
51
|
+
$stdout
|
52
|
+
when :stderr, 'stderr'
|
53
|
+
$stderr
|
54
|
+
when IO, StringIO
|
55
|
+
output
|
56
|
+
else
|
57
|
+
raise ArgumentError, "Invalid output #{output.inspect}"
|
58
|
+
end
|
59
|
+
|
60
|
+
message = format(message, **fields)
|
61
|
+
newline ? output.puts(message) : output.print(message)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
data/lib/esse/primitives.rb
CHANGED
data/lib/esse/template_loader.rb
CHANGED
@@ -24,7 +24,7 @@ module Esse
|
|
24
24
|
path = nil
|
25
25
|
@directories.each do |dir|
|
26
26
|
patterns.find do |pattern|
|
27
|
-
path = Dir[dir.join("#{pattern}.{#{@extensions.join(
|
27
|
+
path = Dir[dir.join("#{pattern}.{#{@extensions.join(",")}}")].first
|
28
28
|
break if path
|
29
29
|
end
|
30
30
|
break if path
|
data/lib/esse/version.rb
CHANGED
data/lib/esse.rb
CHANGED
@@ -1,10 +1,19 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
3
|
+
require_relative 'esse/core'
|
4
|
+
require_relative 'esse/errors'
|
5
|
+
require_relative 'esse/index'
|
4
6
|
|
5
7
|
module Esse
|
6
8
|
SETTING_ROOT_KEY = 'settings'
|
7
9
|
MAPPING_ROOT_KEY = 'mappings'
|
8
|
-
|
9
|
-
|
10
|
+
CLI_IGNORE_OPTS = %i[
|
11
|
+
require
|
12
|
+
silent
|
13
|
+
].freeze
|
14
|
+
CLI_CONFIG_PATHS = %w[
|
15
|
+
Essefile
|
16
|
+
config/esse.rb
|
17
|
+
config/initializers/esse.rb
|
18
|
+
].freeze
|
10
19
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: esse
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marcos G. Zimmermann
|
8
8
|
autorequire:
|
9
9
|
bindir: exec
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-03-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: elasticsearch
|
@@ -53,7 +53,7 @@ dependencies:
|
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0.19'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
|
-
name:
|
56
|
+
name: awesome_print
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - ">="
|
@@ -67,7 +67,7 @@ dependencies:
|
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
|
-
name:
|
70
|
+
name: dotenv
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
73
|
- - ">="
|
@@ -122,6 +122,20 @@ dependencies:
|
|
122
122
|
- - "~>"
|
123
123
|
- !ruby/object:Gem::Version
|
124
124
|
version: '3.0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: webmock
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - "~>"
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '3.14'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - "~>"
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '3.14'
|
125
139
|
- !ruby/object:Gem::Dependency
|
126
140
|
name: yard
|
127
141
|
requirement: !ruby/object:Gem::Requirement
|
@@ -136,28 +150,78 @@ dependencies:
|
|
136
150
|
- - "~>"
|
137
151
|
- !ruby/object:Gem::Version
|
138
152
|
version: 0.9.20
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: standard
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - "~>"
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '1.3'
|
160
|
+
type: :development
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - "~>"
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '1.3'
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
name: rubocop
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - "~>"
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '1.20'
|
174
|
+
type: :development
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - "~>"
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: '1.20'
|
181
|
+
- !ruby/object:Gem::Dependency
|
182
|
+
name: rubocop-performance
|
183
|
+
requirement: !ruby/object:Gem::Requirement
|
184
|
+
requirements:
|
185
|
+
- - "~>"
|
186
|
+
- !ruby/object:Gem::Version
|
187
|
+
version: '1.11'
|
188
|
+
- - ">="
|
189
|
+
- !ruby/object:Gem::Version
|
190
|
+
version: 1.11.5
|
191
|
+
type: :development
|
192
|
+
prerelease: false
|
193
|
+
version_requirements: !ruby/object:Gem::Requirement
|
194
|
+
requirements:
|
195
|
+
- - "~>"
|
196
|
+
- !ruby/object:Gem::Version
|
197
|
+
version: '1.11'
|
198
|
+
- - ">="
|
199
|
+
- !ruby/object:Gem::Version
|
200
|
+
version: 1.11.5
|
201
|
+
- !ruby/object:Gem::Dependency
|
202
|
+
name: rubocop-rspec
|
203
|
+
requirement: !ruby/object:Gem::Requirement
|
204
|
+
requirements:
|
205
|
+
- - "~>"
|
206
|
+
- !ruby/object:Gem::Version
|
207
|
+
version: '2.4'
|
208
|
+
type: :development
|
209
|
+
prerelease: false
|
210
|
+
version_requirements: !ruby/object:Gem::Requirement
|
211
|
+
requirements:
|
212
|
+
- - "~>"
|
213
|
+
- !ruby/object:Gem::Version
|
214
|
+
version: '2.4'
|
139
215
|
description: All the elegance of ruby with the elasticsearch flexibility. This gem
|
140
216
|
is a pretty simple but excential helpers to deal with mapping, indexing, serialization
|
141
217
|
and search.
|
142
218
|
email:
|
143
219
|
- mgzmaster@gmail.com
|
144
|
-
executables:
|
220
|
+
executables:
|
221
|
+
- esse
|
145
222
|
extensions: []
|
146
223
|
extra_rdoc_files: []
|
147
224
|
files:
|
148
|
-
- ".gitignore"
|
149
|
-
- ".rubocop.yml"
|
150
|
-
- ".tool-versions"
|
151
|
-
- ".yardopts"
|
152
|
-
- CHANGELOG.md
|
153
|
-
- Gemfile
|
154
|
-
- Gemfile.lock
|
155
|
-
- LICENSE.txt
|
156
|
-
- README.md
|
157
|
-
- Rakefile
|
158
|
-
- bin/console
|
159
|
-
- bin/setup
|
160
|
-
- esse.gemspec
|
161
225
|
- exec/esse
|
162
226
|
- lib/esse.rb
|
163
227
|
- lib/esse/backend/index.rb
|
@@ -175,14 +239,33 @@ files:
|
|
175
239
|
- lib/esse/backend/index_type/documents.rb
|
176
240
|
- lib/esse/cli.rb
|
177
241
|
- lib/esse/cli/base.rb
|
242
|
+
- lib/esse/cli/event_listener.rb
|
178
243
|
- lib/esse/cli/generate.rb
|
179
244
|
- lib/esse/cli/index.rb
|
245
|
+
- lib/esse/cli/index/base_operation.rb
|
246
|
+
- lib/esse/cli/index/close.rb
|
247
|
+
- lib/esse/cli/index/create.rb
|
248
|
+
- lib/esse/cli/index/delete.rb
|
249
|
+
- lib/esse/cli/index/import.rb
|
250
|
+
- lib/esse/cli/index/open.rb
|
251
|
+
- lib/esse/cli/index/reset.rb
|
252
|
+
- lib/esse/cli/index/update_aliases.rb
|
253
|
+
- lib/esse/cli/index/update_mapping.rb
|
254
|
+
- lib/esse/cli/index/update_settings.rb
|
255
|
+
- lib/esse/cli/templates/config.rb.erb
|
180
256
|
- lib/esse/cli/templates/index.rb.erb
|
181
|
-
- lib/esse/cli/templates/
|
182
|
-
- lib/esse/cli/templates/
|
257
|
+
- lib/esse/cli/templates/type_collection.rb.erb
|
258
|
+
- lib/esse/cli/templates/type_mappings.json
|
259
|
+
- lib/esse/cli/templates/type_serializer.rb.erb
|
183
260
|
- lib/esse/cluster.rb
|
184
261
|
- lib/esse/config.rb
|
185
262
|
- lib/esse/core.rb
|
263
|
+
- lib/esse/document.rb
|
264
|
+
- lib/esse/errors.rb
|
265
|
+
- lib/esse/events.rb
|
266
|
+
- lib/esse/events/bus.rb
|
267
|
+
- lib/esse/events/event.rb
|
268
|
+
- lib/esse/events/publisher.rb
|
186
269
|
- lib/esse/index.rb
|
187
270
|
- lib/esse/index/actions.rb
|
188
271
|
- lib/esse/index/backend.rb
|
@@ -199,9 +282,12 @@ files:
|
|
199
282
|
- lib/esse/index_type/actions.rb
|
200
283
|
- lib/esse/index_type/backend.rb
|
201
284
|
- lib/esse/index_type/mappings.rb
|
202
|
-
- lib/esse/
|
285
|
+
- lib/esse/logging.rb
|
286
|
+
- lib/esse/object_document_mapper.rb
|
203
287
|
- lib/esse/primitives.rb
|
288
|
+
- lib/esse/primitives/hash_utils.rb
|
204
289
|
- lib/esse/primitives/hstring.rb
|
290
|
+
- lib/esse/primitives/output.rb
|
205
291
|
- lib/esse/template_loader.rb
|
206
292
|
- lib/esse/version.rb
|
207
293
|
homepage: https://github.com/marcosgz/esse
|
@@ -226,7 +312,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
226
312
|
- !ruby/object:Gem::Version
|
227
313
|
version: '0'
|
228
314
|
requirements: []
|
229
|
-
rubygems_version: 3.0.3
|
315
|
+
rubygems_version: 3.0.3.1
|
230
316
|
signing_key:
|
231
317
|
specification_version: 4
|
232
318
|
summary: Pure Ruby toolkit based on official elasticsearch-ruby library. (No! It isn't
|