-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathGemfile
60 lines (45 loc) · 1022 Bytes
/
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
source 'https://rubygems.org'
gem 'rails', '3.2.22'
gem 'bootstrap-sass', '2.3.2.0'
gem 'yaml_db'
gem 'paperclip'
gem 'will_paginate'
gem 'bootstrap-will_paginate'
gem 'sass-rails', '~> 3.2.3'
gem 'mysql2', "~> 0.3.17"
gem 'nokogiri', "~> 1.7.1"
gem 'aws-sdk', "~> 1.7.1"
gem 'test-unit'
group :test do
gem 'sqlite3'
end
group :development do
gem 'binding_of_caller'
gem 'meta_request'
gem 'rspec-rails'
end
group :production do
gem 'puma'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'coffee-rails'
gem 'closure-compiler'
gem 'bcrypt-ruby', "~> 3.0.0"
end
gem 'jquery-rails'
gem 'jquery-ui-rails', '~> 4.2.1'
gem 'jquery-datatables-rails'
gem 'jquery-cookie-rails'
gem "jquery-fileupload-rails"
gem "flot-rails"
gem 'underscore-rails'
gem 'rails-patch-json-encode'
gem 'oj'
gem 'angular_rails_csrf', '2.1.1'
gem 'rack-cors', :require => 'rack/cors'
gem 'redcarpet'
gem 'github-markup'
gem 'yard'
gem 'yard-activerecord'