Skip to content

Commit 06ec78b

Browse files
committed
add a dummy rails app
1 parent 6aff126 commit 06ec78b

Some content is hidden

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

89 files changed

+1706
-1
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,7 @@
1111
.rspec_status
1212

1313
# Intellij files
14-
.idea
14+
.idea
15+
16+
/dummy_app/log/**/*.log
17+
/dummy_app/vendor/bundle/

dummy_app/.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

dummy_app/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.0'
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', '~> 3.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.13.0'
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]

dummy_app/Gemfile.lock

Lines changed: 199 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,199 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actioncable (5.1.6)
5+
actionpack (= 5.1.6)
6+
nio4r (~> 2.0)
7+
websocket-driver (~> 0.6.1)
8+
actionmailer (5.1.6)
9+
actionpack (= 5.1.6)
10+
actionview (= 5.1.6)
11+
activejob (= 5.1.6)
12+
mail (~> 2.5, >= 2.5.4)
13+
rails-dom-testing (~> 2.0)
14+
actionpack (5.1.6)
15+
actionview (= 5.1.6)
16+
activesupport (= 5.1.6)
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.6)
22+
activesupport (= 5.1.6)
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.6)
28+
activesupport (= 5.1.6)
29+
globalid (>= 0.3.6)
30+
activemodel (5.1.6)
31+
activesupport (= 5.1.6)
32+
activerecord (5.1.6)
33+
activemodel (= 5.1.6)
34+
activesupport (= 5.1.6)
35+
arel (~> 8.0)
36+
activesupport (5.1.6)
37+
concurrent-ruby (~> 1.0, >= 1.0.2)
38+
i18n (>= 0.7, < 2)
39+
minitest (~> 5.1)
40+
tzinfo (~> 1.1)
41+
addressable (2.5.2)
42+
public_suffix (>= 2.0.2, < 4.0)
43+
arel (8.0.0)
44+
bindex (0.5.0)
45+
builder (3.2.3)
46+
byebug (10.0.2)
47+
capybara (2.13.0)
48+
addressable
49+
mime-types (>= 1.16)
50+
nokogiri (>= 1.3.3)
51+
rack (>= 1.0.0)
52+
rack-test (>= 0.5.4)
53+
xpath (~> 2.0)
54+
childprocess (0.9.0)
55+
ffi (~> 1.0, >= 1.0.11)
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.0.5)
64+
crass (1.0.4)
65+
erubi (1.7.1)
66+
execjs (2.7.0)
67+
ffi (1.9.25)
68+
globalid (0.4.1)
69+
activesupport (>= 4.2.0)
70+
i18n (1.1.0)
71+
concurrent-ruby (~> 1.0)
72+
jbuilder (2.7.0)
73+
activesupport (>= 4.2.0)
74+
multi_json (>= 1.2)
75+
listen (3.1.5)
76+
rb-fsevent (~> 0.9, >= 0.9.4)
77+
rb-inotify (~> 0.9, >= 0.9.7)
78+
ruby_dep (~> 1.2)
79+
loofah (2.2.2)
80+
crass (~> 1.0.2)
81+
nokogiri (>= 1.5.9)
82+
mail (2.7.0)
83+
mini_mime (>= 0.1.1)
84+
method_source (0.9.0)
85+
mime-types (3.2.2)
86+
mime-types-data (~> 3.2015)
87+
mime-types-data (3.2018.0812)
88+
mini_mime (1.0.1)
89+
mini_portile2 (2.3.0)
90+
minitest (5.11.3)
91+
multi_json (1.13.1)
92+
nio4r (2.3.1)
93+
nokogiri (1.8.4)
94+
mini_portile2 (~> 2.3.0)
95+
public_suffix (3.0.3)
96+
puma (3.12.0)
97+
rack (2.0.5)
98+
rack-test (1.1.0)
99+
rack (>= 1.0, < 3)
100+
rails (5.1.6)
101+
actioncable (= 5.1.6)
102+
actionmailer (= 5.1.6)
103+
actionpack (= 5.1.6)
104+
actionview (= 5.1.6)
105+
activejob (= 5.1.6)
106+
activemodel (= 5.1.6)
107+
activerecord (= 5.1.6)
108+
activesupport (= 5.1.6)
109+
bundler (>= 1.3.0)
110+
railties (= 5.1.6)
111+
sprockets-rails (>= 2.0.0)
112+
rails-dom-testing (2.0.3)
113+
activesupport (>= 4.2.0)
114+
nokogiri (>= 1.6)
115+
rails-html-sanitizer (1.0.4)
116+
loofah (~> 2.2, >= 2.2.2)
117+
railties (5.1.6)
118+
actionpack (= 5.1.6)
119+
activesupport (= 5.1.6)
120+
method_source
121+
rake (>= 0.8.7)
122+
thor (>= 0.18.1, < 2.0)
123+
rake (12.3.1)
124+
rb-fsevent (0.10.3)
125+
rb-inotify (0.9.10)
126+
ffi (>= 0.5.0, < 2)
127+
ruby_dep (1.5.0)
128+
rubyzip (1.2.1)
129+
sass (3.5.7)
130+
sass-listen (~> 4.0.0)
131+
sass-listen (4.0.0)
132+
rb-fsevent (~> 0.9, >= 0.9.4)
133+
rb-inotify (~> 0.9, >= 0.9.7)
134+
sass-rails (5.0.7)
135+
railties (>= 4.0.0, < 6)
136+
sass (~> 3.1)
137+
sprockets (>= 2.8, < 4.0)
138+
sprockets-rails (>= 2.0, < 4.0)
139+
tilt (>= 1.1, < 3)
140+
selenium-webdriver (3.14.0)
141+
childprocess (~> 0.5)
142+
rubyzip (~> 1.2)
143+
spring (2.0.2)
144+
activesupport (>= 4.2)
145+
spring-watcher-listen (2.0.1)
146+
listen (>= 2.7, < 4.0)
147+
spring (>= 1.2, < 3.0)
148+
sprockets (3.7.2)
149+
concurrent-ruby (~> 1.0)
150+
rack (> 1, < 3)
151+
sprockets-rails (3.2.1)
152+
actionpack (>= 4.0)
153+
activesupport (>= 4.0)
154+
sprockets (>= 3.0.0)
155+
sqlite3 (1.3.13)
156+
thor (0.20.0)
157+
thread_safe (0.3.6)
158+
tilt (2.0.8)
159+
turbolinks (5.2.0)
160+
turbolinks-source (~> 5.2)
161+
turbolinks-source (5.2.0)
162+
tzinfo (1.2.5)
163+
thread_safe (~> 0.1)
164+
uglifier (4.1.18)
165+
execjs (>= 0.3.0, < 3)
166+
web-console (3.6.2)
167+
actionview (>= 5.0)
168+
activemodel (>= 5.0)
169+
bindex (>= 0.4.0)
170+
railties (>= 5.0)
171+
websocket-driver (0.6.5)
172+
websocket-extensions (>= 0.1.0)
173+
websocket-extensions (0.1.3)
174+
xpath (2.1.0)
175+
nokogiri (~> 1.3)
176+
177+
PLATFORMS
178+
ruby
179+
180+
DEPENDENCIES
181+
byebug
182+
capybara (~> 2.13.0)
183+
coffee-rails (~> 4.2)
184+
jbuilder (~> 2.5)
185+
listen (>= 3.0.5, < 3.2)
186+
puma (~> 3.7)
187+
rails (~> 5.1.0)
188+
sass-rails (~> 5.0)
189+
selenium-webdriver
190+
spring
191+
spring-watcher-listen (~> 2.0.0)
192+
sqlite3
193+
turbolinks (~> 5)
194+
tzinfo-data
195+
uglifier (>= 1.3.0)
196+
web-console (>= 3.3.0)
197+
198+
BUNDLED WITH
199+
1.16.4

dummy_app/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+
* ...

dummy_app/Rakefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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+
# Rails.application.load_tasks
6+
require "bundler/gem_tasks"
7+
require File.expand_path('../config/application', __FILE__)
8+
DummyApp::Application.load_tasks
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

dummy_app/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 .
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// Action Cable provides the framework to deal with WebSockets in Rails.
2+
// You can generate new channels where WebSocket features live using the `rails generate channel` command.
3+
//
4+
//= require action_cable
5+
//= require_self
6+
//= require_tree ./channels
7+
8+
(function() {
9+
this.App || (this.App = {});
10+
11+
App.cable = ActionCable.createConsumer();
12+
13+
}).call(this);

dummy_app/app/assets/javascripts/channels/.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+
*/
Lines changed: 4 additions & 0 deletions
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
Lines changed: 4 additions & 0 deletions
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
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
class ApplicationController < ActionController::Base
2+
protect_from_forgery with: :exception
3+
end

dummy_app/app/controllers/concerns/.keep

Whitespace-only changes.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
module ApplicationHelper
2+
end

dummy_app/app/jobs/application_job.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
class ApplicationJob < ActiveJob::Base
2+
end
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
class ApplicationMailer < ActionMailer::Base
2+
default from: 'from@example.com'
3+
layout 'mailer'
4+
end

0 commit comments

Comments
 (0)