forked from tyabe/kaja-nomination
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
56 lines (46 loc) · 1.06 KB
/
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
51
52
53
54
55
56
source :rubygems
ruby '1.9.3'
# Server requirements
gem 'thin' # or mongrel
# gem 'trinidad', :platform => 'jruby'
# Project requirements
gem 'rake'
gem 'sinatra-flash', :require => 'sinatra/flash'
gem 'omniauth-github', :git => 'git://github.com/intridea/omniauth-github.git'
gem 'omniauth-twitter'
gem 'omniauth-facebook'
gem 'settingslogic'
gem 'octokit'
gem 'twitter'
# Component requirements
gem 'bcrypt-ruby', :require => "bcrypt"
gem 'compass'
gem 'erubis', "~> 2.7.0"
gem 'mini_record'
# Padrino Stable Gem
gem 'padrino', '0.10.7'
gem 'padrino-contrib'
group :production do
gem 'pg'
gem 'dalli'
gem 'yui-compressor', :require => 'yui/compressor'
end
group :development do
gem 'sqlite3'
gem 'pry-padrino'
end
group :test do
gem 'rspec'
gem 'rack-test'
gem 'rspec-padrino'
gem 'capybara'
gem 'launchy'
gem 'faker'
gem 'fabrication'
end
# 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