-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
43 lines (36 loc) · 871 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
34
35
36
37
38
39
40
41
42
43
source 'https://rubygems.org'
gem "sinatra", "~>1.4"
gem "haml", "~>4.0"
gem "coffee-script"
gem "sass"
gem "thin", "~>1.6"
gem "tilt", "~>1.4"
gem "sinatra-contrib"
#gem "bootstrap-sass"
# Search
gem 'elasticsearch'
gem 'hashie'
# Background Jobs
gem 'backburner'
# Custom Gems
gem 'date_time_precision', :git => 'https://github.com/Spokeo/date_time_precision'
gem 'museum_provenance', :path => "../museum_provenance"
group :documentation do
gem 'rack-jekyll', :git => 'https://github.com/adaoraul/rack-jekyll.git'
end
group :development do
gem 'guard', '2.7.3'
gem 'guard-sass'
gem 'guard-livereload'
gem "rack-livereload"
gem 'guard-bundler', '2.0.0', require: false
gem 'guard-shell'
gem 'guard-coffeescript'
gem 'minitest'
gem 'minitest-reporters'
gem 'rake'
gem 'uglifier'
gem 'guard-sprockets'
gem "rerun"
gem "rb-fsevent"
end