Import data to Solr
Showing
| ... | @@ -36,6 +36,8 @@ gem 'carrierwave', '~> 1.0' | ... | @@ -36,6 +36,8 @@ gem 'carrierwave', '~> 1.0' |
| gem 'mini_magick' | gem 'mini_magick' | ||
| # bootstrap-sass is a Sass-powered version of Bootstrap 3 | # bootstrap-sass is a Sass-powered version of Bootstrap 3 | ||
| gem 'bootstrap-sass', '~> 3.3.6' | gem 'bootstrap-sass', '~> 3.3.6' | ||
| # Easiest way to manage multi-environment settings in any ruby project or framework: Rails, Sinatra, Pandrino and others | |||
| gem 'config' | |||
| # Faker, a port of Data::Faker from Perl, is used to easily generate fake data: names, addresses, phone numbers, etc. | # Faker, a port of Data::Faker from Perl, is used to easily generate fake data: names, addresses, phone numbers, etc. | ||
| gem 'faker', '~> 1.6', '>= 1.6.3' | gem 'faker', '~> 1.6', '>= 1.6.3' | ||
| # Kaminari is a Scope & Engine based, clean, powerful, agnostic, customizable and sophisticated paginator for Rails 4+ | # Kaminari is a Scope & Engine based, clean, powerful, agnostic, customizable and sophisticated paginator for Rails 4+ | ||
| ... | @@ -54,6 +56,8 @@ gem 'rails-assets-bootstrap-touchspin', source: 'https://rails-assets.org' | ... | @@ -54,6 +56,8 @@ gem 'rails-assets-bootstrap-touchspin', source: 'https://rails-assets.org' |
| gem 'sidekiq', '~> 5.0', '>= 5.0.2' | gem 'sidekiq', '~> 5.0', '>= 5.0.2' | ||
| # Toastr: Simple javascript toast notifications, plugged into the rails asset pipeline. | # Toastr: Simple javascript toast notifications, plugged into the rails asset pipeline. | ||
| gem 'toastr-rails', '~> 1.0', '>= 1.0.3' | gem 'toastr-rails', '~> 1.0', '>= 1.0.3' | ||
| # RSolr aims to provide a simple and extensible library for working with Solr | |||
| gem 'rsolr', '~> 2.0', '>= 2.0.2' | |||
| # Use Capistrano for deployment | # Use Capistrano for deployment | ||
| # gem 'capistrano-rails', group: :development | # gem 'capistrano-rails', group: :development | ||
| ... | ... |
app/services/solr_search.rb
0 → 100644
config/initializers/config.rb
0 → 100644
config/settings.yml
0 → 100644
config/settings/development.yml
0 → 100644
config/settings/production.yml
0 → 100644
config/settings/test.yml
0 → 100644
lib/tasks/import_solr_data.rake
0 → 100644
Please
register
or
sign in
to comment