Skip to content

Commit 0c31e4a

Browse files
committed
initial commit
0 parents  commit 0c31e4a

File tree

137 files changed

+10473
-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.

137 files changed

+10473
-0
lines changed

.browserslistrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
defaults

.gitignore

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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 the default SQLite database.
11+
/db/*.sqlite3
12+
/db/*.sqlite3-journal
13+
/db/*.sqlite3-*
14+
15+
# Ignore all logfiles and tempfiles.
16+
/log/*
17+
/tmp/*
18+
!/log/.keep
19+
!/tmp/.keep
20+
21+
# Ignore pidfiles, but keep the directory.
22+
/tmp/pids/*
23+
!/tmp/pids/
24+
!/tmp/pids/.keep
25+
26+
# Ignore uploaded files in development.
27+
/storage/*
28+
!/storage/.keep
29+
30+
/public/assets
31+
.byebug_history
32+
33+
# Ignore master key for decrypting credentials and more.
34+
/config/master.key
35+
36+
/public/packs
37+
/public/packs-test
38+
/node_modules
39+
/yarn-error.log
40+
yarn-debug.log*
41+
.yarn-integrity

.ruby-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ruby-2.6.6

Gemfile

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
source 'https://rubygems.org'
2+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3+
4+
ruby '2.6.6'
5+
6+
gem 'rails', '~> 6.0.3', '>= 6.0.3.3'
7+
gem 'sqlite3', '~> 1.4'
8+
gem 'puma', '~> 4.1'
9+
gem 'sass-rails', '>= 6'
10+
gem 'webpacker', '~> 4.0'
11+
gem 'turbolinks', '~> 5'
12+
gem 'jbuilder', '~> 2.7'
13+
gem 'bootsnap', '>= 1.4.2', require: false
14+
gem 'devise', '~> 4.7', '>= 4.7.3'
15+
16+
group :development, :test do
17+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
18+
end
19+
20+
group :development do
21+
gem 'web-console', '>= 3.3.0'
22+
end
23+
24+
group :test do
25+
gem 'capybara', '>= 2.15'
26+
gem 'selenium-webdriver'
27+
gem 'webdrivers'
28+
end
29+
30+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

Gemfile.lock

+226
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,226 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actioncable (6.0.3.3)
5+
actionpack (= 6.0.3.3)
6+
nio4r (~> 2.0)
7+
websocket-driver (>= 0.6.1)
8+
actionmailbox (6.0.3.3)
9+
actionpack (= 6.0.3.3)
10+
activejob (= 6.0.3.3)
11+
activerecord (= 6.0.3.3)
12+
activestorage (= 6.0.3.3)
13+
activesupport (= 6.0.3.3)
14+
mail (>= 2.7.1)
15+
actionmailer (6.0.3.3)
16+
actionpack (= 6.0.3.3)
17+
actionview (= 6.0.3.3)
18+
activejob (= 6.0.3.3)
19+
mail (~> 2.5, >= 2.5.4)
20+
rails-dom-testing (~> 2.0)
21+
actionpack (6.0.3.3)
22+
actionview (= 6.0.3.3)
23+
activesupport (= 6.0.3.3)
24+
rack (~> 2.0, >= 2.0.8)
25+
rack-test (>= 0.6.3)
26+
rails-dom-testing (~> 2.0)
27+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
28+
actiontext (6.0.3.3)
29+
actionpack (= 6.0.3.3)
30+
activerecord (= 6.0.3.3)
31+
activestorage (= 6.0.3.3)
32+
activesupport (= 6.0.3.3)
33+
nokogiri (>= 1.8.5)
34+
actionview (6.0.3.3)
35+
activesupport (= 6.0.3.3)
36+
builder (~> 3.1)
37+
erubi (~> 1.4)
38+
rails-dom-testing (~> 2.0)
39+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
40+
activejob (6.0.3.3)
41+
activesupport (= 6.0.3.3)
42+
globalid (>= 0.3.6)
43+
activemodel (6.0.3.3)
44+
activesupport (= 6.0.3.3)
45+
activerecord (6.0.3.3)
46+
activemodel (= 6.0.3.3)
47+
activesupport (= 6.0.3.3)
48+
activestorage (6.0.3.3)
49+
actionpack (= 6.0.3.3)
50+
activejob (= 6.0.3.3)
51+
activerecord (= 6.0.3.3)
52+
marcel (~> 0.3.1)
53+
activesupport (6.0.3.3)
54+
concurrent-ruby (~> 1.0, >= 1.0.2)
55+
i18n (>= 0.7, < 2)
56+
minitest (~> 5.1)
57+
tzinfo (~> 1.1)
58+
zeitwerk (~> 2.2, >= 2.2.2)
59+
addressable (2.7.0)
60+
public_suffix (>= 2.0.2, < 5.0)
61+
bcrypt (3.1.16)
62+
bindex (0.8.1)
63+
bootsnap (1.4.8)
64+
msgpack (~> 1.0)
65+
builder (3.2.4)
66+
byebug (11.1.3)
67+
capybara (3.33.0)
68+
addressable
69+
mini_mime (>= 0.1.3)
70+
nokogiri (~> 1.8)
71+
rack (>= 1.6.0)
72+
rack-test (>= 0.6.3)
73+
regexp_parser (~> 1.5)
74+
xpath (~> 3.2)
75+
childprocess (3.0.0)
76+
concurrent-ruby (1.1.7)
77+
crass (1.0.6)
78+
devise (4.7.3)
79+
bcrypt (~> 3.0)
80+
orm_adapter (~> 0.1)
81+
railties (>= 4.1.0)
82+
responders
83+
warden (~> 1.2.3)
84+
erubi (1.9.0)
85+
ffi (1.13.1-x64-mingw32)
86+
globalid (0.4.2)
87+
activesupport (>= 4.2.0)
88+
i18n (1.8.5)
89+
concurrent-ruby (~> 1.0)
90+
jbuilder (2.10.0)
91+
activesupport (>= 5.0.0)
92+
loofah (2.7.0)
93+
crass (~> 1.0.2)
94+
nokogiri (>= 1.5.9)
95+
mail (2.7.1)
96+
mini_mime (>= 0.1.1)
97+
marcel (0.3.3)
98+
mimemagic (~> 0.3.2)
99+
method_source (1.0.0)
100+
mimemagic (0.3.5)
101+
mini_mime (1.0.2)
102+
mini_portile2 (2.4.0)
103+
minitest (5.14.2)
104+
msgpack (1.3.3-x64-mingw32)
105+
nio4r (2.5.3)
106+
nokogiri (1.10.10-x64-mingw32)
107+
mini_portile2 (~> 2.4.0)
108+
orm_adapter (0.5.0)
109+
public_suffix (4.0.6)
110+
puma (4.3.6)
111+
nio4r (~> 2.0)
112+
rack (2.2.3)
113+
rack-proxy (0.6.5)
114+
rack
115+
rack-test (1.1.0)
116+
rack (>= 1.0, < 3)
117+
rails (6.0.3.3)
118+
actioncable (= 6.0.3.3)
119+
actionmailbox (= 6.0.3.3)
120+
actionmailer (= 6.0.3.3)
121+
actionpack (= 6.0.3.3)
122+
actiontext (= 6.0.3.3)
123+
actionview (= 6.0.3.3)
124+
activejob (= 6.0.3.3)
125+
activemodel (= 6.0.3.3)
126+
activerecord (= 6.0.3.3)
127+
activestorage (= 6.0.3.3)
128+
activesupport (= 6.0.3.3)
129+
bundler (>= 1.3.0)
130+
railties (= 6.0.3.3)
131+
sprockets-rails (>= 2.0.0)
132+
rails-dom-testing (2.0.3)
133+
activesupport (>= 4.2.0)
134+
nokogiri (>= 1.6)
135+
rails-html-sanitizer (1.3.0)
136+
loofah (~> 2.3)
137+
railties (6.0.3.3)
138+
actionpack (= 6.0.3.3)
139+
activesupport (= 6.0.3.3)
140+
method_source
141+
rake (>= 0.8.7)
142+
thor (>= 0.20.3, < 2.0)
143+
rake (13.0.1)
144+
regexp_parser (1.7.1)
145+
responders (3.0.1)
146+
actionpack (>= 5.0)
147+
railties (>= 5.0)
148+
rubyzip (2.3.0)
149+
sass-rails (6.0.0)
150+
sassc-rails (~> 2.1, >= 2.1.1)
151+
sassc (2.4.0-x64-mingw32)
152+
ffi (~> 1.9)
153+
sassc-rails (2.1.2)
154+
railties (>= 4.0.0)
155+
sassc (>= 2.0)
156+
sprockets (> 3.0)
157+
sprockets-rails
158+
tilt
159+
selenium-webdriver (3.142.7)
160+
childprocess (>= 0.5, < 4.0)
161+
rubyzip (>= 1.2.2)
162+
sprockets (4.0.2)
163+
concurrent-ruby (~> 1.0)
164+
rack (> 1, < 3)
165+
sprockets-rails (3.2.1)
166+
actionpack (>= 4.0)
167+
activesupport (>= 4.0)
168+
sprockets (>= 3.0.0)
169+
sqlite3 (1.4.2)
170+
thor (1.0.1)
171+
thread_safe (0.3.6)
172+
tilt (2.0.10)
173+
turbolinks (5.2.1)
174+
turbolinks-source (~> 5.2)
175+
turbolinks-source (5.2.0)
176+
tzinfo (1.2.7)
177+
thread_safe (~> 0.1)
178+
tzinfo-data (1.2020.1)
179+
tzinfo (>= 1.0.0)
180+
warden (1.2.9)
181+
rack (>= 2.0.9)
182+
web-console (4.0.4)
183+
actionview (>= 6.0.0)
184+
activemodel (>= 6.0.0)
185+
bindex (>= 0.4.0)
186+
railties (>= 6.0.0)
187+
webdrivers (4.4.1)
188+
nokogiri (~> 1.6)
189+
rubyzip (>= 1.3.0)
190+
selenium-webdriver (>= 3.0, < 4.0)
191+
webpacker (4.3.0)
192+
activesupport (>= 4.2)
193+
rack-proxy (>= 0.6.1)
194+
railties (>= 4.2)
195+
websocket-driver (0.7.3)
196+
websocket-extensions (>= 0.1.0)
197+
websocket-extensions (0.1.5)
198+
xpath (3.2.0)
199+
nokogiri (~> 1.8)
200+
zeitwerk (2.4.0)
201+
202+
PLATFORMS
203+
x64-mingw32
204+
205+
DEPENDENCIES
206+
bootsnap (>= 1.4.2)
207+
byebug
208+
capybara (>= 2.15)
209+
devise (~> 4.7, >= 4.7.3)
210+
jbuilder (~> 2.7)
211+
puma (~> 4.1)
212+
rails (~> 6.0.3, >= 6.0.3.3)
213+
sass-rails (>= 6)
214+
selenium-webdriver
215+
sqlite3 (~> 1.4)
216+
turbolinks (~> 5)
217+
tzinfo-data
218+
web-console (>= 3.3.0)
219+
webdrivers
220+
webpacker (~> 4.0)
221+
222+
RUBY VERSION
223+
ruby 2.6.6p146
224+
225+
BUNDLED WITH
226+
1.17.2

README.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# README
2+
3+
This README would normally document whatever steps are necessary to get the
4+
application up and running.
5+
6+
Things you may want to cover:
7+
8+
* Ruby version
9+
10+
* System dependencies
11+
12+
* Configuration
13+
14+
* Database creation
15+
16+
* Database initialization
17+
18+
* How to run the test suite
19+
20+
* Services (job queues, cache servers, search engines, etc.)
21+
22+
* Deployment instructions
23+
24+
* ...

Rakefile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Add your own tasks in files placed in lib/tasks ending in .rake,
2+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3+
4+
require_relative 'config/application'
5+
6+
Rails.application.load_tasks

app/assets/config/manifest.js

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
//= link_tree ../images
2+
//= link_directory ../stylesheets .css

app/assets/images/.keep

Whitespace-only changes.
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/*
2+
* This is a manifest file that'll be compiled into application.css, which will include all the files
3+
* listed below.
4+
*
5+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
6+
* vendor/assets/stylesheets directory can be referenced here using a relative path.
7+
*
8+
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
9+
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10+
* files in this directory. Styles in this file should be added after the last require_* statement.
11+
* It is generally better to create a new file per style scope.
12+
*
13+
*= require_tree .
14+
*= require_self
15+
*/

app/assets/stylesheets/friends.scss

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
// Place all the styles related to the friends controller here.
2+
// They will automatically be included in application.css.
3+
// You can use Sass (SCSS) here: https://sass-lang.com/

app/assets/stylesheets/home.scss

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
// Place all the styles related to the home controller here.
2+
// They will automatically be included in application.css.
3+
// You can use Sass (SCSS) here: https://sass-lang.com/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module ApplicationCable
2+
class Channel < ActionCable::Channel::Base
3+
end
4+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module ApplicationCable
2+
class Connection < ActionCable::Connection::Base
3+
end
4+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
class ApplicationController < ActionController::Base
2+
end

app/controllers/concerns/.keep

Whitespace-only changes.

0 commit comments

Comments
 (0)