-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGemfile
59 lines (50 loc) · 1.31 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
source 'https://rubygems.org'
ruby '2.1.4'
gem 'rails', '~> 4.1.6'
gem 'mysql2', '~> 0.3.13'
gem 'sqlite3'
# remove following to use official oauth gem
# gem 'oauth', path: '../oauth-sha256'
# gem 'lti2', path: '../LTI2-Reference'
gem 'lti2', github: 'vitalsource/LTI2-Reference'
gem 'activeadmin', github: 'gregbell/active_admin'
#Active admin dependencies
gem 'ransack'
gem 'inherited_resources'
gem 'devise'
gem 'haml-contrib'
gem 'haml-rails', '~> 0.4'
gem 'httparty', '~> 0.8.1'
gem 'jquery-rails', '~> 3.1.0'
gem 'jquery-ui-rails'
gem 'json', '~> 1.8.0'
gem 'jsonpath', '0.5.1'
gem 'lrucache'
gem 'RedCloth', '~> 4.2.9'
gem 'sass-rails', '~> 4.0.0'
gem 'yaml_db', github: 'turgu1/yaml_db'
gem 'uuid', '~> 2.3.7'
group :development do
gem 'coffee-rails', '~> 4.0.0'
gem 'uglifier', '~> 2.4.0'
gem 'execjs'
gem 'therubyracer', '~> 0.12.0'
gem 'quiet_assets'
gem 'better_errors'
gem 'binding_of_caller'
end
group :development, :test do
gem 'pry'
gem 'pry-rails'
# gem 'pry-plus'
# the following components of pry-plus now have to be listed separately
# so that pry-debugger, which uses debugger, which doesn't compile under
# ruby 2.1.2, can be replaced with pry-byebug
gem 'bond'
gem 'jist'
gem 'pry-byebug'
gem 'pry-doc'
gem 'pry-docmore'
gem 'pry-rescue'
gem 'pry-stack_explorer'
end