-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
43 lines (31 loc) · 814 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
source 'https://rubygems.org'
ruby '1.9.3'
gem 'rails', '3.2.13'
gem 'pg'
gem 'devise' # authentication
gem 'airbrake'
gem 'newrelic_rpm'
gem 'pusher'
gem 'stathat'
# better serialization of models
gem "active_model_serializers"
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails', '2.0.2'
gem 'embient', :git => 'https://github.com/stravid/embient.git'
gem 'ember-rails', '0.4.0'
group :development, :test do
# jasmine testing + coffeescript support
gem 'jasminerice'
# automatically runs tests in phantomJS
gem 'guard-jasmine', '1.2.0'
# for notifications of auto-test results
gem 'growl'
# rspec and shoulda for rails testing
gem 'rspec-rails'
gem 'shoulda-matchers'
gem 'factory_girl_rails'
end