forked from Coursemology/coursemology.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
109 lines (93 loc) · 2.43 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
source 'https://rubygems.org'
gem 'rails', '3.2.14'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
group :development do
gem "pry"
gem 'meta_request'
gem "better_errors"
gem "spring"
end
group :production do
gem 'puma', "~> 2.6.0"
gem 'exception_notification'
gem 'dalli'
gem 'connection_pool'
end
gem "rspec-rails", :group => [:test, :development]
gem "guard-rspec", :group => [:test, :development]
gem 'spork-rails', :group => [:test, :development]
gem "guard-spork", :group => [:test, :development]
group :test do
gem "factory_girl_rails"
gem "capybara"
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'bootstrap-sass', '2.1.0.0'
gem 'font-awesome-sass-rails'
gem 'bootstrap-datetimepicker-rails'
gem 'bootstrap-wysihtml5-rails'
gem 'jquery-fileupload-rails'
gem 'bootstrap-colorpicker-rails'
gem 'bootstrap-select-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
gem 'coffee-rails'
end
#gem 'pg'
gem 'mysql2'
gem 'uglifier', '>= 1.0.3'
gem 'jquery-rails', '2.1.3'
gem 'jqtree-rails'
gem 'jquery-tmpl-rails'
gem 'devise', '3.0'
gem 'cancancan', '~> 1.8'
gem 'paperclip', '~>3.0'
gem 'faker'
gem 'acts_as_paranoid', '~>0.4.0'
gem 'yaml_db'
gem 'rubyzip', '~> 0.9.9'
gem 'delayed_job_active_record'
gem 'daemons'
gem 'google_visualr', '>= 2.1'
gem 'omniauth'
gem 'omniauth-facebook'
gem "koala"
gem 'kaminari'
gem 'best_in_place'
gem "codemirror-rails", "~> 3.14"
gem 'htmlentities'
gem 'aws-sdk', '1.28.0'
gem 'sanitize'
gem 'acts_as_votable', '~> 0.7.1'
gem 'gon'
gem 'momentjs-rails'
gem 'truncate_html'
gem 'natcmp'
gem 'scrollToFixed_rails', '~> 1.0.0'
gem 'slugged', '~> 2.0'
gem 'clockwork'
gem 'angularjs-rails'
gem 'angular-ui-sortable-rails'
gem 'jquery-validation-rails'
gem "cocoon"
gem 'simple_form', :github => 'plataformatec/simple_form', :branch => "v2.2"
gem 'acts_as_relation', :github => 'raymondtangsc/acts_as_relation', :branch => 'V1.0'
gem 'amoeba', :github => 'raymondtangsc/amoeba'
gem "haml"
gem "axlsx"
gem "nokogiri"
gem "newrelic_rpm"
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
#Deploy with Capistrano
gem 'capistrano'
# To use debugger
# gem 'debugger'