-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
50 lines (40 loc) · 1007 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'
# Distribute your app as a gem
# gemspec
# Server requirements
# gem 'thin' # or mongrel
# gem 'trinidad', :platform => 'jruby'
# Optional JSON codec (faster performance)
# gem 'oj'
# Project requirements
gem 'rake'
# Component requirements
gem 'rack-coffee', :require => 'rack/coffee'
gem 'padrino-sprockets', :require => 'padrino/sprockets', :git => 'https://github.com/nightsailer/padrino-sprockets.git'
gem 'bcrypt'
gem 'sass'
gem 'haml'
gem 'thin'
gem 'sequel'
gem 'automatic-client'
gem 'omniauth-automatic'
gem 'omniauth'
gem 'coffee-script'
gem 'sidekiq'
gem 'activesupport'
gem 'active_model_serializers', '~> 0.8.0'
group :development do
gem "sqlite3"
end
group :production do
gem 'pg'
end
# Test requirements
# Padrino Stable Gem
gem 'padrino', '0.12.5'
# Or Padrino Edge
# gem 'padrino', :github => 'padrino/padrino-framework'
# Or Individual Gems
# %w(core support gen helpers cache mailer admin).each do |g|
# gem 'padrino-' + g, '0.12.5'
# end