-
Notifications
You must be signed in to change notification settings - Fork 26
/
Gemfile
49 lines (33 loc) · 1.82 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Specify your gem's dependencies in devise-api.gemspec
gemspec
# Rake is a Make-like program implemented in Ruby [https://github.com/ruby/rake]
gem 'rake', '~> 13.0'
# Behaviour Driven Development for Ruby [https://github.com/rspec/rspec-metagem]
gem 'rspec', '~> 3.0'
# RuboCop is a Ruby code style checking and code formatting tool [https://github.com/rubocop/rubocop]
gem 'rubocop', '~> 1.21'
# Pretty print Ruby objects with proper indentation and colors [https://github.com/awesome-print/awesome_print]
gem 'awesome_print'
# Pry is a runtime developer console and IRB alternative with powerful introspection capabilities [https://github.com/pry/pry]
gem 'pry', '~> 0.14.1'
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
gem 'sprockets-rails'
# Use sqlite3 as the database for Active Record
gem 'sqlite3', '~> 1.4'
# Use the Puma web server [https://github.com/puma/puma]
gem 'puma', '~> 5.0'
# A library for setting up Ruby objects as test data [https://github.com/thoughtbot/factory_bot]
gem 'factory_bot', '~> 6.2', '>= 6.2.1'
# A library for generating fake data such as names, addresses, and phone numbers [https://github.com/faker-ruby/faker]
gem 'faker', '~> 3.1'
# Strategies for cleaning databases in Ruby. Can be used to ensure a clean state for testing [https://github.com/DatabaseCleaner/database_cleaner]
gem 'database_cleaner', '~> 2.0', '>= 2.0.1'
# RSpec for Rails 5+ [https://github.com/rspec/rspec-rails]
gem 'rspec-rails', '~> 6.0', '>= 6.0.1'
# RSpec runner and formatters [https://github.com/rspec/rspec-core]
gem 'rspec-core'
# Common code needed by the other RSpec gems. Not intended for direct use [https://github.com/rspec/rspec-support]
gem 'rspec-support'