This repository was archived by the owner on Jul 14, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathGemfile
More file actions
90 lines (63 loc) · 1.82 KB
/
Gemfile
File metadata and controls
90 lines (63 loc) · 1.82 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
# Gems
source 'https://rubygems.org'
# Assets
ruby '2.2.0'
gem 'rails', '4.2.1'
gem 'puma'
gem 'sprockets', '~> 2.12.3' # Downgrading due to .gz assets not being generated.
gem 'rack-cors'
# Prerender partials so scrappers can get them
gem 'prerender_rails'
# Controller
gem 'responders'
gem 'has_scope'
gem 'active_model_serializers', '~> 0.8.3'
# Template
gem 'foundation-rails'
# Authentication
gem 'devise'
gem 'omniauth-facebook'
# Admin
gem 'brainsome_typus', "~> 4.0.0.beta1"
# Database
gem 'pg'
gem 'postgres_ext-serializers', "0.0.3"
group :production, :staging do
gem 'rack-zippy'
gem 'rails_12factor'
gem 'newrelic_rpm'
end
# Asset Pipeline
gem 'sass-rails'
gem 'jquery-rails'
gem 'uglifier'
gem 'angularjs-rails'
gem 'angular_rails_csrf'
gem 'font-awesome-rails'
gem 'leaflet-markercluster-rails'
source 'https://rails-assets.org' do
gem 'rails-assets-angular-devise', "1.0.2"
gem 'rails-assets-angular-loading-bar', "0.7.1"
gem 'rails-assets-angular-filter', "0.5.4"
gem 'rails-assets-angular-easyfb', "1.2.1"
gem 'rails-assets-angulartics', "0.17.2"
gem 'rails-assets-angular', "1.3.14"
# Gem to work with maps: http://leafletjs.com/
gem 'rails-assets-leaflet', "0.7.3"
gem 'rails-assets-leaflet-routing-machine', "2.3.0"
gem 'rails-assets-leaflet-routing-graphhopper', '1.0.7'
end
group :test do
gem 'poltergeist' # Node.js is required to run spec/features/ tests: https://github.com/teampoltergeist/poltergeist
gem 'database_cleaner'
gem 'shoulda-matchers', require: false
end
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'jasmine', "2.2.0"
end