Skip to content

Commit c8f841c

Browse files
committed
add project files generated with rails new
0 parents  commit c8f841c

File tree

93 files changed

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

93 files changed

+9301
-0
lines changed

.browserslistrc

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

.gitattributes

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# See https://git-scm.com/docs/gitattributes for more about git attribute files.
2+
3+
# Mark the database schema as having been generated.
4+
db/schema.rb linguist-generated
5+
6+
# Mark the yarn lockfile as having been generated.
7+
yarn.lock linguist-generated
8+
9+
# Mark any vendored files as having been vendored.
10+
vendor/* linguist-vendored

.gitignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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 pidfiles, but keep the directory.
17+
/tmp/pids/*
18+
!/tmp/pids/
19+
!/tmp/pids/.keep
20+
21+
# Ignore uploaded files in development.
22+
/storage/*
23+
!/storage/.keep
24+
25+
/public/assets
26+
.byebug_history
27+
28+
# Ignore master key for decrypting credentials and more.
29+
/config/master.key
30+
31+
/public/packs
32+
/public/packs-test
33+
/node_modules
34+
/yarn-error.log
35+
yarn-debug.log*
36+
.yarn-integrity

.ruby-version

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

Gemfile.lock

Lines changed: 227 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,227 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actioncable (6.1.3)
5+
actionpack (= 6.1.3)
6+
activesupport (= 6.1.3)
7+
nio4r (~> 2.0)
8+
websocket-driver (>= 0.6.1)
9+
actionmailbox (6.1.3)
10+
actionpack (= 6.1.3)
11+
activejob (= 6.1.3)
12+
activerecord (= 6.1.3)
13+
activestorage (= 6.1.3)
14+
activesupport (= 6.1.3)
15+
mail (>= 2.7.1)
16+
actionmailer (6.1.3)
17+
actionpack (= 6.1.3)
18+
actionview (= 6.1.3)
19+
activejob (= 6.1.3)
20+
activesupport (= 6.1.3)
21+
mail (~> 2.5, >= 2.5.4)
22+
rails-dom-testing (~> 2.0)
23+
actionpack (6.1.3)
24+
actionview (= 6.1.3)
25+
activesupport (= 6.1.3)
26+
rack (~> 2.0, >= 2.0.9)
27+
rack-test (>= 0.6.3)
28+
rails-dom-testing (~> 2.0)
29+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
30+
actiontext (6.1.3)
31+
actionpack (= 6.1.3)
32+
activerecord (= 6.1.3)
33+
activestorage (= 6.1.3)
34+
activesupport (= 6.1.3)
35+
nokogiri (>= 1.8.5)
36+
actionview (6.1.3)
37+
activesupport (= 6.1.3)
38+
builder (~> 3.1)
39+
erubi (~> 1.4)
40+
rails-dom-testing (~> 2.0)
41+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
42+
activejob (6.1.3)
43+
activesupport (= 6.1.3)
44+
globalid (>= 0.3.6)
45+
activemodel (6.1.3)
46+
activesupport (= 6.1.3)
47+
activerecord (6.1.3)
48+
activemodel (= 6.1.3)
49+
activesupport (= 6.1.3)
50+
activestorage (6.1.3)
51+
actionpack (= 6.1.3)
52+
activejob (= 6.1.3)
53+
activerecord (= 6.1.3)
54+
activesupport (= 6.1.3)
55+
marcel (~> 0.3.1)
56+
mimemagic (~> 0.3.2)
57+
activesupport (6.1.3)
58+
concurrent-ruby (~> 1.0, >= 1.0.2)
59+
i18n (>= 1.6, < 2)
60+
minitest (>= 5.1)
61+
tzinfo (~> 2.0)
62+
zeitwerk (~> 2.3)
63+
addressable (2.7.0)
64+
public_suffix (>= 2.0.2, < 5.0)
65+
bindex (0.8.1)
66+
bootsnap (1.7.2)
67+
msgpack (~> 1.0)
68+
builder (3.2.4)
69+
byebug (11.1.3)
70+
capybara (3.35.3)
71+
addressable
72+
mini_mime (>= 0.1.3)
73+
nokogiri (~> 1.8)
74+
rack (>= 1.6.0)
75+
rack-test (>= 0.6.3)
76+
regexp_parser (>= 1.5, < 3.0)
77+
xpath (~> 3.2)
78+
childprocess (3.0.0)
79+
concurrent-ruby (1.1.8)
80+
crass (1.0.6)
81+
erubi (1.10.0)
82+
ffi (1.14.2)
83+
globalid (0.4.2)
84+
activesupport (>= 4.2.0)
85+
i18n (1.8.9)
86+
concurrent-ruby (~> 1.0)
87+
jbuilder (2.11.2)
88+
activesupport (>= 5.0.0)
89+
listen (3.4.1)
90+
rb-fsevent (~> 0.10, >= 0.10.3)
91+
rb-inotify (~> 0.9, >= 0.9.10)
92+
loofah (2.9.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+
minitest (5.14.3)
103+
msgpack (1.4.2)
104+
nio4r (2.5.5)
105+
nokogiri (1.11.1-x86_64-linux)
106+
racc (~> 1.4)
107+
pg (1.2.3)
108+
public_suffix (4.0.6)
109+
puma (5.2.1)
110+
nio4r (~> 2.0)
111+
racc (1.5.2)
112+
rack (2.2.3)
113+
rack-mini-profiler (2.3.1)
114+
rack (>= 1.2.0)
115+
rack-proxy (0.6.5)
116+
rack
117+
rack-test (1.1.0)
118+
rack (>= 1.0, < 3)
119+
rails (6.1.3)
120+
actioncable (= 6.1.3)
121+
actionmailbox (= 6.1.3)
122+
actionmailer (= 6.1.3)
123+
actionpack (= 6.1.3)
124+
actiontext (= 6.1.3)
125+
actionview (= 6.1.3)
126+
activejob (= 6.1.3)
127+
activemodel (= 6.1.3)
128+
activerecord (= 6.1.3)
129+
activestorage (= 6.1.3)
130+
activesupport (= 6.1.3)
131+
bundler (>= 1.15.0)
132+
railties (= 6.1.3)
133+
sprockets-rails (>= 2.0.0)
134+
rails-dom-testing (2.0.3)
135+
activesupport (>= 4.2.0)
136+
nokogiri (>= 1.6)
137+
rails-html-sanitizer (1.3.0)
138+
loofah (~> 2.3)
139+
railties (6.1.3)
140+
actionpack (= 6.1.3)
141+
activesupport (= 6.1.3)
142+
method_source
143+
rake (>= 0.8.7)
144+
thor (~> 1.0)
145+
rake (13.0.3)
146+
rb-fsevent (0.10.4)
147+
rb-inotify (0.10.1)
148+
ffi (~> 1.0)
149+
regexp_parser (2.0.3)
150+
rubyzip (2.3.0)
151+
sass-rails (6.0.0)
152+
sassc-rails (~> 2.1, >= 2.1.1)
153+
sassc (2.4.0)
154+
ffi (~> 1.9)
155+
sassc-rails (2.1.2)
156+
railties (>= 4.0.0)
157+
sassc (>= 2.0)
158+
sprockets (> 3.0)
159+
sprockets-rails
160+
tilt
161+
selenium-webdriver (3.142.7)
162+
childprocess (>= 0.5, < 4.0)
163+
rubyzip (>= 1.2.2)
164+
semantic_range (2.3.1)
165+
spring (2.1.1)
166+
sprockets (4.0.2)
167+
concurrent-ruby (~> 1.0)
168+
rack (> 1, < 3)
169+
sprockets-rails (3.2.2)
170+
actionpack (>= 4.0)
171+
activesupport (>= 4.0)
172+
sprockets (>= 3.0.0)
173+
thor (1.1.0)
174+
tilt (2.0.10)
175+
turbolinks (5.2.1)
176+
turbolinks-source (~> 5.2)
177+
turbolinks-source (5.2.0)
178+
tzinfo (2.0.4)
179+
concurrent-ruby (~> 1.0)
180+
web-console (4.1.0)
181+
actionview (>= 6.0.0)
182+
activemodel (>= 6.0.0)
183+
bindex (>= 0.4.0)
184+
railties (>= 6.0.0)
185+
webdrivers (4.5.0)
186+
nokogiri (~> 1.6)
187+
rubyzip (>= 1.3.0)
188+
selenium-webdriver (>= 3.0, < 4.0)
189+
webpacker (5.2.1)
190+
activesupport (>= 5.2)
191+
rack-proxy (>= 0.6.1)
192+
railties (>= 5.2)
193+
semantic_range (>= 2.3.0)
194+
websocket-driver (0.7.3)
195+
websocket-extensions (>= 0.1.0)
196+
websocket-extensions (0.1.5)
197+
xpath (3.2.0)
198+
nokogiri (~> 1.8)
199+
zeitwerk (2.4.2)
200+
201+
PLATFORMS
202+
x86_64-linux
203+
204+
DEPENDENCIES
205+
bootsnap (>= 1.4.4)
206+
byebug
207+
capybara (>= 3.26)
208+
jbuilder (~> 2.7)
209+
listen (~> 3.3)
210+
pg (~> 1.1)
211+
puma (~> 5.0)
212+
rack-mini-profiler (~> 2.0)
213+
rails (~> 6.1.3)
214+
sass-rails (>= 6)
215+
selenium-webdriver
216+
spring
217+
turbolinks (~> 5)
218+
tzinfo-data
219+
web-console (>= 4.1.0)
220+
webdrivers
221+
webpacker (~> 5.0)
222+
223+
RUBY VERSION
224+
ruby 3.0.0p0
225+
226+
BUNDLED WITH
227+
2.2.3

README.md

Lines changed: 24 additions & 0 deletions
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

Lines changed: 6 additions & 0 deletions
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

Lines changed: 2 additions & 0 deletions
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.
Lines changed: 15 additions & 0 deletions
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+
*/

0 commit comments

Comments
 (0)