-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
executable file
·52 lines (48 loc) · 1.13 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
# Copyright © 2017, ACM@UIUC
#
# This file is part of the Groot Project.
#
# The Groot Project is open source software, released under the University of
# Illinois/NCSA Open Source License. You should have received a copy of
# this license in a file with the distribution.
source 'https://rubygems.org'
gem 'bcrypt'
gem 'bundler'
gem 'data_mapper'
gem 'dm-core'
gem 'dm-migrations'
gem 'dm-noisy-failures', '~> 0.2.3'
gem 'dm-timestamps'
gem 'dm-validations'
gem 'foreigner'
gem 'json'
gem 'rake'
gem 'rufus-scheduler'
gem 'sinatra', '~> 1.4.7'
gem 'sinatra-contrib'
gem 'sinatra-cross_origin', '~> 0.3.1'
gem 'tzinfo-data'
group :production do
gem 'dm-mysql-adapter'
gem 'mysql'
end
group :test do
gem 'codeclimate-test-reporter', require: nil
gem 'database_cleaner'
gem 'factory_girl'
gem 'faker'
gem 'guard-rspec'
gem 'json_spec'
gem 'rack-test'
gem 'rspec'
gem 'shoulda'
gem 'webmock'
end
group :development, :test do
gem 'better_errors' # Show an awesome console in the browser on error.
gem 'pry'
gem 'pry-coolline'
gem 'rb-readline'
gem 'rest-client'
gem 'shotgun' # Auto-reload sinatra app on change.
end