Skip to content
This repository was archived by the owner on Nov 18, 2022. It is now read-only.

Commit b819397

Browse files
committed
New Rails 6 version.
1 parent 15d5012 commit b819397

File tree

286 files changed

+4005
-7637
lines changed

Some content is hidden

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

286 files changed

+4005
-7637
lines changed

.gitignore

+13-10
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,26 @@
77
# Ignore bundler config.
88
/.bundle
99

10+
# Ignore the default SQLite database.
11+
/db/*.sqlite3
12+
/db/*.sqlite3-journal
13+
/db/*.sqlite3-*
14+
1015
# Ignore all logfiles and tempfiles.
1116
/log/*
1217
/tmp/*
1318
!/log/.keep
1419
!/tmp/.keep
1520

16-
# Ignore uploaded files in development
21+
# Ignore pidfiles, but keep the directory.
22+
/tmp/pids/*
23+
!/tmp/pids/
24+
!/tmp/pids/.keep
25+
26+
# Ignore uploaded files in development.
1727
/storage/*
1828
!/storage/.keep
1929

20-
/node_modules
21-
/yarn-error.log
22-
2330
/public/assets
2431
.byebug_history
2532

@@ -33,9 +40,5 @@
3340
yarn-debug.log*
3441
.yarn-integrity
3542

36-
/vendor
37-
/db/*.sqlite3
38-
39-
config/settings.local.yml
40-
config/settings/*.local.yml
41-
config/environments/*.local.yml
43+
# macOS
44+
.DS_Store

.ruby-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.5.3
1+
ruby-2.5.8

.tool-versions

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
ruby 2.5.3
2-
nodejs 8.16.2
2+
nodejs 12.14.0

CONTRIBUTING.md

-28
This file was deleted.

Gemfile

+16-55
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,32 @@
11
source 'https://rubygems.org'
22
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
33

4-
#ruby '2.5.3'
4+
ruby '2.5.8'
55

66
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
7-
gem 'rails', '~> 5.2.3'
7+
gem 'rails', '~> 6.0.3', '>= 6.0.3.4'
88
# Use sqlite3 as the database for Active Record
9-
gem 'sqlite3'
9+
gem 'sqlite3', '~> 1.4'
1010
# Use Puma as the app server
11-
gem 'puma', '~> 3.12'
11+
gem 'puma', '~> 4.1'
1212
# Use SCSS for stylesheets
13-
gem 'sass-rails', '~> 5.0'
14-
# Use Uglifier as compressor for JavaScript assets
15-
gem 'uglifier', '>= 1.3.0'
13+
gem 'sass-rails', '>= 6'
1614
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
17-
gem 'webpacker'
18-
# See https://github.com/rails/execjs#readme for more supported runtimes
19-
gem 'mini_racer', platforms: :ruby
20-
15+
gem 'webpacker', '~> 4.0'
2116
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
2217
gem 'turbolinks', '~> 5'
2318
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
24-
gem 'jbuilder', '~> 2.5'
19+
# gem 'jbuilder', '~> 2.7'
2520
# Use Redis adapter to run Action Cable in production
2621
# gem 'redis', '~> 4.0'
27-
# Use ActiveModel has_secure_password
28-
# gem 'bcrypt', '~> 3.1.7'
29-
30-
# Use ActiveStorage variant
31-
# gem 'mini_magick', '~> 4.8'
22+
# Use Active Model has_secure_password
23+
gem 'bcrypt', '~> 3.1.7'
3224

33-
# Use Capistrano for deployment
34-
# gem 'capistrano-rails', group: :development
25+
# Use Active Storage variant
26+
# gem 'image_processing', '~> 1.2'
3527

36-
# Reduces boot times through caching; required in config/boot.rb
37-
gem 'bootsnap', '>= 1.1.0', require: false
28+
gem 'breadcrumbs_on_rails'
29+
gem 'cancancan'
3830

3931
group :development, :test do
4032
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
@@ -44,47 +36,16 @@ end
4436
group :development do
4537
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
4638
gem 'web-console', '>= 3.3.0'
47-
gem 'listen', '>= 3.0.5', '< 3.2'
48-
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
49-
gem 'spring'
50-
gem 'spring-watcher-listen', '~> 2.0.0'
39+
gem 'listen', '~> 3.2'
5140
end
5241

5342
group :test do
5443
# Adds support for Capybara system testing and selenium driver
5544
gem 'capybara', '>= 2.15'
5645
gem 'selenium-webdriver'
57-
# Easy installation and use of chromedriver to run system tests with Chrome
58-
gem 'chromedriver-helper'
46+
# Easy installation and use of web drivers to run system tests with browsers
47+
gem 'webdrivers'
5948
end
6049

6150
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
6251
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
63-
64-
gem 'config', github: "railsconfig/config"
65-
gem 'devise'
66-
gem 'puppet'
67-
gem 'puppetdb-ruby', require: 'puppetdb'
68-
gem 'reativo'
69-
gem 'rolify'
70-
gem 'puppet-spec'
71-
# gem 'trailblazer', '2.1.rc1'
72-
# gem 'trailblazer-rails', '2'
73-
74-
group :development do
75-
gem 'annotate'
76-
gem 'guard'
77-
gem 'guard-bundler', require: false
78-
gem 'guard-rails', require: false
79-
gem 'guard-minitest', require: false
80-
gem 'guard-spring', require: false
81-
end
82-
83-
group :development, :test do
84-
gem 'pry'
85-
gem 'pry-rails'
86-
gem 'pry-doc'
87-
gem 'pry-byebug'
88-
gem 'hirb'
89-
gem 'awesome_print'
90-
end

0 commit comments

Comments
 (0)