2012-04-10 14:06:46 +00:00
|
|
|
source 'http://rubygems.org'
|
2012-04-10 13:31:21 +00:00
|
|
|
|
2014-05-28 20:21:53 +00:00
|
|
|
gem 'rails', '4.1.2.rc1'
|
2013-08-22 20:29:24 +00:00
|
|
|
gem 'rails-observers'
|
|
|
|
gem 'activerecord-session_store'
|
2013-05-27 07:24:09 +00:00
|
|
|
|
2013-05-30 23:33:20 +00:00
|
|
|
gem 'eco'
|
|
|
|
|
2012-04-10 13:31:21 +00:00
|
|
|
# Bundle edge Rails instead:
|
2012-04-10 14:06:46 +00:00
|
|
|
#gem 'rails', :git => 'git://github.com/rails/rails.git'
|
2012-04-10 13:31:21 +00:00
|
|
|
|
|
|
|
gem 'json'
|
|
|
|
|
|
|
|
# Gems used only for assets and not required
|
|
|
|
# in production environments by default.
|
|
|
|
group :assets do
|
2014-05-20 19:49:48 +00:00
|
|
|
gem 'sass-rails'
|
|
|
|
gem 'coffee-rails'
|
2013-08-04 21:41:11 +00:00
|
|
|
gem 'uglifier'
|
2012-04-10 13:31:21 +00:00
|
|
|
end
|
|
|
|
|
2012-11-07 12:30:27 +00:00
|
|
|
gem 'omniauth'
|
|
|
|
gem 'omniauth-twitter'
|
|
|
|
gem 'omniauth-facebook'
|
|
|
|
gem 'omniauth-linkedin'
|
2012-04-29 21:28:45 +00:00
|
|
|
gem 'omniauth-google-oauth2'
|
2012-04-10 14:06:46 +00:00
|
|
|
|
2014-04-03 14:40:17 +00:00
|
|
|
gem 'twitter', '~> 5.8'
|
2012-04-29 21:28:45 +00:00
|
|
|
gem 'koala'
|
|
|
|
gem 'mail'
|
2012-04-10 14:06:46 +00:00
|
|
|
|
2012-04-29 21:28:45 +00:00
|
|
|
gem 'mime-types'
|
2012-04-10 14:06:46 +00:00
|
|
|
|
|
|
|
gem 'delayed_job_active_record'
|
2012-04-29 21:28:45 +00:00
|
|
|
gem 'daemons'
|
|
|
|
|
|
|
|
gem 'simple-rss'
|
2012-04-10 14:06:46 +00:00
|
|
|
|
2012-04-14 11:30:41 +00:00
|
|
|
# e. g. on linux we need a javascript execution
|
2013-01-04 10:17:43 +00:00
|
|
|
# gem 'libv8', '~> 3.11.8'
|
2012-04-14 11:30:41 +00:00
|
|
|
# gem 'execjs'
|
|
|
|
# gem 'therubyracer'
|
|
|
|
|
|
|
|
# e. g. for mysql you need to load mysql
|
2012-10-01 18:41:08 +00:00
|
|
|
gem 'mysql2'
|
2013-01-23 07:28:03 +00:00
|
|
|
#gem 'sqlite3'
|
2012-04-14 11:30:41 +00:00
|
|
|
|
2013-05-27 07:24:09 +00:00
|
|
|
#platforms :jruby do
|
|
|
|
# gem 'jruby-openssl'
|
|
|
|
# gem 'activerecord-jdbcmysql-adapter'
|
|
|
|
#end
|
|
|
|
|
2013-02-07 21:24:03 +00:00
|
|
|
gem 'net-ldap'
|
|
|
|
|
2014-05-12 08:03:48 +00:00
|
|
|
gem 'writeexcel'
|
|
|
|
|
2012-04-10 14:06:46 +00:00
|
|
|
# Use unicorn as the web server
|
2012-04-10 13:31:21 +00:00
|
|
|
# gem 'unicorn'
|
|
|
|
|
|
|
|
# Deploy with Capistrano
|
|
|
|
# gem 'capistrano'
|
|
|
|
|
|
|
|
# To use debugger
|
|
|
|
# gem 'ruby-debug'
|
2012-04-10 14:06:46 +00:00
|
|
|
|
2012-07-23 22:22:23 +00:00
|
|
|
# event machine
|
|
|
|
gem 'eventmachine'
|
|
|
|
gem 'em-websocket'
|
2012-11-08 20:11:54 +00:00
|
|
|
|
2013-01-23 07:28:03 +00:00
|
|
|
# Gems used only for develo//test and not required
|
|
|
|
# in production environments by default.
|
|
|
|
group :development, :test do
|
|
|
|
|
2013-08-22 20:29:24 +00:00
|
|
|
gem 'test-unit'
|
2014-05-20 20:41:29 +00:00
|
|
|
gem 'spring'
|
2013-01-23 07:28:03 +00:00
|
|
|
gem 'sqlite3'
|
2012-11-12 18:29:22 +00:00
|
|
|
|
2013-01-23 07:28:03 +00:00
|
|
|
# code coverage
|
|
|
|
gem 'simplecov'
|
|
|
|
gem 'simplecov-rcov'
|
2012-11-12 18:29:22 +00:00
|
|
|
|
2013-01-23 07:28:03 +00:00
|
|
|
# UI tests w/ Selenium
|
2013-02-23 22:54:48 +00:00
|
|
|
gem 'selenium-webdriver'
|
2013-01-23 07:28:03 +00:00
|
|
|
|
2013-07-19 14:18:16 +00:00
|
|
|
# rest client lib for unit tests
|
|
|
|
gem 'faraday'
|
|
|
|
|
|
|
|
# websocket unit tests
|
|
|
|
# gem 'em-websocket-client'
|
2013-01-23 07:28:03 +00:00
|
|
|
end
|
2013-02-26 21:23:25 +00:00
|
|
|
|
2013-11-14 13:09:39 +00:00
|
|
|
# to generate doc
|
|
|
|
gem 'kramdown'
|
|
|
|
|
2013-08-22 20:29:24 +00:00
|
|
|
gem 'puma'
|