-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
50 lines (37 loc) · 923 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
44
45
46
47
48
49
50
source 'https://rubygems.org'
ruby '1.9.3'
# Server requirements
# gem 'thin' # or mongrel
# gem 'trinidad', :platform => 'jruby'
# Project requirements
gem 'rake'
gem 'sinatra-flash', :require => 'sinatra/flash'
# Component requirements
gem 'bcrypt-ruby', :require => "bcrypt"
gem 'sass'
gem 'erubis', "~> 2.7.0"
gem 'activerecord', :require => "active_record"
group :development do
gem 'sqlite3'
end
# Test requirements
# Padrino Stable Gem
gem 'padrino', '0.10.7'
gem 'padrino-assets'
group :production do
gem 'uglifier'
gem 'therubyracer'
gem 'rack-google-analytics'
gem 'pg'
gem 'newrelic_rpm'
end
gem 'will_paginate'
gem 'rmagick'
gem 'carrierwave', :require => 'carrierwave'
gem 'fog'
# 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