trabajo-afectivo/Gemfile

165 lines
3.1 KiB
Ruby
Raw Normal View History

source 'https://rubygems.org'
2012-04-10 13:31:21 +00:00
2017-11-23 08:09:44 +00:00
# core - base
ruby '2.4.2'
gem 'rails', '5.1.4'
2012-04-10 13:31:21 +00:00
2017-11-23 08:09:44 +00:00
# core - rails additions
gem 'activerecord-session_store'
gem 'composite_primary_keys'
2012-04-10 13:31:21 +00:00
gem 'json'
2017-11-23 08:09:44 +00:00
gem 'rails-observers'
# core - application servers
gem 'puma', group: :puma
gem 'unicorn', group: :unicorn
2012-04-10 13:31:21 +00:00
2017-11-23 08:09:44 +00:00
# core - supported ORMs
gem 'activerecord-nulldb-adapter', group: :nulldb
2016-09-12 22:15:30 +00:00
gem 'mysql2', group: :mysql
gem 'pg', group: :postgres
2017-11-23 08:09:44 +00:00
# core - asynchrous task execution
gem 'daemons'
gem 'delayed_job_active_record'
# core - websocket
gem 'em-websocket'
gem 'eventmachine'
# core - password security
gem 'argon2'
# performance - Memcached
gem 'dalli'
# asset handling
2012-04-10 13:31:21 +00:00
group :assets do
2017-11-23 08:09:44 +00:00
# asset handling - coffee-script
2014-05-20 19:49:48 +00:00
gem 'coffee-rails'
gem 'coffee-script-source'
2017-11-23 08:09:44 +00:00
# asset handling - frontend templating
gem 'eco'
# asset handling - SASS
gem 'sass-rails'
2017-11-23 08:09:44 +00:00
# asset handling - pipeline
gem 'sprockets'
2013-08-04 21:41:11 +00:00
gem 'uglifier'
2012-04-10 13:31:21 +00:00
end
2016-08-03 19:25:00 +00:00
gem 'autoprefixer-rails'
2017-11-23 08:09:44 +00:00
# asset handling - javascript execution for e.g. linux
gem 'execjs'
gem 'libv8'
gem 'therubyracer'
# authentication - provider
gem 'doorkeeper'
2016-07-26 22:02:28 +00:00
gem 'oauth2'
2017-11-23 08:09:44 +00:00
# authentication - third party
2012-11-07 12:30:27 +00:00
gem 'omniauth'
gem 'omniauth-facebook'
2016-07-26 22:02:28 +00:00
gem 'omniauth-github'
gem 'omniauth-gitlab'
2012-04-29 21:28:45 +00:00
gem 'omniauth-google-oauth2'
2016-07-26 22:02:28 +00:00
gem 'omniauth-linkedin-oauth2'
gem 'omniauth-microsoft-office365'
2017-11-23 08:09:44 +00:00
gem 'omniauth-oauth2'
gem 'omniauth-twitter'
2017-09-26 14:41:55 +00:00
gem 'omniauth-weibo-oauth2'
2012-04-10 14:06:46 +00:00
2017-11-23 08:09:44 +00:00
# channels
2012-04-29 21:28:45 +00:00
gem 'koala'
2017-11-23 08:09:44 +00:00
gem 'telegramAPI'
gem 'twitter'
2012-04-10 14:06:46 +00:00
2017-11-23 08:09:44 +00:00
# channels - email additions
gem 'htmlentities'
gem 'mail', '2.6.6'
2012-04-29 21:28:45 +00:00
gem 'mime-types'
2017-11-23 08:09:44 +00:00
gem 'valid_email2'
2012-04-10 14:06:46 +00:00
2017-11-23 08:09:44 +00:00
# feature - business hours
gem 'biz'
2017-11-23 08:09:44 +00:00
# feature - signature diffing
gem 'diffy'
2017-11-23 08:09:44 +00:00
# feature - excel output
gem 'writeexcel'
2013-02-07 21:24:03 +00:00
2017-11-23 08:09:44 +00:00
# feature - device logging
gem 'browser'
2017-11-23 08:09:44 +00:00
# feature - iCal export
gem 'icalendar'
gem 'icalendar-recurrence'
2014-05-12 08:03:48 +00:00
2016-04-15 21:56:10 +00:00
# integrations
gem 'clearbit'
2017-11-23 08:09:44 +00:00
gem 'net-ldap'
gem 'slack-notifier'
gem 'zendesk_api'
2016-04-15 21:56:10 +00:00
2017-11-23 08:09:44 +00:00
# integrations - exchange
gem 'autodiscover', git: 'https://github.com/thorsteneckel/autodiscover.git'
gem 'rubyntlm', git: 'https://github.com/wimm/rubyntlm.git'
gem 'viewpoint'
# Gems used only for develop/test and not required
# in production environments by default.
group :development, :test do
2017-11-23 08:09:44 +00:00
# test frameworks
gem 'rspec-rails'
gem 'test-unit'
2017-11-23 08:09:44 +00:00
# test DB
gem 'sqlite3'
2012-11-12 18:29:22 +00:00
# code coverage
2017-11-23 08:09:44 +00:00
gem 'coveralls', require: false
gem 'simplecov'
gem 'simplecov-rcov'
2012-11-12 18:29:22 +00:00
# UI tests w/ Selenium
gem 'selenium-webdriver', '2.53.4'
# livereload on template changes (html, js, css)
2016-08-03 19:25:00 +00:00
gem 'guard', require: false
2015-09-29 13:00:30 +00:00
gem 'guard-livereload', require: false
gem 'rack-livereload'
2015-09-29 13:00:30 +00:00
gem 'rb-fsevent', require: false
2015-04-27 13:34:28 +00:00
# auto symlinking
gem 'guard-symlink', require: false
# code QA
2017-11-23 08:09:44 +00:00
gem 'coffeelint'
gem 'pre-commit'
gem 'rubocop'
# changelog generation
gem 'github_changelog_generator'
# Setting ENV for testing purposes
gem 'figaro'
# Use Factory Bot for generating random test data
gem 'factory_bot_rails'
# mock http calls
gem 'webmock'
end
2013-02-26 21:23:25 +00:00
2017-11-23 08:09:44 +00:00
# load onw gems for development and testing purposes
local_gemfile = File.join(File.dirname(__FILE__), 'Gemfile.local')
if File.exist?(local_gemfile)
eval_gemfile local_gemfile
end