-
Notifications
You must be signed in to change notification settings - Fork 11
/
Gemfile
78 lines (53 loc) · 1.42 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
source 'https://rubygems.org'
gem 'rails', '3.2.12'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.5'
gem 'coffee-rails', '~> 3.2.2'
gem 'uglifier', '~> 1.2.4'
end
gem 'jquery-rails', '~> 2.0.2'
# Deploy with Capistrano
gem 'capistrano', '~> 2.12.0'
# Authentication
gem 'devise', '~> 2.1.0'
# Assets
gem 'parslet', '~> 1.4.0'
gem 'paperclip', '~> 3.0.4'
gem 'mime-types', '~> 1.18', :require => 'mime/types'
# Search
gem 'squeel', '~> 1.0.5'
gem 'will_paginate', '~> 3.0.3'
gem 'acts-as-taggable-on', '~> 2.3.1'
gem 'rails3-jquery-autocomplete', '~> 1.0.7'
# reCAPTCHA
gem 'recaptcha', '~> 0.3.4', :require => 'recaptcha/rails'
gem 'yajl-ruby', '~> 1.1.0'
gem 'jsonify', '~> 0.3.1'
gem 'jsonify-rails', '~> 0.3.2'
gem 'execjs', '~> 1.4.0'
gem 'therubyracer', '~> 0.10.1'
gem 'bullring', '~> 0.8.3'
gem 'yaml_db'
gem 'gabba', "~> 1.0.1"
gem 'randumb', '~> 0.3.1'
# Detect import encoding
gem 'charlock_holmes'
# Export xlsx files
gem 'axlsx'
group :development, :test do
gem 'sqlite3', '~> 1.3.6'
gem 'debugger', '~> 1.1.4'
gem 'faker', '~> 1.0.1'
gem 'factory_girl_rails', '~> 3.4.0'
gem 'timecop', '~> 0.3.5'
gem 'thin', '~> 1.3.1'
gem 'quiet_assets', '~> 1.0.1'
gem 'rvm-capistrano'
end
# gem 'single_test', '~> 0.5.1'
group :production do
gem 'mysql2', '~> 0.3.11'
gem 'rack-ssl-enforcer', '~> 0.2.4'
end