-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
40 lines (33 loc) · 735 Bytes
/
Gemfile
File metadata and controls
40 lines (33 loc) · 735 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
31
32
33
34
35
36
37
38
39
40
source :rubygems
# Server requirements
# gem 'thin' # or mongrel
# gem 'trinidad', :platform => 'jruby'
# Project requirements
gem 'rake'
gem 'sinatra-flash', :require => 'sinatra/flash'
# Component requirements
gem 'compass'
gem 'erubis', "~> 2.7.0"
gem 'pg'
gem 'sequel'
gem 'sassy-math'
gem 'modular-scale'
gem 'phantomjs'
gem 'screencap'
gem 'json'
gem 'uuidtools'
# Test requirements
#group :test do
gem 'rspec'
gem 'debugger'
gem 'rack-test'
gem 'simplecov'
#end
# Padrino Stable Gem
gem 'padrino', '0.10.7'
# Or Padrino Edge
# gem 'padrino', :git => 'git://github.com/padrino/padrino-framework.git'
# Or Individual Gems
# %w(core gen helpers cache mailer admin).each do |g|
# gem 'padrino-' + g, '0.10.7'
# end