forked from calblueprint/CRT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
84 lines (69 loc) · 1.41 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
source "https://rubygems.org"
ruby "2.3.0"
# Core gems
gem "rails", "4.2.0"
gem "thin"
gem "pg"
gem "figaro"
gem "react-rails", "~> 1.5.0"
gem 'active_model_serializers', '~> 0.9.4'
# Components
gem "cancancan"
gem "ffaker"
gem "gon"
gem "kaminari"
gem "simple_form"
gem "turbolinks"
gem "devise", "~> 3.5", ">= 3.5.6"
gem 'toastr_rails', '~> 2.1', '>= 2.1.1'
# Formula parser
gem 'dentaku'
# Excel parser
gem 'roo', '~> 2.1.0'
# Frontend
gem "autoprefixer-rails"
gem "coffee-rails"
gem "jquery-rails"
gem "jquery-ui-rails"
gem "sass-rails", "~> 4.0.3"
gem "uglifier"
gem "flutie"
gem "title"
gem 'jquery-turbolinks'
# Error logging - requires setup with service
gem "rollbar"
# puma server
gem "puma", "~> 3.0.2"
group :development do
gem "annotate"
gem "better_errors"
gem "binding_of_caller"
gem "bullet"
gem "quiet_assets"
gem "spring"
gem "spring-commands-rspec"
gem "rubocop"
gem "guard-rubocop"
gem "guard-livereload"
gem "i18n-tasks"
end
group :development, :test do
gem "awesome_print"
gem "pry-rails"
gem "pry-byebug"
gem "rspec-rails", "~> 3.1.0"
gem "factory_girl_rails", "~> 4.0"
end
group :test do
gem "shoulda-matchers", require: false
gem "database_cleaner"
gem "capybara"
gem "launchy"
gem "guard-rspec"
gem "codeclimate-test-reporter", require: nil
end
group :staging, :production do
gem "rails_12factor"
# Analytics - requires setup
gem "newrelic_rpm"
end