-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
81 lines (71 loc) · 1.91 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
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 'coffee-rails'
gem 'jbuilder'
gem 'jquery-rails'
gem 'pg'
gem 'puma'
gem 'rails'
gem 'rake'
gem 'sass-rails'
gem 'therubyracer', platforms: :ruby
gem 'turbolinks'
gem 'uglifier'
# Flexible authentication solution for Rails with Warden
gem 'devise'
# Strategy to authenticate with Google via OAuth2 in OmniAuth.
gem 'omniauth-google-oauth2'
# GitHub strategy for OmniAuth
gem 'omniauth-github'
# Easiest way to add multi-environment yaml settings
gem 'config'
# brings convention over configuration to your JSON generation
gem 'active_model_serializers'
# provides Haml generators for Rails
gem 'haml-rails'
# Bootstrap 4 Ruby Gem for Rails / Sprockets and Compass
gem 'bootstrap'
# A pure ruby implementation of
# the RFC 7519 OAuth JSON Web Token (JWT) standard
gem 'jwt'
group :development, :test do
gem 'byebug', platforms: %w[mri mingw x64_mingw]
gem 'database_cleaner'
gem 'letter_opener'
# A library for setting up Ruby objects as test data
gem 'factory_bot_rails'
# A library for generating fake data
gem 'faker'
gem 'pry'
# A Ruby static code analyzer
gem 'rubocop', require: false
end
group :development do
# Annotate Rails classes with schema and routes info
gem 'annotate'
gem 'listen'
gem 'spring'
gem 'spring-watcher-listen'
gem 'web-console'
# guard
gem 'guard'
gem 'guard-rspec', require: false
gem 'guard-rubocop', require: false
end
group :test do
gem 'capybara'
gem 'rspec-rails'
# The RSpec testing framework with Rails integrations
gem 'rspec-its'
gem 'selenium-webdriver'
# Rspec cops for rubocop
gem 'rubocop-rspec'
gem 'shoulda-matchers'
# Code coverage for Ruby
gem 'simplecov', require: false
# Validate the JSON returned by your Rails JSON APIs
gem 'json_matchers'
end