forked from keeganquinn/cwnmyr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
90 lines (82 loc) · 1.98 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
gem 'rails'
gem 'pg'
gem 'puma'
gem 'administrate'
gem 'bootsnap', require: false
gem 'devise'
gem 'dotenv-rails'
gem 'hamlit-rails'
gem 'image_processing'
gem 'jbuilder'
gem 'pundit'
gem 'redcarpet'
gem 'simple_form'
gem 'turbolinks'
gem 'turbolinks-form'
gem 'webpacker'
gem 'active_storage_validations'
gem 'administrate-field-active_storage'
gem 'ahoy_email'
gem 'ahoy_matey'
gem 'blazer'
gem 'client_side_validations'
gem 'client_side_validations-simple_form'
gem 'cocoon'
gem 'geocoder'
gem 'jenkins_api_client'
gem 'mailkick'
gem 'netaddr'
gem 'notable'
gem 'omniauth-facebook'
gem 'omniauth-google-oauth2'
gem 'omniauth-twitter'
gem 'paper_trail'
gem 'pg_query'
gem 'pghero'
gem 'premailer-rails'
gem 'rgl', require: 'rgl/adjacency'
gem 'rmagick'
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'brakeman', require: false
gem 'capistrano', require: false
gem 'capistrano-bundler', require: false
gem 'capistrano-db-tasks', require: false
gem 'capistrano-foreman', require: false
gem 'capistrano-rails', require: false
gem 'capistrano-rbenv', require: false
gem 'guard-rspec', require: false
gem 'haml_lint', require: false
gem 'html2haml', require: false
gem 'listen'
gem 'spring'
gem 'spring-commands-rspec'
gem 'spring-watcher-listen'
gem 'web-console'
gem 'yard'
end
group :development, :test do
gem 'byebug', platform: :mri
gem 'factory_bot_rails'
gem 'faker'
gem 'rspec-rails'
gem 'rspec_junit_formatter', require: false
gem 'rubocop-checkstyle_formatter', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rspec', require: false
end
group :test do
gem 'capybara'
gem 'launchy'
gem 'rails-controller-testing'
gem 'shoulda-matchers'
gem 'simplecov-rcov', require: false
gem 'webdrivers'
end