This repository has been archived by the owner on Jan 8, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Gemfile
110 lines (88 loc) · 2.14 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
source 'https://rubygems.org'
gem 'rails', '~> 3.2.18'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'pg'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'compass-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
gem 'zurb-foundation', '~> 4.2.0'
gem 'font-awesome-rails', '~> 3.2'
end
gem 'jquery-rails', '~> 2.2.1'
gem 'foundation_rails_helper'
# Authentication
gem 'omniauth'
gem 'omniauth-cas'
gem 'omniauth-ldap'
gem 'omniauth-password',
:github => 'ninech/omniauth-password',
:branch => 'fix-uid'
# Authorization
gem 'cancan'
gem 'rolify'
# sync
gem 'version_reader'
gem 'jbuilder'
gem 'validates_timeliness'
gem 'acts_as_paranoid', '~>0.4.0'
# calendar
gem 'calendar_helper', '~> 0.2'
# rails localization
gem 'rails-i18n', branch: 'rails-3-x'
# navigation
gem 'simple-navigation'
# raf <3 CORS
gem 'rack-cors'
gem 'gaffe'
gem 'kaminari'
gem 'http_accept_language'
gem 'thin'
# API
# http://www.youtube.com/watch?v=mqgiEQXGetI
gem 'grape', git: 'git://github.com/intridea/grape.git'
gem 'grape-entity', git: 'git://github.com/intridea/grape-entity.git'
gem 'grape-swagger'
gem 'warden'
# .env magic
gem 'dotenv-rails'
group :development, :test do
gem 'sqlite3'
gem 'mysql2'
gem 'rspec'
gem 'rspec-rails'
gem 'spring-commands-rspec'
gem 'ci_reporter'
gem 'brakeman'
gem 'simplecov', :require => false
gem 'simplecov-rcov', :require => false
gem 'factory_girl_rails', require: false
gem 'faker'
gem 'capybara'
gem 'i18n-missing_translations'
gem 'capistrano_database_yml'
gem 'timecop'
gem 'database_cleaner'
gem 'launchy'
gem 'fivemat'
gem 'annotate'
gem 'parallel_tests'
gem 'guard-spring'
gem 'selenium-webdriver'
end
group :development do
gem 'capistrano', '~> 2.13.0'
gem 'capistrano-maintenance'
gem 'version_bumper'
gem 'better_errors'
gem 'binding_of_caller'
gem 'sextant'
gem 'meta_request'
gem 'foreman'
end