This repository has been archived by the owner on Apr 10, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
97 lines (85 loc) · 2.6 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
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
93
94
95
96
97
source 'https://rubygems.org'
gem 'rails', '~> 5.0'
# =================================
# Nokogiri
# =================================
gem 'nokogiri', '~> 1.6.0'
# =================================
# Database and ActiveRecord plugins
# =================================
gem 'pg', '~> 0.18'
gem 'ransack', '~> 1.8'
gem 'scenic', '~> 1.3'
# =================================
# Authentication and Authorization
# =================================
gem 'devise', '~> 4.2'
gem 'pundit', '~> 1.1'
gem 'omniauth-facebook', '~> 4.0'
gem 'omniauth-linkedin-oauth2', git: 'https://github.com/decioferreira/omniauth-linkedin-oauth2.git'
gem 'omniauth-google-oauth2', '~> 0.4'
# =================================
# Content
# =================================
gem 'high_voltage', '~> 3.0'
gem 'rails-i18n', '~> 5.0'
gem 'kramdown', '~> 1.13'
gem 'devise-i18n', '~> 1.1'
gem 'paperclip', '~> 5.1'
# =================================
# Webserver
# =================================
gem 'puma', '~> 3.7'
# =================================
# Forms and Views
# =================================
gem 'nested_form', '~> 0.3'
# =================================
# Assets
# =================================
gem 'uglifier', '>= 1.3.0'
gem 'jquery-rails'
gem 'sass-rails', '~> 5.0'
gem 'autoprefixer-rails', '~> 6.7'
source 'https://rails-assets.org' do
gem 'rails-assets-bulma', '~> 0.2'
gem 'rails-assets-chosen', '~> 1.6'
gem 'rails-assets-typedjs', '~> 1.1'
gem 'rails-assets-chartist', '~> 0.10'
gem 'rails-assets-fontawesome', '~> 4.7'
gem 'rails-assets-markdown-it', '~> 8.1'
gem 'rails-assets-scrollreveal', '~> 3.3'
gem 'rails-assets-inline-attachment', '~> 2.0'
end
# =================================
# ⚡️ M A D M A T H S T U F F ⚡️
# =================================
gem 'metrorb', git: 'https://github.com/oesgalha/metrorb.git'
# =================================
# Production Services
# =================================
gem 'skylight', '~> 1.0'
gem 'fog-azure-rm', '~> 0.3'
# =================================
# Development tools
# =================================
group :development do
gem 'pry', '~> 0.10'
gem 'listen', '~> 3.1'
gem 'spring', '~> 1.7'
gem 'annotate', '~> 2.7'
gem 'rack-mini-profiler', '~> 0.10', require: false
end
# =================================
# Testing libs
# =================================
group :test do
gem 'laranja', '~> 2.0'
gem 'capybara', '~> 2.9'
gem 'fog-local', '~> 0.3'
gem 'simplecov', '~> 0.13'
gem 'poltergeist', '~> 1.12'
gem 'factory_girl_rails', '~> 4.8'
gem 'transactional_capybara', '~> 0.1'
gem 'codeclimate-test-reporter', '~> 1.0', require: nil
end