-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGemfile
143 lines (107 loc) · 3.55 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
source 'https://rubygems.org'
ruby '2.5.3'
gem 'dotenv-rails'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.2'
# Use postgresql as the database for Active Record
gem 'pg'
gem 'pg_search'
gem 'activerecord-postgis-adapter'
# Use SCSS for stylesheets
gem 'sass-rails'#, '~> 5.0.7'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier'#, '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails'#, '~> 4.1.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'mini_racer'
gem "skylight"
# Use jquery as the JavaScript library
# gem 'jquery-rails'
# gem 'jquery-cookie-rails'
# gem 'jquery-turbolinks'
gem 'nokogiri', '~> 1.10.8'
# Handles money support, with migration / DB integration.
gem 'money-rails'#, github: "joatuapp/money-rails"
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
# gem 'turbolinks'
# bundle exec rake doc:rails generates the API under doc/api.
# gem 'sdoc', '~> 0.4.0', group: :doc
gem 'bootsnap', require: false
# Use ActiveModel has_secure_password
gem 'bcrypt', '~> 3.1.13'
gem 'paranoia'
# Mailboxer, handle messaging between users
gem 'mailboxer'#, github: 'div/mailboxer', branch: 'rails42-foreigner'
gem 'kaminari'
# Rails frontend specific gems:
gem 'simple_form'#, '~> 3.1.0'
gem 'gravatarify', '~> 3.1.1'
gem 'momentjs-rails', '>= 2.9.0'
gem 'bootstrap3-datetimepicker-rails', '~> 4.17.47'
# Use puma as the app server
gem 'puma', '~> 3.12.6'
gem 'newrelic_rpm', '~> 6.8.0'
gem 'i18n-tasks'
# gem 'rails-i18n'#, github: 'svenfuchs/rails-i18n', branch: 'master'
# gem 'inherited_resources', '~> 1.7'
gem 'activeadmin'
gem 'underscore-rails'
# Use action caching to cache the home page and alpha_signup page,
# both of which are static, to improve performance.
# gem 'actionpack-action_caching'
gem 'rgeo-geojson'
gem 'gmaps4rails'
gem 'geocoder'
gem 'country_select', '~> 4.0.0'
gem 'wisper'
gem 'render_anywhere', :require => false
gem 'redcarpet', '~> 3.5'
gem 'simple_usecase', git: 'https://github.com/sweettooth/simple_usecase.git'
gem 'naught', git: 'https://github.com/avdi/naught.git'
gem 'contracts' # https://github.com/egonSchiele/contracts.ruby
group :development do
gem "better_errors"
gem "binding_of_caller"
end
group :development, :test do
# gem "codeclimate-test-reporter"
# 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'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'factory_girl_rails', '~> 4.0'
gem 'faker'
gem 'rspec'
gem 'rspec-rails'
gem 'shoulda-callback-matchers'
gem 'shoulda-matchers'
gem 'capybara'
gem 'database_cleaner'
gem 'spring-commands-rspec'
gem 'pry-rails'
gem 'listen'
end
group :test do
gem 'coveralls'
gem 'simplecov', require: false
gem 'capybara-screenshot'
end
# Protects mail from going out to the real world in all environments for which
# this gem is installed:
gem 'foreman', '~> 0.75'
gem 'record_tag_helper', '~> 1.0'
gem 'bootstrap-sass', '>= 3.4.1'
gem 'autoprefixer-rails'
gem "devise", '>= 4.6.0'
gem 'devise_invitable', '~> 1.7.0'
gem 'pundit', '~> 0.3.0'
gem 'reform'#, '~> 1.2.5'
gem 'reform-rails'
gem 'virtus', '~> 1.0.4'
gem 'haml-rails', '~> 1.0'
gem 'bootstrap-sass-extras'
gem "font-awesome-rails"
gem 'rails_12factor', group: :production