tracks/Gemfile

73 lines
1.6 KiB
Text
Raw Normal View History

2012-04-05 10:43:56 +02:00
source 'https://rubygems.org'
gem 'actionpack-xml_parser', '~> 2.0'
gem 'activemodel-serializers-xml', '~> 1.0.3'
2013-05-11 23:12:20 +02:00
2025-06-30 00:45:25 +03:00
gem 'rails', '~> 7.1'
2012-03-19 14:05:54 +01:00
gem 'font-awesome-sass', '~> 6.7.2'
2024-07-19 00:14:41 +03:00
gem 'jquery-rails', '~> 4.6'
gem 'jquery-ui-rails', '~>8.0.0'
gem 'aasm', '~> 5.5.1'
2020-10-27 19:35:01 +02:00
gem 'acts_as_list'
gem 'bcrypt', '~> 3.1.20'
2020-10-27 19:35:01 +02:00
gem 'htmlentities'
gem "kt-paperclip", "~> 7.2"
gem 'puma', '~> 6.6'
2020-10-27 19:35:01 +02:00
gem 'rails_autolink'
gem 'RedCloth'
gem 'sanitize', '~> 7.0'
2021-08-25 17:15:34 +03:00
gem 'tracks-chartjs-ror'
2020-10-27 19:35:01 +02:00
gem 'will_paginate'
2019-05-19 18:31:04 +03:00
gem 'rexml'
2020-10-27 19:35:01 +02:00
# Use --without <group> argument to skip unnecessary drivers
gem 'sqlite3', '~> 2.7', group: :sqlite
gem 'mysql2', '~> 0.5', group: :mysql
gem 'pg', '~> 1.5', group: :postgresql
2015-08-07 23:15:30 -04:00
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'mini_racer', group: :therubyracer
2025-06-28 16:25:52 +03:00
gem 'sprockets-rails'
gem 'coffee-rails', '~> 5.0.0'
gem 'dartsass-sprockets'
gem 'bootstrap-sass', '3.4.1'
gem 'terser'
gem 'listen'
gem 'tolk', '~> 6.0.0'
group :development, :optional => true do
gem 'spring', '~> 4'
gem 'yard'
gem 'bullet'
gem 'rack-mini-profiler'
gem 'solargraph'
2020-10-10 00:53:59 +03:00
gem 'i18n-tasks', '~> 1.0.15'
end
2012-04-27 14:22:16 +02:00
group :development, :test, :optional => true do
gem 'byebug'
gem 'rubocop', '~> 1.78'
2016-01-31 11:06:45 -05:00
end
group :test, :optional => true do
2020-10-27 21:39:19 +02:00
# get test coverage info on codeclimate
gem 'codeclimate-test-reporter', '1.0.9'
gem 'database_cleaner', '~> 2'
2020-10-27 21:39:19 +02:00
gem 'factory_bot_rails'
gem 'minitest-stub-const'
gem 'mocha'
2020-10-27 21:39:19 +02:00
gem 'rails-controller-testing'
gem 'rails-dom-testing', '~> 2.3.0'
2020-10-27 21:39:19 +02:00
gem 'rspec-expectations'
gem 'simplecov'
2012-08-28 08:41:25 -05:00
end
2024-07-18 16:00:02 +03:00
group :stripe, :optional => true do
gem 'stripe'
end