-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
46 lines (35 loc) · 830 Bytes
/
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
source 'https://rubygems.org'
group :production do
gem 'pg'
end
group :test do
gem 'rspec'
gem 'guard'
gem 'guard-rspec'
gem 'rack-test'
end
group :development do
# Where the magic begins
gem 'sinatra'
gem 'rake'
# Easy way to require all files required in app to DRY up require's
gem 'require_all'
# Auto reloading of the application when code changes have been made
gem 'shotgun'
# Testing Tools for Database and Business Logic
gem 'pry'
gem 'pry-remote'
gem 'tux'
gem 'byebug'
# Active Record connection
gem 'sinatra-activerecord'
# To Create Error messages for end user.
gem 'sinatra-flash'
# Gem for interacting with JIRA
# Potentially re-write internally to remove dependency
gem 'jira-ruby'
# Making Simple HTTP requests
gem 'httparty'
# Secure Environment Variables
gem 'dotenv'
end