Skip to content

Commit 5d70079

Browse files
committed
Initialse project with custom spec gems, debugging gems, rspec and guard configurations
0 parents  commit 5d70079

File tree

96 files changed

+9423
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+9423
-0
lines changed

.browserslistrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
defaults

.gitignore

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile '~/.gitignore_global'
6+
7+
# Ignore bundler config.
8+
/.bundle
9+
10+
# Ignore all logfiles and tempfiles.
11+
/log/*
12+
/tmp/*
13+
!/log/.keep
14+
!/tmp/.keep
15+
16+
# Ignore uploaded files in development.
17+
/storage/*
18+
!/storage/.keep
19+
20+
/public/assets
21+
.byebug_history
22+
23+
# Ignore master key for decrypting credentials and more.
24+
/config/master.key
25+
26+
/public/packs
27+
/public/packs-test
28+
/node_modules
29+
/yarn-error.log
30+
yarn-debug.log*
31+
.yarn-integrity

.rspec

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
--require spec_helper
2+
--format documentation
3+
--color

.ruby-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.6.3

Gemfile

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
source 'https://rubygems.org'
2+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3+
4+
ruby '2.6.3'
5+
6+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
7+
gem 'rails', '~> 6.0.2', '>= 6.0.2.1'
8+
# Use postgresql as the database for Active Record
9+
gem 'pg', '>= 0.18', '< 2.0'
10+
# Use Puma as the app server
11+
gem 'puma', '~> 4.1'
12+
# Use SCSS for stylesheets
13+
gem 'sass-rails', '>= 6'
14+
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
15+
gem 'webpacker', '~> 4.0'
16+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
17+
gem 'turbolinks', '~> 5'
18+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
19+
gem 'jbuilder', '~> 2.7'
20+
# Use Redis adapter to run Action Cable in production
21+
# gem 'redis', '~> 4.0'
22+
# Use Active Model has_secure_password
23+
gem 'bcrypt', '~> 3.1.7'
24+
25+
# Use Active Storage variant
26+
# gem 'image_processing', '~> 1.2'
27+
28+
# Reduces boot times through caching; required in config/boot.rb
29+
gem 'bootsnap', '>= 1.4.2', require: false
30+
31+
group :development, :test do
32+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
33+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
34+
gem 'rspec-rails'
35+
gem 'factory_bot_rails'
36+
end
37+
38+
group :development do
39+
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
40+
gem 'web-console', '>= 3.3.0'
41+
gem 'listen', '>= 3.0.5', '< 3.2'
42+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
43+
gem 'spring'
44+
gem 'spring-commands-rspec'
45+
gem 'spring-watcher-listen', '~> 2.0.0'
46+
47+
#helpful debugging gems
48+
gem 'better_errors'
49+
gem 'binding_of_caller'
50+
gem 'pry-rails'
51+
# recommended test-suite gems
52+
gem 'faker'
53+
gem 'guard-rspec'
54+
gem 'launchy'
55+
end
56+
57+
group :test do
58+
# Adds support for Capybara system testing and selenium driver
59+
gem 'capybara', '>= 2.15'
60+
gem 'selenium-webdriver'
61+
# Easy installation and use of web drivers to run system tests with browsers
62+
gem 'webdrivers'
63+
end
64+
65+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
66+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

0 commit comments

Comments
 (0)