2010-05-14 15:12:31 -07:00
|
|
|
source 'http://rubygems.org'
|
2023-08-02 17:07:30 -07:00
|
|
|
ruby '2.6.10'
|
2010-05-14 15:12:31 -07:00
|
|
|
|
2023-08-02 17:55:32 -07:00
|
|
|
gem 'rails', '= 6.1.7.4'
|
2023-08-02 13:36:28 -07:00
|
|
|
|
|
|
|
# Our database is MySQL, in both development and production.
|
2023-08-02 16:05:02 -07:00
|
|
|
gem 'mysql2', '~> 0.5.5'
|
2010-10-10 15:46:58 -07:00
|
|
|
|
2023-08-02 13:36:28 -07:00
|
|
|
# For reading the .env file, which you can use in development to more easily
|
|
|
|
# set environment variables for secret data.
|
2023-08-02 13:41:37 -07:00
|
|
|
gem 'dotenv-rails', '~> 2.8', '>= 2.8.1'
|
2023-08-02 13:36:28 -07:00
|
|
|
|
|
|
|
# For the asset pipeline: templates, CSS, JS, etc.
|
2023-07-22 12:58:15 -07:00
|
|
|
gem 'haml', '~> 6.1', '>= 6.1.1'
|
2023-08-02 13:36:28 -07:00
|
|
|
gem 'sass-rails', '~> 5.0', '>= 5.0.7'
|
|
|
|
gem 'compass-rails', '~> 3.1'
|
|
|
|
gem 'uglifier', '~> 4.2'
|
|
|
|
gem 'react-rails', '~> 2.7', '>= 2.7.1'
|
|
|
|
|
|
|
|
# For authentication.
|
2023-08-02 15:18:36 -07:00
|
|
|
gem 'devise', '~> 4.9', '>= 4.9.2'
|
2011-01-13 14:22:07 -08:00
|
|
|
|
2023-08-02 16:30:17 -07:00
|
|
|
# For pagination UI.
|
|
|
|
gem 'will_paginate', '~> 4.0'
|
|
|
|
|
2023-08-02 13:36:28 -07:00
|
|
|
# For translation, both for the site UI and for Neopets data.
|
2023-08-02 17:27:11 -07:00
|
|
|
gem 'rails-i18n', '~> 7.0', '>= 7.0.7'
|
2023-08-02 13:36:28 -07:00
|
|
|
gem 'http_accept_language', '~> 2.1', '>= 2.1.1'
|
2023-08-02 16:05:02 -07:00
|
|
|
gem 'globalize', '~> 6.2', '>= 6.2.1'
|
2010-05-15 15:58:28 -07:00
|
|
|
|
2023-08-02 13:36:28 -07:00
|
|
|
# For reading and parsing HTML from Neopets.com, like importing Closet pages.
|
2023-08-02 17:09:43 -07:00
|
|
|
gem 'nokogiri', '~> 1.13', '>= 1.13.10'
|
2023-08-02 17:16:24 -07:00
|
|
|
gem 'rest-client', '~> 2.1'
|
2011-07-12 16:37:16 -07:00
|
|
|
|
2023-08-02 13:36:28 -07:00
|
|
|
# For safely rendering users' Markdown + HTML on item list pages.
|
2023-08-02 17:16:24 -07:00
|
|
|
gem 'rdiscount', '~> 2.2', '>= 2.2.7.1'
|
|
|
|
gem 'sanitize', '~> 6.0', '>= 6.0.2'
|
2011-07-29 07:52:04 -07:00
|
|
|
|
2023-08-02 13:36:28 -07:00
|
|
|
# For working with Neopets APIs.
|
|
|
|
# unstable version of RocketAMF interprets info registry as a hash instead of an array
|
|
|
|
gem 'RocketAMF', :git => 'https://github.com/rubyamf/rocketamf.git'
|
2012-05-21 09:48:19 -07:00
|
|
|
|
2023-08-02 13:36:28 -07:00
|
|
|
# For working with the OpenNeo ID service.
|
2023-08-02 17:16:24 -07:00
|
|
|
gem 'msgpack', '~> 1.7', '>= 1.7.2'
|
2023-08-02 13:36:28 -07:00
|
|
|
gem 'openneo-auth-signatory', '~> 0.1.0'
|
2013-01-30 18:57:32 -08:00
|
|
|
|
2023-08-02 13:36:28 -07:00
|
|
|
# For preventing too many modeling attempts.
|
2023-08-02 17:16:24 -07:00
|
|
|
gem 'rack-attack', '~> 6.7'
|
2013-07-02 14:10:01 -07:00
|
|
|
|
2023-08-02 13:36:28 -07:00
|
|
|
# For testing emails in development.
|
2023-08-02 17:16:24 -07:00
|
|
|
gem 'letter_opener', '~> 1.8', '>= 1.8.1', group: :development
|
2014-09-10 12:32:54 -07:00
|
|
|
|
2023-08-02 13:36:28 -07:00
|
|
|
# For parallel API calls.
|
2023-08-02 17:16:24 -07:00
|
|
|
gem 'parallel', '~> 1.23'
|
2013-03-05 18:08:57 -08:00
|
|
|
|
2023-08-02 15:41:22 -07:00
|
|
|
# For debugging.
|
2023-08-02 17:36:32 -07:00
|
|
|
gem 'web-console', '~> 4.2', group: :development
|
2023-08-02 15:41:22 -07:00
|
|
|
|
2023-08-02 16:05:02 -07:00
|
|
|
# TODO: Review our use of content_tag_for etc and uninstall this!
|
2023-08-02 17:16:24 -07:00
|
|
|
gem 'record_tag_helper', '~> 1.0', '>= 1.0.1'
|
2023-08-02 16:05:02 -07:00
|
|
|
|
2023-08-02 16:17:07 -07:00
|
|
|
# Reduces boot times through caching; required in config/boot.rb
|
2023-08-02 17:16:24 -07:00
|
|
|
gem 'bootsnap', '~> 1.16', require: false
|
2023-08-02 16:17:07 -07:00
|
|
|
|
2023-08-02 13:36:28 -07:00
|
|
|
# For deployment.
|
2012-08-09 15:32:33 -07:00
|
|
|
group :development do
|
2015-07-17 19:15:56 -07:00
|
|
|
gem 'capistrano', '~> 2.15.5', require: false
|
|
|
|
gem 'rvm-capistrano', '~> 1.5.6', require: false
|
2012-08-09 15:32:33 -07:00
|
|
|
end
|
|
|
|
|
2023-08-02 13:36:28 -07:00
|
|
|
# For production caching.
|
2011-02-09 15:19:52 -08:00
|
|
|
group :production do
|
2011-06-04 07:58:41 -07:00
|
|
|
gem 'memcache-client', '~> 1.8.5', :require => 'memcache'
|
2010-10-11 15:28:39 -07:00
|
|
|
end
|
|
|
|
|
2023-08-02 13:36:28 -07:00
|
|
|
# For testing.
|
2010-05-14 15:32:58 -07:00
|
|
|
group :test do
|
2023-08-02 15:18:36 -07:00
|
|
|
gem 'factory_girl_rails', '~> 4.9'
|
2010-10-07 07:46:23 -07:00
|
|
|
gem 'rspec-rails', '~> 2.0.0.beta.22'
|
2022-07-23 21:46:13 -07:00
|
|
|
end
|