-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
42 lines (31 loc) · 769 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
source 'https://rubygems.org'
ruby '1.9.3'
gem 'rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'pygments.rb'
gem 'twitter-bootstrap-rails'
gem 'less-rails'
gem 'warden-github'
group :development do
gem 'foreman'
gem 'sqlite3'
end
gem 'coffee-rails', '~> 4.0.0'
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', :platforms => :ruby
gem 'turbolinks'
gem 'jbuilder', '~> 1.0.1'
# Use unicorn as the app server
group :production do
gem 'pg'
gem 'unicorn'
# required for static asset serving and logging on Heroku
gem 'rails_12factor', '~> 0.0.2'
end
gem 'rspec', group: [ :test, :development ]
group :test do
gem 'capybara'
gem 'rspec-rails'
end