forked from southpolesteve/github-ember
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
38 lines (31 loc) · 599 Bytes
/
Gemfile
File metadata and controls
38 lines (31 loc) · 599 Bytes
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
source 'https://rubygems.org'
ruby "2.0.0"
gem 'rails', '4.0.2'
gem 'sass-rails'
gem 'uglifier'
gem 'coffee-rails'
gem 'jquery-rails'
gem 'ember-rails', github: 'emberjs/ember-rails'
gem 'momentjs-rails'
gem 'haml-rails'
gem 'pry-rails'
gem 'omniauth'
gem 'omniauth-github'
gem 'figaro'
gem 'newrelic_rpm'
gem 'sentry-raven'
gem 'ember-source', '1.3.0.beta.3'
group :production do
gem 'rails_12factor'
gem 'pg'
gem 'unicorn'
end
group :development, :test do
gem 'thin'
gem 'sqlite3'
end
group :development do
gem 'quiet_assets'
gem 'better_errors'
gem 'binding_of_caller'
end