forked from learn-chef/habitat-building-with-scaffolding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
26 lines (22 loc) · 752 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
# Here we are specifying the gems that we need to have installed for
# our application to run. This file is used by Ruby's Bundler, a
# dependency management tool.
#
# @see http://bundler.io/
#
# To install the dependencies you would run:
#
# $ bundle install
#
# We must provide a source location where to look for Ruby gems.
# This is often the default source.
source 'https://rubygems.org'
# A simple web framework and Sinatra makes it pretty easy.
# @see http://www.sinatrarb.com/
gem 'sinatra', '~> 4.0'
# Command line tool for starting and stopping application.
# @see https://github.com/rack/rackup
gem 'rackup', '~> 2.0'
# Used to manipulate images to create an animated GIF.
# @see https://rmagick.github.io/
gem 'rmagick', '~> 4.1.2'