-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
41 lines (33 loc) · 969 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
source :rubygems
# Server requirements (defaults to WEBrick)
# gem 'thin'
# gem 'mongrel'
# Project requirements
gem 'rake'
gem 'sinatra-flash', :require => 'sinatra/flash'
# Component requirements
gem 'haml'
gem 'mongoid'
gem 'bson_ext', :require => "mongo"
gem "compass", "0.12.2.rc.0"
gem "susy", "1.0.rc.0"
gem "sassy-buttons"
gem "unicorn"
gem "dalli"
# Sprockets on Heroku support
gem 'sprockets', "2.3.0"
gem 'sprockets-sass'
gem 'sass-on-heroku'
gem 'padrino-sprockets', :require => 'padrino/sprockets', :git => "git://github.com/stefl/padrino-sprockets.git", :branch => "master" #:path => "/repos/padrino-sprockets"
gem 'execjs'
gem 'therubyracer', :platforms => :ruby
gem 'jsmin'
# Test requirements
# Padrino Stable Gem
gem 'padrino', '0.10.5'
# 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.5'
# end