-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
30 lines (26 loc) · 739 Bytes
/
Gemfile
File metadata and controls
30 lines (26 loc) · 739 Bytes
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
source 'https://rubygems.org'
gem 'bcrypt', '~> 3.1.11'
gem 'hanami', '~> 1.1.1'
gem 'i18n', '~> 1.0.0'
gem 'libertree-model', git: 'git://github.com/Libertree/libertree-model-rb.git', branch: 'hanami'
# gem 'libertree-model', path: '../libertree-model-rb'
gem 'nokogiri', '~> 1.8.2'
gem 'pg', '~> 1.0.0'
gem 'rake', '~> 12.3.0'
gem 'sass', '~> 3.5.5'
gem 'thin', '~> 1.7.2'
group :development do
# Code reloading
# See: http://hanamirb.org/guides/projects/code-reloading
gem 'shotgun', '~> 0.9.2'
end
group :test, :development do
gem 'dotenv', '~> 2.0'
gem 'pry', '~> 0.11.3'
end
group :test do
gem 'capybara', '~> 2.18.0'
gem 'database_cleaner', '~> 1.6.2'
gem 'factory_bot', '~> 4.8.2'
gem 'rspec', '~> 3.7.0'
end