-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
33 lines (29 loc) · 796 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
27
28
29
30
31
32
33
source 'https://rubygems.org'
gem 'bcrypt', '~> 3.1.10'
gem 'json', '~> 1.8.3'
gem 'puma', '~> 2.15.3'
gem 'rake', '~> 10.4.2'
gem 'rack_csrf', '~> 2.5.0', :require => 'rack/csrf'
gem 'roda', '~> 2.9.0'
gem 'sequel', '~> 4.29.0'
gem 'slim', '~> 3.0.6'
gem 'rack-protection', '~> 1.5.3', :require => 'rack/protection'
group :production do
# gem 'pg', '~> 0.18.4'
end
group :documentation do
gem 'yard', '~> 0.8.7.6', :require => false
end
group :testing, :development do
gem 'better_errors', '~> 2.1.1'
gem 'binding_of_caller', '~> 0.7.2'
gem 'capybara', '~> 2.5.0'
gem 'rack-test', '~> 0.6.3', :require => 'rack/test'
gem 'rspec', '~> 3.4.0'
gem 'sass', '~> 3.4.20'
gem 'shotgun', '~> 0.9.1'
gem 'sqlite3', '~> 1.3.11'
end
group :testing do
gem 'coderay', '~> 1.1.0'
end