-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathGemfile
50 lines (39 loc) · 1.38 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
source "https://rubygems.org"
# Sinatra is a minimal framework for building Ruby web applications
# <https://github.com/sinatra/sinatra>
gem "sinatra"
# DataMapper library for interacting with a SQL database
# <http://datamapper.org/>
gem "data_mapper"
# Ruby library for implementing the bcrypt key derivation function. Used for
# securely implementing passwords.
# <https://github.com/codahale/bcrypt-ruby>
gem "bcrypt"
# CarrierWave library handling file uploads
# <https://github.com/carrierwaveuploader/carrierwave>
gem "carrierwave"
# DataMapper support for CarrierWave
# <https://github.com/carrierwaveuploader/carrierwave-datamapper>
gem "carrierwave-datamapper"
# MiniMagick library for image manipulation (resizing, cropping, etc.)
# <https://github.com/minimagick/minimagick>
gem "mini_magick"
group :development do
# We use SQLite3 on our local machines
gem "sqlite3"
gem "dm-sqlite-adapter"
# Dotenv library for managing application-specific environmental variables
# <https://github.com/bkeepers/dotenv>
gem "dotenv"
# Rerun will restart your application automatically when a file changes.
# <https://github.com/alexch/rerun>
gem "rerun"
end
group :production do
# PostgreSQL library for Ruby
# <https://bitbucket.org/ged/ruby-pg>
gem "pg"
# DataMapper support for PostgreSQL
# <https://github.com/datamapper/dm-postgres-adapter>
gem "dm-postgres-adapter"
end