forked from WilsonKinyua/ruby-sinatra-application-structure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
49 lines (36 loc) · 1.18 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
source "https://rubygems.org"
# A DSL for quickly creating web applications
# https://github.com/sinatra/sinatra
gem "sinatra", "~> 2.1"
# An object-relational mapper
# https://guides.rubyonrails.org/active_record_basics.html
gem "activerecord", "~> 6.1"
# Configures common Rake tasks for working with Active Record
# https://github.com/sinatra-activerecord/sinatra-activerecord
gem "sinatra-activerecord"
gem "rack-contrib", "~> 2.3"
# Run common tasks from the command line
# https://github.com/ruby/rake
gem "rake"
# Provides functionality to interact with a SQLite3 database
# https://github.com/sparklemotion/sqlite3-ruby
gem "sqlite3", "~> 1.4"
# Require all files in a folder
# https://github.com/jarmo/require_all
gem "require_all"
# These gems will only be used when we are running the application locally
group :development do
# Used to generate seed data
# https://github.com/faker-ruby/faker
gem "faker", "~> 2.18"
# Auto-reload the server when files are changed
# https://github.com/alexch/rerun
gem "rerun"
gem "pry"
end
# These gems will only be used when we are running tests
group :test do
gem "database_cleaner"
gem "rspec"
gem "rack-test", "~> 1.1"
end