indexes 0.0.1

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.
Files changed (74) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +245 -0
  4. data/Rakefile +19 -0
  5. data/lib/generators/indexes/index_generator.rb +15 -0
  6. data/lib/generators/indexes/install_generator.rb +15 -0
  7. data/lib/generators/indexes/templates/index.rb +12 -0
  8. data/lib/generators/indexes/templates/initializer.rb +10 -0
  9. data/lib/indexes.rb +102 -0
  10. data/lib/indexes/collection.rb +195 -0
  11. data/lib/indexes/concern.rb +23 -0
  12. data/lib/indexes/configuration.rb +39 -0
  13. data/lib/indexes/dsl/api.rb +85 -0
  14. data/lib/indexes/dsl/mappings.rb +14 -0
  15. data/lib/indexes/dsl/search.rb +25 -0
  16. data/lib/indexes/dsl/serializer.rb +17 -0
  17. data/lib/indexes/index.rb +149 -0
  18. data/lib/indexes/pagination.rb +33 -0
  19. data/lib/indexes/proxy.rb +17 -0
  20. data/lib/indexes/railtie.rb +15 -0
  21. data/lib/indexes/version.rb +5 -0
  22. data/lib/tasks/indexes.rake +11 -0
  23. data/test/dsl_test.rb +92 -0
  24. data/test/dummy/Rakefile +5 -0
  25. data/test/dummy/app/assets/javascripts/application.js +13 -0
  26. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  27. data/test/dummy/app/controllers/application_controller.rb +5 -0
  28. data/test/dummy/app/helpers/application_helper.rb +2 -0
  29. data/test/dummy/app/indexes/products_index.rb +51 -0
  30. data/test/dummy/app/indexes/shops_index.rb +28 -0
  31. data/test/dummy/app/models/product.rb +5 -0
  32. data/test/dummy/app/models/shop.rb +5 -0
  33. data/test/dummy/app/views/layouts/application.html.erb +12 -0
  34. data/test/dummy/bin/bundle +4 -0
  35. data/test/dummy/bin/rails +5 -0
  36. data/test/dummy/bin/rake +5 -0
  37. data/test/dummy/bin/setup +30 -0
  38. data/test/dummy/config.ru +4 -0
  39. data/test/dummy/config/application.rb +25 -0
  40. data/test/dummy/config/boot.rb +5 -0
  41. data/test/dummy/config/database.yml +7 -0
  42. data/test/dummy/config/database.yml.travis +3 -0
  43. data/test/dummy/config/environment.rb +5 -0
  44. data/test/dummy/config/environments/development.rb +41 -0
  45. data/test/dummy/config/environments/production.rb +79 -0
  46. data/test/dummy/config/environments/test.rb +42 -0
  47. data/test/dummy/config/initializers/assets.rb +11 -0
  48. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  49. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  50. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  51. data/test/dummy/config/initializers/indexes.rb +67 -0
  52. data/test/dummy/config/initializers/inflections.rb +16 -0
  53. data/test/dummy/config/initializers/mime_types.rb +4 -0
  54. data/test/dummy/config/initializers/session_store.rb +3 -0
  55. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  56. data/test/dummy/config/locales/en.yml +23 -0
  57. data/test/dummy/config/routes.rb +56 -0
  58. data/test/dummy/config/secrets.yml +22 -0
  59. data/test/dummy/db/migrate/20161104164148_create_products.rb +14 -0
  60. data/test/dummy/db/migrate/20161104182219_create_shops.rb +9 -0
  61. data/test/dummy/db/schema.rb +36 -0
  62. data/test/dummy/log/development.log +38 -0
  63. data/test/dummy/log/test.log +408 -0
  64. data/test/dummy/public/404.html +61 -0
  65. data/test/dummy/public/422.html +61 -0
  66. data/test/dummy/public/500.html +60 -0
  67. data/test/dummy/public/favicon.ico +0 -0
  68. data/test/generators_test.rb +25 -0
  69. data/test/indexes_test.rb +46 -0
  70. data/test/record_test.rb +25 -0
  71. data/test/search_test.rb +164 -0
  72. data/test/tasks_test.rb +25 -0
  73. data/test/test_helper.rb +14 -0
  74. metadata +230 -0
@@ -0,0 +1,61 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+ div.dialog {
15
+ width: 95%;
16
+ max-width: 33em;
17
+ margin: 4em auto 0;
18
+ }
19
+ div.dialog > div {
20
+ border: 1px solid #CCC;
21
+ border-right-color: #999;
22
+ border-left-color: #999;
23
+ border-bottom-color: #BBB;
24
+ border-top: #B00100 solid 4px;
25
+ border-top-left-radius: 9px;
26
+ border-top-right-radius: 9px;
27
+ background-color: white;
28
+ padding: 7px 12% 0;
29
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
30
+ }
31
+ h1 {
32
+ font-size: 100%;
33
+ color: #730E15;
34
+ line-height: 1.5em;
35
+ }
36
+ div.dialog > p {
37
+ margin: 0 0 1em;
38
+ padding: 1em;
39
+ background-color: #F7F7F7;
40
+ border: 1px solid #CCC;
41
+ border-right-color: #999;
42
+ border-left-color: #999;
43
+ border-bottom-color: #999;
44
+ border-bottom-left-radius: 4px;
45
+ border-bottom-right-radius: 4px;
46
+ border-top-color: #DADADA;
47
+ color: #666;
48
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
49
+ }
50
+ </style>
51
+ </head>
52
+ <body>
53
+ <div class="dialog">
54
+ <div>
55
+ <h1>The change you wanted was rejected.</h1>
56
+ <p>Maybe you tried to change something you didn't have access to.</p>
57
+ </div>
58
+ <p>If you are the application owner check the logs for more information.</p>
59
+ </div>
60
+ </body>
61
+ </html>
@@ -0,0 +1,60 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+ div.dialog {
15
+ width: 95%;
16
+ max-width: 33em;
17
+ margin: 4em auto 0;
18
+ }
19
+ div.dialog > div {
20
+ border: 1px solid #CCC;
21
+ border-right-color: #999;
22
+ border-left-color: #999;
23
+ border-bottom-color: #BBB;
24
+ border-top: #B00100 solid 4px;
25
+ border-top-left-radius: 9px;
26
+ border-top-right-radius: 9px;
27
+ background-color: white;
28
+ padding: 7px 12% 0;
29
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
30
+ }
31
+ h1 {
32
+ font-size: 100%;
33
+ color: #730E15;
34
+ line-height: 1.5em;
35
+ }
36
+ div.dialog > p {
37
+ margin: 0 0 1em;
38
+ padding: 1em;
39
+ background-color: #F7F7F7;
40
+ border: 1px solid #CCC;
41
+ border-right-color: #999;
42
+ border-left-color: #999;
43
+ border-bottom-color: #999;
44
+ border-bottom-left-radius: 4px;
45
+ border-bottom-right-radius: 4px;
46
+ border-top-color: #DADADA;
47
+ color: #666;
48
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
49
+ }
50
+ </style>
51
+ </head>
52
+ <body>
53
+ <div class="dialog">
54
+ <div>
55
+ <h1>We're sorry, but something went wrong.</h1>
56
+ </div>
57
+ <p>If you are the application owner check the logs for more information.</p>
58
+ </div>
59
+ </body>
60
+ </html>
File without changes
@@ -0,0 +1,25 @@
1
+ require 'test_helper'
2
+ require 'rails/generators'
3
+ require 'generators/indexes/install_generator'
4
+ require 'generators/indexes/index_generator'
5
+
6
+ class GeneratorsTest < Rails::Generators::TestCase
7
+ destination File.expand_path('../tmp', File.dirname(__FILE__))
8
+
9
+ teardown do
10
+ FileUtils.rm_rf self.destination_root
11
+ end
12
+
13
+ test 'install' do
14
+ self.class.tests Indexes::Generators::InstallGenerator
15
+ run_generator
16
+ assert_file 'config/initializers/indexes.rb'
17
+ end
18
+
19
+ test 'index' do
20
+ self.class.tests Indexes::Generators::IndexGenerator
21
+ run_generator %w(products)
22
+ assert_file 'app/indexes/products_index.rb'
23
+ end
24
+
25
+ end
@@ -0,0 +1,46 @@
1
+ require 'test_helper'
2
+
3
+ class IndexesTest < ActiveSupport::TestCase
4
+
5
+ setup do
6
+ Indexes.build
7
+ end
8
+
9
+ teardown do
10
+ Indexes.destroy
11
+ end
12
+
13
+ test 'namespace' do
14
+ assert_equal 'dummy_test', Indexes.namespace
15
+ end
16
+
17
+ test 'find' do
18
+ assert Indexes.find(:products)
19
+ end
20
+
21
+ test 'exist' do
22
+ assert Indexes.exist?(:products)
23
+ end
24
+
25
+ test 'suggest' do
26
+ shop = Shop.create
27
+ ['Les Paul', 'Stratocaster'].each do |name|
28
+ product = shop.products.create(name: name)
29
+ product.run_callbacks :commit
30
+ end
31
+ sleep 2
32
+
33
+ assert_equal [], suggest('', shop)
34
+ assert_equal ['Les Paul'], suggest('les', shop)
35
+ assert_equal ['Stratocaster'], suggest('str', shop)
36
+ end
37
+
38
+ private
39
+
40
+ def suggest(term, shop)
41
+ Indexes.suggest(:products, term, shop: shop).map do |suggestion|
42
+ suggestion[:text]
43
+ end
44
+ end
45
+
46
+ end
@@ -0,0 +1,25 @@
1
+ require 'test_helper'
2
+
3
+ class RecordTest < ActiveSupport::TestCase
4
+
5
+ setup do
6
+ Indexes.build
7
+ end
8
+
9
+ teardown do
10
+ Indexes.destroy
11
+ end
12
+
13
+ test 'indexing' do
14
+ shop = Shop.create(name: 'Anderstons')
15
+ product = shop.products.create(name: 'Les Paul', category: 'Gibson')
16
+ product.run_callbacks :commit
17
+ sleep 2
18
+
19
+ assert_equal 1, Product.search.count
20
+ product.destroy
21
+ product.run_callbacks :commit
22
+ assert_equal 0, Product.search.count
23
+ end
24
+
25
+ end
@@ -0,0 +1,164 @@
1
+ require 'test_helper'
2
+
3
+ class SearchTest < ActiveSupport::TestCase
4
+
5
+ setup do
6
+ Indexes.build
7
+ end
8
+
9
+ teardown do
10
+ Indexes.destroy
11
+ end
12
+
13
+ test 'order' do
14
+ shop = Shop.create
15
+ shop.run_callbacks :commit
16
+ (1..3).step do |id|
17
+ product = shop.products.create(
18
+ id: id,
19
+ name: id,
20
+ price: id,
21
+ position: id,
22
+ currency: 'UYU'
23
+ )
24
+ product.run_callbacks :commit
25
+ product
26
+ end
27
+ sleep 2
28
+
29
+ assert_equal [1, 2, 3], Product.search.order(id: :asc).map(&:id)
30
+ assert_equal [3, 2, 1], Product.search.order(id: :desc).map(&:id)
31
+
32
+ assert_equal [1, 2, 3], Product.search.order(name: :asc).map(&:id)
33
+ assert_equal [3, 2, 1], Product.search.order(name: :desc).map(&:id)
34
+
35
+ assert_equal [1, 2, 3], Product.search.order(price: :asc).map(&:id)
36
+ assert_equal [3, 2, 1], Product.search.order(price: :desc).map(&:id)
37
+
38
+ assert_equal [3, 2, 1], Product.search.order(position: :asc).map(&:id)
39
+ assert_equal [3, 2, 1], Product.search.order(position: :desc).map(&:id)
40
+ end
41
+
42
+ test 'with and without' do
43
+ (1..3).step do |id|
44
+ shop = Shop.create(id: id)
45
+ shop.run_callbacks :commit
46
+ end
47
+ Shop.create id: 4
48
+ sleep 2
49
+
50
+ assert_equal [4, 3], Shop.search(with: 4).page(1, length: 2).map(&:id)
51
+ assert_equal [2, 1], Shop.search(without: 3).map(&:id)
52
+ end
53
+
54
+ test 'includes' do
55
+ shop = Shop.create
56
+ product = shop.products.create(name: 'Test')
57
+ product.run_callbacks :commit
58
+ sleep 2
59
+
60
+ product = Product.search(includes: :shop).first
61
+ Shop.expects(:connection).never
62
+ assert_equal shop, product.shop
63
+ end
64
+
65
+ test 'pagination' do
66
+ (1..5).step do |id|
67
+ shop = Shop.create(id: id)
68
+ shop.run_callbacks :commit
69
+ end
70
+ sleep 2
71
+
72
+ collection = Shop.search.page(1, length: 2)
73
+ assert_equal 1, collection.first_page
74
+ assert_equal 3, collection.last_page
75
+ assert_equal 3, collection.total_pages
76
+ assert_equal 5, collection.total_count
77
+ assert_equal 1, collection.current_page
78
+ assert_equal 2, collection.page_length
79
+ assert_equal 0, collection.padding
80
+ assert_nil collection.previous_page
81
+ assert_equal 2, collection.next_page
82
+ assert_not collection.out_of_bounds?
83
+ assert_equal [5, 4], collection.map(&:id)
84
+
85
+ collection = Shop.search.page(2, length: 2)
86
+ assert_equal 1, collection.first_page
87
+ assert_equal 3, collection.last_page
88
+ assert_equal 3, collection.total_pages
89
+ assert_equal 5, collection.total_count
90
+ assert_equal 2, collection.current_page
91
+ assert_equal 2, collection.page_length
92
+ assert_equal 0, collection.padding
93
+ assert_equal 1, collection.previous_page
94
+ assert_equal 3, collection.next_page
95
+ assert_not collection.out_of_bounds?
96
+ assert_equal [3, 2], collection.map(&:id)
97
+
98
+ collection = Shop.search.page(3, length: 2)
99
+ assert_equal 1, collection.first_page
100
+ assert_equal 3, collection.last_page
101
+ assert_equal 3, collection.total_pages
102
+ assert_equal 5, collection.total_count
103
+ assert_equal 3, collection.current_page
104
+ assert_equal 2, collection.page_length
105
+ assert_equal 0, collection.padding
106
+ assert_equal 2, collection.previous_page
107
+ assert_nil collection.next_page
108
+ assert_not collection.out_of_bounds?
109
+ assert_equal [1], collection.map(&:id)
110
+
111
+ collection = Shop.search.page(4, length: 2)
112
+ assert_equal 1, collection.first_page
113
+ assert_equal 3, collection.last_page
114
+ assert_equal 3, collection.total_pages
115
+ assert_equal 5, collection.total_count
116
+ assert_equal 4, collection.current_page
117
+ assert_equal 2, collection.page_length
118
+ assert_equal 0, collection.padding
119
+ assert_equal 3, collection.previous_page
120
+ assert_nil collection.next_page
121
+ assert collection.out_of_bounds?
122
+ assert_equal [], collection.to_a
123
+
124
+ collection = Shop.search.page(1, length: 2, padding: 2)
125
+ assert_equal 1, collection.first_page
126
+ assert_equal 2, collection.last_page
127
+ assert_equal 2, collection.total_pages
128
+ assert_equal 3, collection.total_count
129
+ assert_equal 1, collection.current_page
130
+ assert_equal 2, collection.page_length
131
+ assert_equal 2, collection.padding
132
+ assert_nil collection.previous_page
133
+ assert_equal 2, collection.next_page
134
+ assert_not collection.out_of_bounds?
135
+ assert_equal [3, 2], collection.map(&:id)
136
+
137
+ collection = Shop.search.page(2, length: 2, padding: 2)
138
+ assert_equal 1, collection.first_page
139
+ assert_equal 2, collection.last_page
140
+ assert_equal 2, collection.total_pages
141
+ assert_equal 3, collection.total_count
142
+ assert_equal 2, collection.current_page
143
+ assert_equal 2, collection.page_length
144
+ assert_equal 2, collection.padding
145
+ assert_equal 1, collection.previous_page
146
+ assert_nil collection.next_page
147
+ assert_not collection.out_of_bounds?
148
+ assert_equal [1], collection.map(&:id)
149
+
150
+ collection = Shop.search.page(3, length: 2, padding: 2)
151
+ assert_equal 1, collection.first_page
152
+ assert_equal 2, collection.last_page
153
+ assert_equal 2, collection.total_pages
154
+ assert_equal 3, collection.total_count
155
+ assert_equal 3, collection.current_page
156
+ assert_equal 2, collection.page_length
157
+ assert_equal 2, collection.padding
158
+ assert_equal 2, collection.previous_page
159
+ assert_nil collection.next_page
160
+ assert collection.out_of_bounds?
161
+ assert_equal [], collection.to_a
162
+ end
163
+
164
+ end
@@ -0,0 +1,25 @@
1
+ require 'test_helper'
2
+
3
+ class TasksTest < ActiveSupport::TestCase
4
+
5
+ setup do
6
+ Dummy::Application.load_tasks
7
+ end
8
+
9
+ teardown do
10
+ Indexes.destroy
11
+ end
12
+
13
+ test 'build' do
14
+ assert_nothing_raised do
15
+ Rake::Task['indexes:build'].invoke
16
+ end
17
+ end
18
+
19
+ test 'rebuild' do
20
+ assert_nothing_raised do
21
+ Rake::Task['indexes:rebuild'].invoke
22
+ end
23
+ end
24
+
25
+ end
@@ -0,0 +1,14 @@
1
+ # Configure Rails Environment
2
+ ENV['RAILS_ENV'] = 'test'
3
+
4
+ require File.expand_path('../../test/dummy/config/environment.rb', __FILE__)
5
+ ActiveRecord::Migrator.migrations_paths = [File.expand_path('../../test/dummy/db/migrate', __FILE__)]
6
+ require 'rails/test_help'
7
+ require 'mocha/mini_test'
8
+
9
+ # Filter out Minitest backtrace while allowing backtrace from other libraries
10
+ # to be shown.
11
+ Minitest.backtrace_filter = Minitest::BacktraceFilter.new
12
+
13
+ # Load support files
14
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
metadata ADDED
@@ -0,0 +1,230 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: indexes
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - mmontossi
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-11-29 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 4.2.0
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 4.3.0
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: 4.2.0
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: 4.3.0
33
+ - !ruby/object:Gem::Dependency
34
+ name: elasticsearch
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: 2.0.0
40
+ type: :runtime
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: 2.0.0
47
+ - !ruby/object:Gem::Dependency
48
+ name: pg
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '0.18'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '0.18'
61
+ - !ruby/object:Gem::Dependency
62
+ name: mocha
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '1.1'
68
+ type: :development
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: '1.1'
75
+ description: Model search indexes with elasticsearch in rails.
76
+ email:
77
+ - mmontossi@gmail.com
78
+ executables: []
79
+ extensions: []
80
+ extra_rdoc_files: []
81
+ files:
82
+ - MIT-LICENSE
83
+ - README.md
84
+ - Rakefile
85
+ - lib/generators/indexes/index_generator.rb
86
+ - lib/generators/indexes/install_generator.rb
87
+ - lib/generators/indexes/templates/index.rb
88
+ - lib/generators/indexes/templates/initializer.rb
89
+ - lib/indexes.rb
90
+ - lib/indexes/collection.rb
91
+ - lib/indexes/concern.rb
92
+ - lib/indexes/configuration.rb
93
+ - lib/indexes/dsl/api.rb
94
+ - lib/indexes/dsl/mappings.rb
95
+ - lib/indexes/dsl/search.rb
96
+ - lib/indexes/dsl/serializer.rb
97
+ - lib/indexes/index.rb
98
+ - lib/indexes/pagination.rb
99
+ - lib/indexes/proxy.rb
100
+ - lib/indexes/railtie.rb
101
+ - lib/indexes/version.rb
102
+ - lib/tasks/indexes.rake
103
+ - test/dsl_test.rb
104
+ - test/dummy/Rakefile
105
+ - test/dummy/app/assets/javascripts/application.js
106
+ - test/dummy/app/assets/stylesheets/application.css
107
+ - test/dummy/app/controllers/application_controller.rb
108
+ - test/dummy/app/helpers/application_helper.rb
109
+ - test/dummy/app/indexes/products_index.rb
110
+ - test/dummy/app/indexes/shops_index.rb
111
+ - test/dummy/app/models/product.rb
112
+ - test/dummy/app/models/shop.rb
113
+ - test/dummy/app/views/layouts/application.html.erb
114
+ - test/dummy/bin/bundle
115
+ - test/dummy/bin/rails
116
+ - test/dummy/bin/rake
117
+ - test/dummy/bin/setup
118
+ - test/dummy/config.ru
119
+ - test/dummy/config/application.rb
120
+ - test/dummy/config/boot.rb
121
+ - test/dummy/config/database.yml
122
+ - test/dummy/config/database.yml.travis
123
+ - test/dummy/config/environment.rb
124
+ - test/dummy/config/environments/development.rb
125
+ - test/dummy/config/environments/production.rb
126
+ - test/dummy/config/environments/test.rb
127
+ - test/dummy/config/initializers/assets.rb
128
+ - test/dummy/config/initializers/backtrace_silencers.rb
129
+ - test/dummy/config/initializers/cookies_serializer.rb
130
+ - test/dummy/config/initializers/filter_parameter_logging.rb
131
+ - test/dummy/config/initializers/indexes.rb
132
+ - test/dummy/config/initializers/inflections.rb
133
+ - test/dummy/config/initializers/mime_types.rb
134
+ - test/dummy/config/initializers/session_store.rb
135
+ - test/dummy/config/initializers/wrap_parameters.rb
136
+ - test/dummy/config/locales/en.yml
137
+ - test/dummy/config/routes.rb
138
+ - test/dummy/config/secrets.yml
139
+ - test/dummy/db/migrate/20161104164148_create_products.rb
140
+ - test/dummy/db/migrate/20161104182219_create_shops.rb
141
+ - test/dummy/db/schema.rb
142
+ - test/dummy/log/development.log
143
+ - test/dummy/log/test.log
144
+ - test/dummy/public/404.html
145
+ - test/dummy/public/422.html
146
+ - test/dummy/public/500.html
147
+ - test/dummy/public/favicon.ico
148
+ - test/generators_test.rb
149
+ - test/indexes_test.rb
150
+ - test/record_test.rb
151
+ - test/search_test.rb
152
+ - test/tasks_test.rb
153
+ - test/test_helper.rb
154
+ homepage: https://github.com/mmontossi/indexes
155
+ licenses:
156
+ - MIT
157
+ metadata: {}
158
+ post_install_message:
159
+ rdoc_options: []
160
+ require_paths:
161
+ - lib
162
+ required_ruby_version: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: 2.0.0
167
+ required_rubygems_version: !ruby/object:Gem::Requirement
168
+ requirements:
169
+ - - ">="
170
+ - !ruby/object:Gem::Version
171
+ version: '0'
172
+ requirements:
173
+ - Elasticsearch
174
+ rubyforge_project:
175
+ rubygems_version: 2.5.1
176
+ signing_key:
177
+ specification_version: 4
178
+ summary: Search indexes for rails.
179
+ test_files:
180
+ - test/dsl_test.rb
181
+ - test/dummy/app/assets/javascripts/application.js
182
+ - test/dummy/app/assets/stylesheets/application.css
183
+ - test/dummy/app/controllers/application_controller.rb
184
+ - test/dummy/app/helpers/application_helper.rb
185
+ - test/dummy/app/indexes/products_index.rb
186
+ - test/dummy/app/indexes/shops_index.rb
187
+ - test/dummy/app/models/product.rb
188
+ - test/dummy/app/models/shop.rb
189
+ - test/dummy/app/views/layouts/application.html.erb
190
+ - test/dummy/bin/bundle
191
+ - test/dummy/bin/rails
192
+ - test/dummy/bin/rake
193
+ - test/dummy/bin/setup
194
+ - test/dummy/config/application.rb
195
+ - test/dummy/config/boot.rb
196
+ - test/dummy/config/database.yml
197
+ - test/dummy/config/database.yml.travis
198
+ - test/dummy/config/environment.rb
199
+ - test/dummy/config/environments/development.rb
200
+ - test/dummy/config/environments/production.rb
201
+ - test/dummy/config/environments/test.rb
202
+ - test/dummy/config/initializers/assets.rb
203
+ - test/dummy/config/initializers/backtrace_silencers.rb
204
+ - test/dummy/config/initializers/cookies_serializer.rb
205
+ - test/dummy/config/initializers/filter_parameter_logging.rb
206
+ - test/dummy/config/initializers/indexes.rb
207
+ - test/dummy/config/initializers/inflections.rb
208
+ - test/dummy/config/initializers/mime_types.rb
209
+ - test/dummy/config/initializers/session_store.rb
210
+ - test/dummy/config/initializers/wrap_parameters.rb
211
+ - test/dummy/config/locales/en.yml
212
+ - test/dummy/config/routes.rb
213
+ - test/dummy/config/secrets.yml
214
+ - test/dummy/config.ru
215
+ - test/dummy/db/migrate/20161104164148_create_products.rb
216
+ - test/dummy/db/migrate/20161104182219_create_shops.rb
217
+ - test/dummy/db/schema.rb
218
+ - test/dummy/log/development.log
219
+ - test/dummy/log/test.log
220
+ - test/dummy/public/404.html
221
+ - test/dummy/public/422.html
222
+ - test/dummy/public/500.html
223
+ - test/dummy/public/favicon.ico
224
+ - test/dummy/Rakefile
225
+ - test/generators_test.rb
226
+ - test/indexes_test.rb
227
+ - test/record_test.rb
228
+ - test/search_test.rb
229
+ - test/tasks_test.rb
230
+ - test/test_helper.rb