-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathGemfile
More file actions
22 lines (20 loc) · 699 Bytes
/
Copy pathGemfile
File metadata and controls
22 lines (20 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Why use bundler?
# Well, not all development dependencies install on all rubies. Moreover, `gem
# install sinatra --development` doesn't work, as it will also try to install
# development dependencies of our dependencies, and those are not conflict free.
# So, here we are, `bundle install`.
#
# If you have issues with a gem: `bundle install --without-coffee-script`.
RUBY_ENGINE = 'ruby' unless defined? RUBY_ENGINE
source 'https://rubygems.org' unless ENV['QUICK']
gem 'sinatra'
gem 'rake'
gem 'rack-test', '>= 0.5.6'
group 'assets' do
gem 'guard'
gem 'guard-sass'
gem 'guard-coffeescript'
gem 'haml', '>= 3.0'
gem 'sass' if RUBY_VERSION < "2.0"
gem 'coffee-script', '>= 2.0'
end