summaryrefslogtreecommitdiffstats
path: root/Gemfile
blob: e1f873ceb6f470f5bcdbcfa8b39a52d957d0e997 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
source "https://rubygems.org"

gem "sinatra"
gem "sinatra-url-for"
gem "sinatra-config-file"
gem "asciidoctor"
gem "mail"
gem "prawn"
gem "puma"

group :development, :test do
  gem 'byebug'
  gem "rspec"
  gem "rspec-html-matchers"
  gem "rack-test"
  gem "capybara"
  gem "selenium-webdriver"
  gem "mailcatcher"
end

group :development do
  gem "capistrano"
  gem "capistrano-bundler"
end