ensl.org/Gemfile

103 lines
2 KiB
Text
Raw Normal View History

2020-03-16 20:30:46 +00:00
# frozen_string_literal: true
source 'http://rubygems.org'
2020-03-16 21:59:01 +00:00
ruby '2.4.9'
2020-03-16 20:10:14 +00:00
# Rails core
2020-03-16 21:59:01 +00:00
gem 'rails', '~> 5.2.4.1'
2020-03-15 22:58:22 +00:00
gem 'rake', '< 11.0'
2020-03-16 20:30:46 +00:00
gem 'responders'
# Dotenv
gem 'dotenv-rails'
# DB
# Fixme: using this bc puma startup problem
gem 'active_record_union'
2020-03-16 20:30:46 +00:00
gem 'dalli', '~> 2.7.0'
gem 'mysql2', '0.3.18'
# Web server
gem 'faraday', '~> 0.9.0'
2020-03-16 20:30:46 +00:00
gem 'puma'
# Model plugins
# FIXME: using this b/c ruby 2.4 not supported
gem 'unread', '0.10.1'
2020-03-16 01:08:21 +00:00
# gem "acts_as_rateable", :git => "git://github.com/anton-zaytsev/acts_as_rateable.git"
# View helper gems
2020-03-16 21:59:01 +00:00
gem 'active_link_to'
gem 'bbcoder'
gem 'bluecloth'
gem 'carrierwave'
gem 'country_select', require: 'country_select_without_sort_alphabetical'
2020-03-16 21:59:01 +00:00
gem 'dynamic_form'
gem 'i18n_country_select'
2020-03-16 21:59:01 +00:00
gem 'nokogiri'
gem 'public_suffix'
2020-03-16 20:30:46 +00:00
gem 'rmagick'
2020-03-16 21:59:01 +00:00
gem 'sanitize'
2020-03-16 20:30:46 +00:00
gem 'will_paginate', '~> 3.0.5'
# External APIs
2017-04-02 17:35:50 +00:00
gem 'google-api-client', '~> 0.10.3'
gem 'steam-condenser', github: 'koraktor/steam-condenser-ruby'
2020-03-16 20:10:14 +00:00
# FIXME: Legacy feature shims
2020-03-16 21:59:01 +00:00
# gem 'protected_attributes'
gem 'rails_autolink'
2020-03-16 20:10:14 +00:00
# Javascript
2020-03-16 21:59:01 +00:00
gem 'coffee-rails'
2020-03-16 20:10:14 +00:00
gem 'i18n-js'
2020-03-16 21:59:01 +00:00
gem 'jquery-rails'
gem 'tinymce-rails'
# Please install nodejs locally.
2020-03-16 20:30:46 +00:00
# gem 'therubyracer', '~> 0.12.1' if RUBY_PLATFORM == 'x86_64-linux'
2020-03-16 21:59:01 +00:00
gem 'bourbon'
gem 'font-awesome-sass'
gem 'haml'
gem 'neat'
gem 'sass-rails'
gem 'uglifier', '~> 2.5.0'
2020-03-16 20:10:14 +00:00
# Dependency version fix
gem 'signet', '0.11.0'
group :production do
2020-03-16 21:59:01 +00:00
gem 'newrelic_rpm'
end
2014-03-23 01:53:42 +00:00
group :development do
2020-03-16 20:30:46 +00:00
gem 'annotate'
gem 'better_errors'
gem 'binding_of_caller'
2020-03-16 20:30:46 +00:00
gem 'spring', '2.0.2'
2020-03-16 21:59:01 +00:00
gem 'web-console', '3.7.0'
gem 'rubocop'
end
2014-03-23 01:53:42 +00:00
group :test do
2020-03-16 20:30:46 +00:00
# gem 'spring'
2020-03-16 21:59:01 +00:00
gem 'capybara'
gem 'codeclimate-test-reporter', require: nil
gem 'database_cleaner'
2020-03-16 20:30:46 +00:00
gem 'factory_bot_rails'
gem 'phantomjs', require: 'phantomjs/poltergeist'
2020-03-16 21:59:01 +00:00
gem 'poltergeist'
2020-03-16 20:30:46 +00:00
gem 'rspec'
2020-03-16 21:59:01 +00:00
gem 'rspec-rails'
gem 'selenium-webdriver'
2020-03-16 21:59:01 +00:00
gem 'simplecov', require: false
gem 'test-unit'
gem 'timecop'
end
2014-03-23 01:53:42 +00:00
group :development, :test do
gem 'pry-byebug', '~> 1.3.2'
end