-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathGemfile
More file actions
92 lines (72 loc) · 2.22 KB
/
Gemfile
File metadata and controls
92 lines (72 loc) · 2.22 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
source 'https://rubygems.org'
send :ruby, ENV['GEMFILE_RUBY_VERSION'] if ENV['GEMFILE_RUBY_VERSION']
# Configuration management. keep on top of Gemfile
gem 'dotenv-rails', groups: [:development, :test]
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.5'
gem 'rails-api'
# JSON serializer
gem 'active_model_serializers', github: 'rails-api/active_model_serializers', branch: '0-9-stable'
# Use postgresql and mongo as the database for Active Record
gem 'pg'
gem 'mongoid', '~> 5.0.0'
# Use Puma as the app server
gem 'puma'
# Authentication libraries
gem 'devise', '~> 3.5.3'
gem 'cancancan', '~> 1.10'
gem 'devise_invitable', '~> 1.5.2'
gem 'omniauth', '~> 1.3.1'
gem 'omniauth-facebook', '~> 3.0.0'
# Colored output to console
gem 'colored', '~> 1.2'
# Background jobs
gem 'sidekiq', '~> 4.0'
# Needed by Sidekiq Web UI
gem 'sinatra', :require => nil
# Structured seed data
gem 'seedbank'
# ISO 3166 standard countries
gem 'countries', require: 'countries/global'
# Pusher Client
gem 'pusher'
# ActiveRecord data translations
gem 'globalize', '~> 5.0.0'
# exception tracking
gem 'airbrake', '~> 5.0'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
gem 'database_cleaner', '~> 1.5.1'
gem 'factory_girl_rails', '~> 4.5.0'
# Generate Fake data
gem 'ffaker', '~> 2.0.0'
gem 'rspec-rails', '~> 3.3.0'
end
group :development do
gem 'annotate', '~>2.6'
gem 'awesome_print', '~>1.6'
gem 'better_errors', '~>2.1'
gem 'binding_of_caller', '~>0.7'
gem 'foreman'
gem 'letter_opener', '~>1.4'
gem 'parser', '2.3.0.pre.6'
gem 'pry-rails', '~>0.3'
gem 'pry-byebug', '~>3.3'
gem 'pry-doc', '~>0.8'
gem 'quiet_assets', '~>1.1'
gem 'rubocop', '~> 0.35.0', require: false
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end
group :test do
gem 'shoulda-matchers'
gem 'mongoid-rspec'
end
group :production do
gem 'rails_12factor'
# exception tracking
gem 'airbrake', '~> 5.0'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]