tracks/Gemfile

71 lines
1.5 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.1'
2013-05-11 23:12:20 +02:00
2020-10-27 19:35:01 +02:00
gem 'coffee-rails', '~> 5.0.0'
2013-05-11 23:12:20 +02:00
gem 'jquery-rails', '~> 4.5'
2020-10-27 19:35:01 +02:00
gem 'jquery-ui-rails', '~>6.0.1'
2013-05-11 23:12:20 +02:00
2022-08-14 01:46:34 +03:00
gem 'rails', '~> 6.0.0'
2020-10-27 19:35:01 +02:00
gem 'sassc-rails', '~> 2.1.2'
2012-03-19 14:05:54 +01:00
2020-10-27 19:35:01 +02:00
gem 'bootstrap-sass', '3.4.1'
gem 'font-awesome-sass', '~> 6.3.0'
2020-10-27 19:35:01 +02:00
gem 'uglifier', '>=1.3.0'
2012-04-11 17:36:22 +02:00
gem 'aasm', '~> 5.5.0'
2020-10-27 19:35:01 +02:00
gem 'acts_as_list'
gem 'bcrypt', '~> 3.1.18'
2020-10-27 19:35:01 +02:00
gem 'htmlentities'
gem "kt-paperclip", "~> 7.1"
gem 'puma', '~> 6.2'
2020-10-27 19:35:01 +02:00
gem 'rails_autolink'
gem 'RedCloth'
gem 'sanitize', '~> 6.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
2020-10-27 19:35:01 +02:00
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', group: :therubyracer
2013-05-11 23:12:20 +02:00
2020-10-27 19:35:01 +02:00
# Use --without <group> argument to skip unnecessary drivers
gem 'sqlite3', group: :sqlite
gem 'mysql2', '~> 0.5.5', group: :mysql
gem 'pg', '~> 1.4.6', group: :postgresql
2015-08-07 23:15:30 -04:00
group :development do
gem 'spring', '~> 4'
gem 'yard'
gem 'tolk', '~> 5.0.0'
gem 'bullet'
gem 'rack-mini-profiler'
gem 'solargraph'
2020-10-10 00:53:59 +03:00
gem 'i18n-tasks', '~> 1.0.12'
end
2012-04-27 14:22:16 +02:00
2016-01-31 11:06:45 -05:00
group :development, :test do
gem 'byebug'
gem 'listen'
gem 'rubocop', '~> 1.48', require: false
2016-01-31 11:06:45 -05:00
end
2012-04-27 14:22:16 +02:00
group :test do
2020-10-27 21:39:19 +02:00
# get test coverage info on codeclimate
gem 'codeclimate-test-reporter', '1.0.9', group: :test, require: nil
2022-08-14 01:46:34 +03:00
gem 'database_cleaner', '~> 1'
2020-10-27 21:39:19 +02:00
gem 'factory_bot_rails'
gem 'minitest-stub-const'
gem 'mocha', :require => false
2020-10-27 21:39:19 +02:00
gem 'rails-controller-testing'
gem 'rails-dom-testing', '~> 2.0.0'
gem 'rspec-expectations'
gem 'simplecov'
2012-08-28 08:41:25 -05:00
end