stadtratmonitor/Gemfile
Lars Henrik Mai dc3a97d3b8 Update elasticsearch
- Build our own elasticsearch image based on 6.8.6 which includes
configuration files for german decompounder from https://github.com/uschindler/german-decompounder

- move elastichq to separate service and use the official image instead of including it as plugin in the elasticsearch image

- Adjust compounder filter config in papers to use the included hyphenation_decompounder.
See https://www.elastic.co/guide/en/elasticsearch/reference/6.8/analysis-compound-word-tokenfilter.html

- Remove obsolete "string" type in the mapping of papers, and replace it
with "text" or "keywords" accordingly. See https://www.elastic.co/blog/strings-are-dead-long-live-strings
2020-01-16 12:20:47 +01:00

85 lines
2 KiB
Ruby

source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.1.5'
gem 'rails-i18n'
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
gem 'kaminari'
gem 'kaminari-i18n'
# Use SCSS for stylesheets
gem 'sass-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
gem 'slim-rails'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Assets
gem 'foundation-rails', '~> 5.5'
gem 'validate_url'
# Authentication
gem 'omniauth'
gem 'omniauth-browserid'
gem 'elasticsearch', '~> 6'
gem 'elasticsearch-model', '~> 6'
gem 'elasticsearch-rails', '~> 6'
gem 'elasticsearch-dsl'
gem 'leaflet-rails'
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
group :development do
gem 'spring'
gem 'spring-commands-rspec'
# https://rossta.net/blog/quiet-assets-in-rails-5.html
# gem 'quiet_assets'
gem 'awesome_print'
# gem 'guard-rspec', require: false
# gem 'terminal-notifier-guard' # FIXME cross-platform
end
group :development, :test do
gem 'rspec-rails', '~> 3.0'
gem 'pry'
gem 'pry-rails'
gem 'capybara'
gem 'puma'
gem 'launchy'
end
group :test do
gem "factory_bot_rails"
gem 'shoulda-matchers', '~> 3.1'
gem 'faker'
gem 'simplecov', require: false
gem 'database_cleaner'
gem 'coveralls', require: false
gem 'apparition'
gem 'rails-controller-testing'
end
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
# Use debugger
# gem 'debugger', group: [:development, :test]