-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathGemfile
More file actions
40 lines (28 loc) · 1.04 KB
/
Gemfile
File metadata and controls
40 lines (28 loc) · 1.04 KB
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
source 'https://rubygems.org'
ruby "2.0.0"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.0'
gem 'responders', '~> 2.0'
gem "pg", "~> 0.17.1", group: :production
gem 'sqlite3', group: :development
gem 'rails_12factor', group: :production
gem 'sass-rails', '~> 4.0.0.rc1'
gem 'uglifier', '>= 1.3.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'sdoc', group: :doc, require: false
gem "spring", "~> 1.0.0", group: :development
gem "spring-commands-rspec", "~> 1.0.1", group: :developement
gem 'debugger', group: [:development, :test]
group :development, :test do
gem "phantomjs", ">= 1.8.1.1" # this is optional if you install phantomjs manually (as of teaspoon 0.7.9)
gem "rspec-rails"
gem "factory_girl_rails", "~> 4.0"
gem "minitest"
gem 'shoulda-matchers', git: "https://github.com/thoughtbot/shoulda-matchers.git"
end
gem "paranoia", "~> 2.0.2"
gem "devise", "~> 3.4.1"
gem 'active_model_serializers', '~> 0.8.1'
gem 'redis', '~> 3.1.0'
gem "devise_token_auth", "~> 0.1.31"