forked from boulder-food-rescue/food-rescue-robot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
executable file
·91 lines (74 loc) · 2.14 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
source 'https://rubygems.org'
ruby '2.6.9'
# the base rails libraries
gem 'pg', '~> 0.18.4'
gem 'rails', '~> 3.2.16'
gem 'rails_12factor'
gem 'thin'
# for handling json objects with ruby
gem 'json'
gem 'bootstrap-sass', '~> 3.2.0.4'
gem 'coffee-rails', '~> 3.2.1'
gem 'font-awesome-sass', '~> 4.4.0'
gem 'jquery-rails', '2.1.4'
gem 'sass-rails', '~> 3.2.6'
gem 'simple_form'
gem 'therubyracer', platforms: :ruby
gem 'twitter-bootstrap-rails'
gem 'uglifier', '>= 1.0.3'
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'faker', '~> 1.7.3'
gem 'rubocop', require: false
gem 'rb-fsevent', '~> 0.9.0', require: false # latest 0.10.x seems to be incompatible with listen gem
gem 'guard-rspec', require: false
end
group :development, :test do
gem 'awesome_print'
gem 'dotenv-rails'
gem 'pry-byebug'
gem 'pry-rails'
gem 'pry-remote'
gem 'pry-rescue'
# gem 'sqlite3' # REMOVE THIS WHEN POSSIBLE
end
group :test do
gem 'capybara'
gem 'capybara-screenshot'
gem 'factory_girl_rails'
gem 'poltergeist', '~> 1.12'
gem 'rack-test'
gem 'rspec-rails', '~> 3.5'
end
# Temporary fix: https://stackoverflow.com/questions/13828889/rails-3-heroku-cannot-load-such-file-test-unit-testcase-loaderror
# Remove after upgrade of Rails from 3.2 is complete.
gem 'test-unit', '~> 3.0'
# dynamic in-place editing for some admin tables
gem 'active_scaffold'
# handles authentication
gem 'devise', '~> 3.2.0'
# lets us post things to twitter programatically
gem 'twitter'
gem 'yaml_db'
# generate pdfs
gem 'prawn', '~> 2.1.0'
gem 'prawn-table', '~> 0.2.2'
# used to geo-locate locations
gem 'addressable'
gem 'geocoder'
gem 'gmaps4rails', '1.5.6'
# lets us render charts in-browser
gem 'highcharts-rails', '~> 3.0.0'
# gives us pretty data tables
gem 'jquery-datatables-rails', git: 'https://github.com/rweng/jquery-datatables-rails.git'
# nested selecitons of volunteers on schedules
gem 'cocoon'
# set timezone to browser timezone
gem 'browser-timezone-rails'#, '~> 0.0.9'
gem 'ranked-model'
#Send email when exception occurs.
gem 'exception_notification', '~> 3.0.1'
gem 'exception_notification-rake', '~> 0.0.6'
gem 'cancancan'
gem 'interactor'