Created app chat
Showing
| ... | @@ -27,6 +27,10 @@ gem 'jbuilder', '~> 2.7' | ... | @@ -27,6 +27,10 @@ gem 'jbuilder', '~> 2.7' |
| # Reduces boot times through caching; required in config/boot.rb | # Reduces boot times through caching; required in config/boot.rb | ||
| gem 'bootsnap', '>= 1.4.4', require: false | gem 'bootsnap', '>= 1.4.4', require: false | ||
| gem 'redis' | |||
| gem 'slim-rails', '~> 3.3' | |||
| gem 'pry', '~> 0.14.1' | |||
| gem 'pry-rails', '~> 0.3.9' | |||
| group :development, :test do | group :development, :test do | ||
| # Call 'byebug' anywhere in the code to stop execution and get a debugger console | # Call 'byebug' anywhere in the code to stop execution and get a debugger console | ||
| ... | ... |
app/assets/stylesheets/messages.scss
0 → 100644
app/assets/stylesheets/rooms.scss
0 → 100644
app/channels/room_channel.rb
0 → 100644
app/controllers/messages_controller.rb
0 → 100644
app/controllers/rooms_controller.rb
0 → 100644
app/helpers/messages_helper.rb
0 → 100644
app/helpers/rooms_helper.rb
0 → 100644
app/javascript/channels/room_channel.js
0 → 100644
app/javascript/stylesheets/application.scss
0 → 100644
app/jobs/send_message_job.rb
0 → 100644
app/models/message.rb
0 → 100644
app/models/room.rb
0 → 100644
app/models/user.rb
0 → 100644
app/views/messages/_form.html.slim
0 → 100644
app/views/messages/_message.html.slim
0 → 100644
app/views/messages/_message.json.jbuilder
0 → 100644
app/views/messages/_mine.html.slim
0 → 100644
app/views/messages/_theirs.html.slim
0 → 100644
app/views/messages/edit.html.slim
0 → 100644
app/views/messages/index.html.slim
0 → 100644
app/views/messages/index.json.jbuilder
0 → 100644
app/views/messages/new.html.slim
0 → 100644
app/views/messages/show.html.slim
0 → 100644
app/views/messages/show.json.jbuilder
0 → 100644
app/views/rooms/_form.html.slim
0 → 100644
app/views/rooms/_room.json.jbuilder
0 → 100644
app/views/rooms/edit.html.slim
0 → 100644
app/views/rooms/index.html.slim
0 → 100644
app/views/rooms/index.json.jbuilder
0 → 100644
app/views/rooms/new.html.slim
0 → 100644
app/views/rooms/show.html.slim
0 → 100644
app/views/rooms/show.json.jbuilder
0 → 100644
db/migrate/20211109030135_create_rooms.rb
0 → 100644
db/migrate/20211109030220_create_users.rb
0 → 100644
db/migrate/20211109030317_create_messages.rb
0 → 100644
db/schema.rb
0 → 100644
test/channels/room_channel_test.rb
0 → 100644
test/controllers/messages_controller_test.rb
0 → 100644
test/controllers/rooms_controller_test.rb
0 → 100644
test/fixtures/messages.yml
0 → 100644
test/fixtures/rooms.yml
0 → 100644
test/fixtures/users.yml
0 → 100644
test/jobs/send_message_job_test.rb
0 → 100644
test/models/message_test.rb
0 → 100644
test/models/room_test.rb
0 → 100644
test/models/user_test.rb
0 → 100644
test/system/messages_test.rb
0 → 100644
test/system/rooms_test.rb
0 → 100644
Please
register
or
sign in
to comment