summaryrefslogtreecommitdiffstats
path: root/Gemfile
blob: 28417ca5cc5a3ef86aa96ce4995bdc1749e1e7ef (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
source "https://rubygems.org"

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

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

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