Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge develop to master #119

Merged
merged 24 commits into from
Dec 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
e23b281
refactor: Modify alert style (#69)
jungissei Oct 28, 2020
66649eb
addfunc: Modify image uploader (#71)
jungissei Nov 2, 2020
e9c8f54
refactor:modify_devise_mail_message/#63 (#73)
jungissei Nov 3, 2020
d557052
Modify typographical error body email changed #74
jungissei Nov 4, 2020
0a5be2e
refactor: Modify sign up form #70 (#76)
jungissei Nov 4, 2020
54f6f6b
addfunc: Add share button #55 (#77)
jungissei Nov 5, 2020
1bf5138
Addfunc/modify to ajax/#54 (#79)
jungissei Nov 8, 2020
0a095bc
fix: Modify image uploader #72 (#80)
jungissei Nov 9, 2020
1fff191
addfunc: Add functions private post #53 (#84)
jungissei Nov 14, 2020
f749018
refactor: Refactor gem update nokogiri (#92)
jungissei Nov 17, 2020
f5dd189
refactor: Modify lodash (#93)
jungissei Nov 17, 2020
5134329
refactor: Update websocket-extensions (#94)
jungissei Nov 17, 2020
b0ee902
refactor: Update rack (#95)
jungissei Nov 17, 2020
ed79fe8
refactor: Update puma (#96)
jungissei Nov 17, 2020
2615bd3
Bump puma from 4.3.5 to 5.0.4 (#97)
dependabot-preview[bot] Nov 17, 2020
d016f8d
Bump rails from 6.0.2.1 to 6.0.3.4 (#98)
dependabot-preview[bot] Nov 17, 2020
22c03b8
Bump dotenv-rails from 2.7.5 to 2.7.6 (#99)
dependabot-preview[bot] Nov 17, 2020
81b2bfa
Bump bootsnap from 1.4.5 to 1.5.1 (#101)
dependabot-preview[bot] Nov 18, 2020
9dbfa00
Bump listen from 3.1.5 to 3.3.1 (#100)
dependabot-preview[bot] Nov 18, 2020
690d1bb
refactor: Update package and yarn
jungissei Nov 19, 2020
7f401d7
fix: Remove local SSL setting #102 (#105)
jungissei Nov 20, 2020
a025173
fix: Refactor redirect HOME page after sing-in #103 (#106)
jungissei Nov 20, 2020
417c6e1
Create pull_request_template.md
jungissei Nov 20, 2020
19e47bc
Refactor/improve template UI (#117)
jungissei Dec 8, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
close #

## 概要

- 例)トップページのメッセージ概要

## 修正内容の検証方法

- 例)アプリケーションを`rails s`コマンドを実行して、`localhost`にアクセス

## この修正が正しい理由

- 例)ローカル環境で正常に表示されることを確認済み
12 changes: 7 additions & 5 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.6.3'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.0.2', '>= 6.0.2.1'
gem 'rails', '~> 6.0.3'
# Use mysql as the database for Active Record
gem 'mysql2', '>= 0.4.4'
# Use Puma as the app server
gem 'puma', '~> 4.1'
gem 'puma', '~> 5.0'
# Use SCSS for stylesheets
gem 'sass-rails', '>= 6'
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
Expand Down Expand Up @@ -36,7 +36,7 @@ end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'listen', '>= 3.0.5', '< 3.4'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
Expand All @@ -61,8 +61,10 @@ gem 'devise-i18n'
gem 'devise-i18n-views'

gem 'carrierwave'
gem 'fog'
gem 'fog-aws'

gem 'kaminari'

gem 'rack-attack'
gem 'rack-attack'

gem 'ransack'
Loading