mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2024-12-22 15:43:14 +01:00
Cleanup Gemfile
This commit is contained in:
parent
4e1e8b798a
commit
e7e4ea1fe1
1 changed files with 23 additions and 48 deletions
71
Gemfile
71
Gemfile
|
@ -1,55 +1,42 @@
|
||||||
source 'https://rubygems.org'
|
source 'https://rubygems.org'
|
||||||
|
|
||||||
|
|
||||||
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
|
||||||
gem 'rails', '~> 5.1.5'
|
gem 'rails', '~> 5.1.5'
|
||||||
gem 'rails-i18n'
|
gem 'rails-i18n'
|
||||||
# Use sqlite3 as the database for Active Record
|
|
||||||
|
# database and search index
|
||||||
gem 'sqlite3'
|
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', '~> 6'
|
||||||
gem 'elasticsearch-model', '~> 6'
|
gem 'elasticsearch-model', '~> 6'
|
||||||
gem 'elasticsearch-rails', '~> 6'
|
gem 'elasticsearch-rails', '~> 6'
|
||||||
gem 'elasticsearch-dsl'
|
gem 'elasticsearch-dsl'
|
||||||
|
|
||||||
|
# pagination
|
||||||
|
gem 'kaminari'
|
||||||
|
gem 'kaminari-i18n'
|
||||||
|
|
||||||
|
# authentication
|
||||||
|
gem 'omniauth'
|
||||||
|
gem 'omniauth-browserid'
|
||||||
|
|
||||||
|
# templates, css and other frontend related
|
||||||
|
gem 'sass-rails'
|
||||||
|
gem 'uglifier'
|
||||||
|
gem 'coffee-rails'
|
||||||
|
gem 'slim-rails'
|
||||||
|
gem 'jquery-rails'
|
||||||
|
gem 'turbolinks'
|
||||||
|
gem 'foundation-rails', '~> 5.5'
|
||||||
|
|
||||||
|
# misc
|
||||||
gem 'leaflet-rails'
|
gem 'leaflet-rails'
|
||||||
|
gem 'validate_url'
|
||||||
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
|
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
|
||||||
|
gem 'sdoc', '~> 0.4.0', group: :doc
|
||||||
# bundle exec rake doc:rails generates the API under doc/api.
|
|
||||||
gem 'sdoc', '~> 0.4.0', group: :doc
|
|
||||||
|
|
||||||
group :development do
|
group :development do
|
||||||
gem 'spring'
|
gem 'spring'
|
||||||
gem 'spring-commands-rspec'
|
gem 'spring-commands-rspec'
|
||||||
# https://rossta.net/blog/quiet-assets-in-rails-5.html
|
|
||||||
# gem 'quiet_assets'
|
|
||||||
gem 'awesome_print'
|
gem 'awesome_print'
|
||||||
# gem 'guard-rspec', require: false
|
|
||||||
# gem 'terminal-notifier-guard' # FIXME cross-platform
|
|
||||||
end
|
end
|
||||||
|
|
||||||
group :development, :test do
|
group :development, :test do
|
||||||
|
@ -63,7 +50,7 @@ group :development, :test do
|
||||||
end
|
end
|
||||||
|
|
||||||
group :test do
|
group :test do
|
||||||
gem "factory_bot_rails"
|
gem 'factory_bot_rails'
|
||||||
gem 'shoulda-matchers', '~> 3.1'
|
gem 'shoulda-matchers', '~> 3.1'
|
||||||
gem 'faker'
|
gem 'faker'
|
||||||
gem 'rubocop-faker'
|
gem 'rubocop-faker'
|
||||||
|
@ -73,15 +60,3 @@ group :test do
|
||||||
gem 'apparition'
|
gem 'apparition'
|
||||||
gem 'rails-controller-testing'
|
gem 'rails-controller-testing'
|
||||||
end
|
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]
|
|
||||||
|
|
Loading…
Reference in a new issue