Skip to content

Commit a7dc659

Browse files
author
Alexa
committed
Initial commit
0 parents  commit a7dc659

Some content is hidden

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

79 files changed

+1221
-0
lines changed

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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+
14+
# Ignore all logfiles and tempfiles.
15+
/log/*
16+
/tmp/*
17+
!/log/.keep
18+
!/tmp/.keep
19+
20+
/node_modules
21+
/yarn-error.log
22+
23+
.byebug_history

.ruby-gemset

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

.ruby-version

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

Gemfile

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
source 'https://rubygems.org'
2+
3+
git_source(:github) do |repo_name|
4+
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
5+
"https://github.com/#{repo_name}.git"
6+
end
7+
8+
9+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
10+
gem 'rails', '~> 5.1.7'
11+
# Use sqlite3 as the database for Active Record
12+
gem 'sqlite3'
13+
# Use Puma as the app server
14+
gem 'puma', '~> 3.7'
15+
# Use SCSS for stylesheets
16+
gem 'sass-rails', '~> 5.0'
17+
# Use Uglifier as compressor for JavaScript assets
18+
gem 'uglifier', '>= 1.3.0'
19+
# See https://github.com/rails/execjs#readme for more supported runtimes
20+
# gem 'therubyracer', platforms: :ruby
21+
22+
# Use CoffeeScript for .coffee assets and views
23+
gem 'coffee-rails', '~> 4.2'
24+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
25+
gem 'turbolinks', '~> 5'
26+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
27+
gem 'jbuilder', '~> 2.5'
28+
# Use Redis adapter to run Action Cable in production
29+
# gem 'redis', '~> 4.0'
30+
# Use ActiveModel has_secure_password
31+
# gem 'bcrypt', '~> 3.1.7'
32+
33+
# Use Capistrano for deployment
34+
# gem 'capistrano-rails', group: :development
35+
36+
group :development, :test do
37+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
38+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
39+
# Adds support for Capybara system testing and selenium driver
40+
gem 'capybara', '>= 2.15'
41+
gem 'selenium-webdriver'
42+
end
43+
44+
group :development do
45+
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
46+
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'
51+
end
52+
53+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
54+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

Gemfile.lock

Lines changed: 216 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,216 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actioncable (5.1.7)
5+
actionpack (= 5.1.7)
6+
nio4r (~> 2.0)
7+
websocket-driver (~> 0.6.1)
8+
actionmailer (5.1.7)
9+
actionpack (= 5.1.7)
10+
actionview (= 5.1.7)
11+
activejob (= 5.1.7)
12+
mail (~> 2.5, >= 2.5.4)
13+
rails-dom-testing (~> 2.0)
14+
actionpack (5.1.7)
15+
actionview (= 5.1.7)
16+
activesupport (= 5.1.7)
17+
rack (~> 2.0)
18+
rack-test (>= 0.6.3)
19+
rails-dom-testing (~> 2.0)
20+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
21+
actionview (5.1.7)
22+
activesupport (= 5.1.7)
23+
builder (~> 3.1)
24+
erubi (~> 1.4)
25+
rails-dom-testing (~> 2.0)
26+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
27+
activejob (5.1.7)
28+
activesupport (= 5.1.7)
29+
globalid (>= 0.3.6)
30+
activemodel (5.1.7)
31+
activesupport (= 5.1.7)
32+
activerecord (5.1.7)
33+
activemodel (= 5.1.7)
34+
activesupport (= 5.1.7)
35+
arel (~> 8.0)
36+
activesupport (5.1.7)
37+
concurrent-ruby (~> 1.0, >= 1.0.2)
38+
i18n (>= 0.7, < 2)
39+
minitest (~> 5.1)
40+
tzinfo (~> 1.1)
41+
addressable (2.8.1)
42+
public_suffix (>= 2.0.2, < 6.0)
43+
arel (8.0.0)
44+
bindex (0.8.1)
45+
builder (3.2.4)
46+
byebug (11.1.3)
47+
capybara (3.38.0)
48+
addressable
49+
matrix
50+
mini_mime (>= 0.1.3)
51+
nokogiri (~> 1.8)
52+
rack (>= 1.6.0)
53+
rack-test (>= 0.6.3)
54+
regexp_parser (>= 1.5, < 3.0)
55+
xpath (~> 3.2)
56+
coffee-rails (4.2.2)
57+
coffee-script (>= 2.2.0)
58+
railties (>= 4.0.0)
59+
coffee-script (2.4.1)
60+
coffee-script-source
61+
execjs
62+
coffee-script-source (1.12.2)
63+
concurrent-ruby (1.2.2)
64+
crass (1.0.6)
65+
date (3.3.3)
66+
erubi (1.12.0)
67+
execjs (2.8.1)
68+
ffi (1.15.5)
69+
globalid (1.1.0)
70+
activesupport (>= 5.0)
71+
i18n (1.12.0)
72+
concurrent-ruby (~> 1.0)
73+
jbuilder (2.11.5)
74+
actionview (>= 5.0.0)
75+
activesupport (>= 5.0.0)
76+
listen (3.1.5)
77+
rb-fsevent (~> 0.9, >= 0.9.4)
78+
rb-inotify (~> 0.9, >= 0.9.7)
79+
ruby_dep (~> 1.2)
80+
loofah (2.19.1)
81+
crass (~> 1.0.2)
82+
nokogiri (>= 1.5.9)
83+
mail (2.8.1)
84+
mini_mime (>= 0.1.1)
85+
net-imap
86+
net-pop
87+
net-smtp
88+
matrix (0.4.2)
89+
method_source (1.0.0)
90+
mini_mime (1.1.2)
91+
mini_portile2 (2.8.1)
92+
minitest (5.17.0)
93+
net-imap (0.3.4)
94+
date
95+
net-protocol
96+
net-pop (0.1.2)
97+
net-protocol
98+
net-protocol (0.2.1)
99+
timeout
100+
net-smtp (0.3.3)
101+
net-protocol
102+
nio4r (2.5.8)
103+
nokogiri (1.14.2)
104+
mini_portile2 (~> 2.8.0)
105+
racc (~> 1.4)
106+
public_suffix (5.0.1)
107+
puma (3.12.6)
108+
racc (1.6.2)
109+
rack (2.2.6.2)
110+
rack-test (2.0.2)
111+
rack (>= 1.3)
112+
rails (5.1.7)
113+
actioncable (= 5.1.7)
114+
actionmailer (= 5.1.7)
115+
actionpack (= 5.1.7)
116+
actionview (= 5.1.7)
117+
activejob (= 5.1.7)
118+
activemodel (= 5.1.7)
119+
activerecord (= 5.1.7)
120+
activesupport (= 5.1.7)
121+
bundler (>= 1.3.0)
122+
railties (= 5.1.7)
123+
sprockets-rails (>= 2.0.0)
124+
rails-dom-testing (2.0.3)
125+
activesupport (>= 4.2.0)
126+
nokogiri (>= 1.6)
127+
rails-html-sanitizer (1.5.0)
128+
loofah (~> 2.19, >= 2.19.1)
129+
railties (5.1.7)
130+
actionpack (= 5.1.7)
131+
activesupport (= 5.1.7)
132+
method_source
133+
rake (>= 0.8.7)
134+
thor (>= 0.18.1, < 2.0)
135+
rake (13.0.6)
136+
rb-fsevent (0.11.2)
137+
rb-inotify (0.10.1)
138+
ffi (~> 1.0)
139+
regexp_parser (2.7.0)
140+
rexml (3.2.5)
141+
ruby_dep (1.5.0)
142+
rubyzip (2.3.2)
143+
sass (3.7.4)
144+
sass-listen (~> 4.0.0)
145+
sass-listen (4.0.0)
146+
rb-fsevent (~> 0.9, >= 0.9.4)
147+
rb-inotify (~> 0.9, >= 0.9.7)
148+
sass-rails (5.0.7)
149+
railties (>= 4.0.0, < 6)
150+
sass (~> 3.1)
151+
sprockets (>= 2.8, < 4.0)
152+
sprockets-rails (>= 2.0, < 4.0)
153+
tilt (>= 1.1, < 3)
154+
selenium-webdriver (4.8.1)
155+
rexml (~> 3.2, >= 3.2.5)
156+
rubyzip (>= 1.2.2, < 3.0)
157+
websocket (~> 1.0)
158+
spring (2.1.1)
159+
spring-watcher-listen (2.0.1)
160+
listen (>= 2.7, < 4.0)
161+
spring (>= 1.2, < 3.0)
162+
sprockets (3.7.2)
163+
concurrent-ruby (~> 1.0)
164+
rack (> 1, < 3)
165+
sprockets-rails (3.2.2)
166+
actionpack (>= 4.0)
167+
activesupport (>= 4.0)
168+
sprockets (>= 3.0.0)
169+
sqlite3 (1.6.1)
170+
mini_portile2 (~> 2.8.0)
171+
thor (1.2.1)
172+
thread_safe (0.3.6)
173+
tilt (2.1.0)
174+
timeout (0.3.2)
175+
turbolinks (5.2.1)
176+
turbolinks-source (~> 5.2)
177+
turbolinks-source (5.2.0)
178+
tzinfo (1.2.11)
179+
thread_safe (~> 0.1)
180+
uglifier (4.2.0)
181+
execjs (>= 0.3.0, < 3)
182+
web-console (3.7.0)
183+
actionview (>= 5.0)
184+
activemodel (>= 5.0)
185+
bindex (>= 0.4.0)
186+
railties (>= 5.0)
187+
websocket (1.2.9)
188+
websocket-driver (0.6.5)
189+
websocket-extensions (>= 0.1.0)
190+
websocket-extensions (0.1.5)
191+
xpath (3.2.0)
192+
nokogiri (~> 1.8)
193+
194+
PLATFORMS
195+
ruby
196+
197+
DEPENDENCIES
198+
byebug
199+
capybara (>= 2.15)
200+
coffee-rails (~> 4.2)
201+
jbuilder (~> 2.5)
202+
listen (>= 3.0.5, < 3.2)
203+
puma (~> 3.7)
204+
rails (~> 5.1.7)
205+
sass-rails (~> 5.0)
206+
selenium-webdriver
207+
spring
208+
spring-watcher-listen (~> 2.0.0)
209+
sqlite3
210+
turbolinks (~> 5)
211+
tzinfo-data
212+
uglifier (>= 1.3.0)
213+
web-console (>= 3.3.0)
214+
215+
BUNDLED WITH
216+
2.1.4

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: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
//= link_tree ../images
2+
//= link_directory ../javascripts .js
3+
//= 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+
// This is a manifest file that'll be compiled into application.js, which will include all the files
2+
// listed below.
3+
//
4+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, or any plugin's
5+
// vendor/assets/javascripts directory can be referenced here using a relative path.
6+
//
7+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8+
// compiled file. JavaScript code in this file should be added after the last require_* statement.
9+
//
10+
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11+
// about supported directives.
12+
//
13+
//= require rails-ujs
14+
//= require turbolinks
15+
//= require_tree .

0 commit comments

Comments
 (0)