-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
45 lines (35 loc) · 877 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
source 'https://rubygems.org'
ruby '2.1.1'
gem 'rails', '4.0.3'
gem 'unicorn'
gem 'pg'
gem 'sass-rails', '~> 4.0.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'uglifier' # compressor for JavaScript assets
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
gem 'jquery-rails'
gem 'ember-rails'
gem 'ember-auth-rails'
gem 'jbuilder'
# Use ActiveModel has_secure_password
gem 'bcrypt-ruby', '~> 3.1.5'
gem 'active_model_serializers'
# gem 'devise'
# gem 'twitter'
# gem 'highcharts-rails'
group :development do
gem 'rack-mini-profiler'
end
group :development, :test do
gem 'rspec-rails'
gem 'mocha', require: 'mocha/api'
gem 'shoulda-matchers'
gem 'factory_girl_rails'
gem 'json_spec'
gem 'qunit-rails'
end
group :production do
gem 'rails_12factor' # Heroku requirement
gem 'newrelic_rpm'
end