2012-04-05 10:43:56 +02:00
|
|
|
source 'https://rubygems.org'
|
2011-08-17 16:09:28 -05:00
|
|
|
|
2020-08-20 09:27:26 +00:00
|
|
|
gem 'rails', '~> 6.0.3'
|
2020-08-20 06:13:52 +00:00
|
|
|
gem 'sassc-rails', '~> 2.1.2'
|
2020-01-02 14:15:37 +00:00
|
|
|
gem 'coffee-rails', '~> 5.0.0'
|
2013-05-11 23:12:20 +02:00
|
|
|
|
2014-04-11 22:45:57 +02:00
|
|
|
#gem 'json'
|
2013-07-28 13:36:47 +02:00
|
|
|
|
2013-12-26 22:01:17 -06:00
|
|
|
# todo: remove xml api
|
2020-10-10 01:37:05 +03:00
|
|
|
gem 'actionpack-xml_parser', '~> 2.0'
|
|
|
|
|
gem 'activemodel-serializers-xml', '~> 1.0.1'
|
2013-05-11 23:12:20 +02:00
|
|
|
|
|
|
|
|
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
2015-02-24 21:29:10 -05:00
|
|
|
gem 'therubyracer', group: :therubyracer
|
2013-05-11 23:12:20 +02:00
|
|
|
|
|
|
|
|
gem 'uglifier', '>=1.3.0'
|
|
|
|
|
|
2020-07-17 09:56:35 +00:00
|
|
|
gem 'jquery-rails' , '~> 4.4'
|
2020-07-17 18:33:25 +00:00
|
|
|
gem 'jquery-ui-rails' , '~>6.0.1'
|
2012-03-19 14:05:54 +01:00
|
|
|
|
2015-02-21 17:38:48 +00:00
|
|
|
# you may comment out the database driver(s) you will not be using.
|
2013-12-26 22:01:17 -06:00
|
|
|
# This will prevent a native build of the driver. Building native drivers is not
|
2015-02-21 17:38:48 +00:00
|
|
|
# always possible on all platforms
|
|
|
|
|
# Alternatively use --without <group> arguments to bundler to not install that group
|
2020-10-10 01:37:05 +03:00
|
|
|
gem 'sqlite3', group: :sqlite
|
|
|
|
|
gem 'mysql2', '~> 0.5.3', group: :mysql
|
|
|
|
|
gem 'pg', '~> 1.2.3', group: :postgresql
|
|
|
|
|
|
|
|
|
|
gem 'RedCloth'
|
|
|
|
|
gem 'sanitize', '~> 5.2'
|
|
|
|
|
gem 'will_paginate'
|
|
|
|
|
gem 'acts_as_list'
|
|
|
|
|
gem 'aasm', '~> 5.1.1'
|
|
|
|
|
gem 'htmlentities'
|
|
|
|
|
gem 'rails_autolink'
|
2020-09-18 05:30:56 +00:00
|
|
|
gem 'puma', '~> 5.0'
|
2015-08-05 12:58:52 +02:00
|
|
|
gem 'paperclip'
|
2012-04-11 17:36:22 +02:00
|
|
|
|
2012-04-05 10:43:56 +02:00
|
|
|
# To use ActiveModel has_secure_password
|
2020-09-04 05:35:31 +00:00
|
|
|
gem 'bcrypt', '~> 3.1.16'
|
2012-04-05 10:43:56 +02:00
|
|
|
|
2019-11-13 19:33:11 +02:00
|
|
|
gem 'chartjs-ror', :git => 'git://github.com/ZeiP/chartjs-ror.git'
|
2019-05-19 18:31:04 +03:00
|
|
|
|
2013-05-11 23:12:20 +02:00
|
|
|
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
|
|
|
|
|
# gem 'turbolinks'
|
|
|
|
|
|
|
|
|
|
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
2013-06-25 16:50:07 +02:00
|
|
|
# gem 'jbuilder', '~> 1.2'
|
2013-05-11 23:12:20 +02:00
|
|
|
|
2020-10-10 01:37:05 +03:00
|
|
|
gem 'bootstrap-sass', '3.4.1'
|
2020-10-19 06:30:23 +00:00
|
|
|
gem 'font-awesome-sass', '~> 5.15.1'
|
2015-08-07 23:15:30 -04:00
|
|
|
|
2012-04-12 17:30:05 +02:00
|
|
|
group :development do
|
2020-10-10 01:37:05 +03:00
|
|
|
gem 'spring'
|
|
|
|
|
gem 'yard'
|
2014-08-07 12:49:28 +02:00
|
|
|
|
2020-07-23 05:59:09 +00:00
|
|
|
gem 'tolk', '~> 4.0.0'
|
2014-08-07 12:49:28 +02:00
|
|
|
|
2020-10-10 01:37:05 +03:00
|
|
|
gem 'bullet'
|
|
|
|
|
gem 'rack-mini-profiler'
|
|
|
|
|
gem 'solargraph'
|
2020-10-10 00:53:59 +03:00
|
|
|
|
|
|
|
|
gem 'i18n-tasks', '~> 0.9.31'
|
2012-04-12 17:30:05 +02:00
|
|
|
end
|
2012-04-27 14:22:16 +02:00
|
|
|
|
2016-01-31 11:06:45 -05:00
|
|
|
group :development, :test do
|
2018-09-30 16:21:47 -05:00
|
|
|
gem 'byebug'
|
2018-11-12 16:03:42 -06:00
|
|
|
gem 'listen'
|
2020-10-10 01:37:05 +03:00
|
|
|
gem 'rubocop', '~> 0.93', require: false
|
2016-01-31 11:06:45 -05:00
|
|
|
end
|
|
|
|
|
|
2012-04-27 14:22:16 +02:00
|
|
|
group :test do
|
2018-09-30 16:21:47 -05:00
|
|
|
gem 'rails-controller-testing'
|
|
|
|
|
gem 'rails-dom-testing', '~> 2.0.0'
|
2016-05-22 17:23:11 -04:00
|
|
|
|
2020-10-10 01:37:05 +03:00
|
|
|
gem 'factory_bot_rails'
|
|
|
|
|
gem 'rspec-expectations'
|
|
|
|
|
gem 'database_cleaner'
|
|
|
|
|
gem 'mocha', :require => false
|
|
|
|
|
gem 'minitest-stub-const'
|
2013-02-23 15:16:03 +01:00
|
|
|
|
2020-10-10 01:37:05 +03:00
|
|
|
gem 'selenium-webdriver', '~> 3.142'
|
2013-12-26 22:01:17 -06:00
|
|
|
|
2013-06-17 10:06:38 +02:00
|
|
|
# uncomment to use the webkit option. This depends on Qt being installed
|
2020-10-10 01:37:05 +03:00
|
|
|
# gem 'capybara-webkit'
|
2013-12-26 22:01:17 -06:00
|
|
|
|
2012-04-05 22:19:47 +02:00
|
|
|
# uncomment to be able to make screenshots from scenarios
|
2020-10-10 01:37:05 +03:00
|
|
|
#gem 'capybara-screenshot'
|
|
|
|
|
#gem 'launchy'
|
2013-09-16 09:40:41 +02:00
|
|
|
|
2020-10-10 01:37:05 +03:00
|
|
|
gem 'simplecov'
|
2013-09-16 09:40:41 +02:00
|
|
|
# get test coverage info on codeclimate
|
2020-10-10 01:37:05 +03:00
|
|
|
gem 'codeclimate-test-reporter', '1.0.7', group: :test, require: nil
|
2012-08-28 08:41:25 -05:00
|
|
|
end
|