forked from abuiles/facturas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
39 lines (27 loc) · 1.03 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
source 'https://rubygems.org'
ruby "2.0.0"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.1.0.beta1'
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.2.3"
gem "ember_devise_simple_auth", "~> 0.4.4"
gem 'active_model_serializers', '~> 0.8.1'
gem 'redis', '~> 3.1.0'