Add Gemfile
This commit is contained in:
parent
080413392e
commit
2a81caf712
1 changed files with 18 additions and 0 deletions
18
Gemfile
Normal file
18
Gemfile
Normal file
|
@ -0,0 +1,18 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
source 'https://rubygems.org'
|
||||
gem 'csv'
|
||||
gem 'sequel'
|
||||
gem 'sinatra'
|
||||
gem 'slim'
|
||||
gem 'sqlite3'
|
||||
|
||||
group :development do
|
||||
gem 'better_errors'
|
||||
gem 'binding_of_caller'
|
||||
gem 'faker'
|
||||
gem 'guard'
|
||||
gem 'guard-rack'
|
||||
gem 'guard-shell'
|
||||
gem 'pry-rescue'
|
||||
end
|
Reference in a new issue