Merge branch 'elasticsearch' into 'master'
Elasticsearch integration https://gitlab.com/gitlab-org/gitlab-ee/issues/61 Steps: - [x] Base integration - [x] Implement snippet search (service lawyer and actual search) - [x] Implement project search (service lawyer and actual search) - [x] Implement global search (service lawyer and actual search) - [x] Implement search through the notes - [x] Implement search through the milestones - [x] Implement search though the wiki blobes - [x] Implement search though the commits and code - [x] Specs and Spinach (fix) - [ ] Specs and Spinach (new ones) - [x] Take care of omnibus support for elasticsearch - [x] Documentation - [ ] Add elasticsearch check to GitLab check - [x] Update and create index means See merge request !109
Showing
... | ... | @@ -91,6 +91,11 @@ gem "six", '~> 0.2.0' |
# Seed data | ||
gem "seed-fu", '~> 2.3.5' | ||
# Search | ||
gem 'elasticsearch-model' | ||
gem 'elasticsearch-rails' | ||
gem 'gitlab-elasticsearch-git', require: "elasticsearch/git" | ||
# Markdown and HTML processing | ||
gem 'html-pipeline', '~> 1.11.0' | ||
gem 'task_list', '~> 1.0.2', require: 'task_list/railtie' | ||
... | ... |
app/elastic/issues_search.rb
0 → 100644
app/elastic/notes_search.rb
0 → 100644
Please register or sign in to comment