ensl.org/Gemfile

125 lines
2.7 KiB
Text
Raw Normal View History

2020-03-16 20:30:46 +00:00
# frozen_string_literal: true
source 'http://rubygems.org'
2020-03-17 02:55:56 +00:00
ruby '2.5.7'
2020-03-16 20:10:14 +00:00
# Rails core
2020-03-17 02:55:56 +00:00
gem 'rails', '~> 6.0.2.1'
2020-03-15 22:58:22 +00:00
gem 'rake', '< 11.0'
# 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'
# 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-22 13:04:06 +00:00
# gem 'impressionist'
# gem 'ratyrate'
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'
2020-03-17 01:03:02 +00:00
gem 'nokogiri'
gem 'rmagick'
gem 'country_select', require: 'country_select_without_sort_alphabetical'
gem 'i18n_country_select'
2020-03-17 01:03:02 +00:00
gem 'dynamic_form'
2020-03-16 21:59:01 +00:00
gem 'public_suffix'
gem 'sanitize'
2020-03-17 01:08:11 +00:00
gem 'will_paginate'
gem 'time_difference'
# 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 'rails_autolink'
2020-03-17 01:03:02 +00:00
gem 'responders'
2020-03-16 20:10:14 +00:00
# Javascript
2020-03-16 21:59:01 +00:00
gem 'coffee-rails'
gem 'jquery-rails'
gem 'tinymce-rails'
2020-03-17 01:03:02 +00:00
gem 'i18n-js'
# Please install nodejs locally.
2020-03-16 20:30:46 +00:00
# gem 'therubyracer', '~> 0.12.1' if RUBY_PLATFORM == 'x86_64-linux'
gem 'bourbon','~> 3.1.8'
2020-03-17 00:13:40 +00:00
# Fix icons before updating
gem 'font-awesome-sass', '~> 4.1.0.0'
2020-03-16 21:59:01 +00:00
gem 'haml'
2020-03-17 00:13:40 +00:00
# Upgrading will cause issues
gem 'neat', '~> 1.6.0'
2020-03-17 01:03:02 +00:00
# This it outdated by sassc
gem 'sass-rails', '~> 5.0.3'
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'
2020-03-17 00:13:40 +00:00
# gem 'codeclimate-test-reporter', require: nil
2020-03-16 21:59:01 +00:00
gem 'database_cleaner'
2020-03-17 01:03:02 +00:00
# FIXME: Downgraded b/c of deprecations, fix static attributes
gem 'factory_bot_rails', '4.10.0'
2020-03-16 20:30:46 +00:00
gem 'phantomjs', require: 'phantomjs/poltergeist'
2020-03-16 21:59:01 +00:00
gem 'poltergeist'
gem 'selenium-webdriver'
2020-03-17 01:58:33 +00:00
# Fix FF issue
gem 'geckodriver-helper'
# Fix legacy issue
gem 'rails-controller-testing'
2020-03-16 21:59:01 +00:00
gem 'simplecov', require: false
gem 'test-unit'
gem 'timecop'
# FOr JS test
gem 'mime-types'
# Use dev versions because of rspec bug
gem 'rspec-core', git: 'https://github.com/rspec/rspec-core'
gem 'rspec-expectations', git: 'https://github.com/rspec/rspec-expectations'
gem 'rspec-mocks', git: 'https://github.com/rspec/rspec-mocks'
gem 'rspec-rails', git: 'https://github.com/rspec/rspec-rails'
gem 'rspec-support', git: 'https://github.com/rspec/rspec-support'
end
2014-03-23 01:53:42 +00:00
group :development, :test do
gem 'pry-rails'
gem 'pry-byebug', '~> 1.3.2'
end