forked from levinmr/rails-angular-devise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
51 lines (40 loc) · 1.05 KB
/
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'
# Rails Default gems:
gem 'rails', '4.1.1'
gem 'sass-rails', '~> 4.0.3'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'therubyracer', platforms: :ruby
gem 'jquery-rails'
gem 'jbuilder', '~> 2.0'
# My preferred gems:
gem 'pg'
gem 'bootstrap-sass'
# Authentication/Authorization
gem 'devise'
gem 'cancan'
# Angular stuff
gem 'angularjs-rails'
gem 'ng-rails-csrf'
gem 'angular-rails-templates'
gem 'angular-ui-bootstrap-rails'
# Testing
gem 'rspec-rails'
gem 'teaspoon'
gem 'phantomjs'
gem 'factory_girl_rails'
# Metrics --Need Istanbul node package installed for JS coverage reporting to work
gem 'simplecov'
# Documentation
gem 'yard', '=0.7.5', :require => false
gem 'redcarpet', '=2.2.2', :require => false # For Markdown
gem 'yard-rails', '=0.3.0', :require => false
# Nice stack trace if you get errors
gem 'better_errors'
gem 'binding_of_caller'
# Keep your server logs clean
gem 'quiet_assets'
gem 'webrick'
# Heroku configs --Comment these out if deploying somewhere else
ruby '2.1.1'
gem 'rails_12factor'