-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gemfile
62 lines (57 loc) · 1.2 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
source "https://rubygems.org"
ruby "2.2.2"
gem "rails", "~> 5.1.0"
gem "active_model_serializers", "~> 0.10.6"
gem "aws-sdk", "~> 2.3.0"
gem "cocoon"
gem "email_validator"
gem "flutie"
gem "high_voltage"
gem "highcharts-rails"
gem "jquery-rails"
gem "neat", "~> 1.7.0"
gem "normalize-rails"
gem "paperclip", "~> 5.2.0"
gem "paper_trail"
gem "pg"
gem "puma"
gem "pundit"
gem "rack-cors"
gem "record_tag_helper"
gem "rest-client"
gem "sass-rails"
gem "simple_form"
gem "roles_db", git: "[email protected]:MIT-IR/roles_db.git"
gem "scenic"
gem "selectize-rails", "~>0.11.0"
gem "therubyracer"
gem "title"
gem "uglifier"
gem "autoprefixer-rails"
gem "font-awesome-rails"
gem "inline_svg"
group :development do
gem "browser_sync_rails"
gem "capistrano-rails"
gem "capistrano-rvm"
gem "gssapi", git: "[email protected]:derekprior/gssapi.git"
gem "net-ssh-krb"
gem "spring"
gem "spring-commands-rspec"
gem "web-console"
end
group :test do
gem "capybara"
gem "capybara-selenium"
gem "database_cleaner"
gem "launchy"
gem "shoulda-matchers"
end
group :development, :test do
gem "awesome_print"
gem "bundler-audit", require: false
gem "byebug"
gem "factory_girl_rails"
gem "pry-rails"
gem "rspec-rails"
end