commit
Showing
sample_app @ 9f3daab4
sample_app/.browserslistrc
deleted
100644 → 0
sample_app/.gitignore
deleted
100644 → 0
sample_app/.ruby-version
deleted
100644 → 0
sample_app/Gemfile
deleted
100644 → 0
| source 'https://rubygems.org' | ||
| git_source(:github) { |repo| "https://github.com/#{repo}.git" } | ||
| ruby '2.6.5' | ||
| # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | ||
| gem 'rails', '~> 6.0.0' | ||
| # Use sqlite3 as the database for Active Record | ||
| gem 'sqlite3', '~> 1.4' | ||
| # Use Puma as the app server | ||
| gem 'puma', '~> 3.11' | ||
| # Use SCSS for stylesheets | ||
| gem 'sass-rails', '~> 5' | ||
| # Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker | ||
| gem 'webpacker', '~> 4.0' | ||
| # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks | ||
| gem 'turbolinks', '~> 5' | ||
| # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder | ||
| gem 'jbuilder', '~> 2.7' | ||
| # Use Redis adapter to run Action Cable in production | ||
| # gem 'redis', '~> 4.0' | ||
| # Use Active Model has_secure_password | ||
| # gem 'bcrypt', '~> 3.1.7' | ||
| # Use Active Storage variant | ||
| # gem 'image_processing', '~> 1.2' | ||
| # Reduces boot times through caching; required in config/boot.rb | ||
| gem 'bootsnap', '>= 1.4.2', require: false | ||
| group :development, :test do | ||
| # Call 'byebug' anywhere in the code to stop execution and get a debugger console | ||
| gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] | ||
| end | ||
| group :development do | ||
| # Access an interactive console on exception pages or by calling 'console' anywhere in the code. | ||
| gem 'web-console', '>= 3.3.0' | ||
| gem 'listen', '>= 3.0.5', '< 3.2' | ||
| # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | ||
| gem 'spring' | ||
| gem 'spring-watcher-listen', '~> 2.0.0' | ||
| end | ||
| group :test do | ||
| # Adds support for Capybara system testing and selenium driver | ||
| gem 'capybara', '>= 2.15' | ||
| gem 'selenium-webdriver' | ||
| # Easy installation and use of web drivers to run system tests with browsers | ||
| gem 'webdrivers' | ||
| end | ||
| # Windows does not include zoneinfo files, so bundle the tzinfo-data gem | ||
| gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] |
sample_app/Gemfile.lock
deleted
100644 → 0
sample_app/README.md
deleted
100644 → 0
sample_app/Rakefile
deleted
100644 → 0
sample_app/app/assets/images/.keep
deleted
100644 → 0
sample_app/app/models/concerns/.keep
deleted
100644 → 0
sample_app/babel.config.js
deleted
100644 → 0
sample_app/bin/bundle
deleted
100755 → 0
sample_app/bin/rails
deleted
100755 → 0
sample_app/bin/rake
deleted
100755 → 0
sample_app/bin/setup
deleted
100755 → 0
sample_app/bin/spring
deleted
100755 → 0
sample_app/bin/webpack
deleted
100755 → 0
sample_app/bin/webpack-dev-server
deleted
100755 → 0
sample_app/bin/yarn
deleted
100755 → 0
sample_app/config.ru
deleted
100644 → 0
sample_app/config/application.rb
deleted
100644 → 0
sample_app/config/boot.rb
deleted
100644 → 0
sample_app/config/cable.yml
deleted
100644 → 0
sample_app/config/database.yml
deleted
100644 → 0
sample_app/config/environment.rb
deleted
100644 → 0
sample_app/config/locales/en.yml
deleted
100644 → 0
sample_app/config/puma.rb
deleted
100644 → 0
sample_app/config/routes.rb
deleted
100644 → 0
sample_app/config/spring.rb
deleted
100644 → 0
sample_app/config/storage.yml
deleted
100644 → 0
sample_app/config/webpack/test.js
deleted
100644 → 0
sample_app/config/webpacker.yml
deleted
100644 → 0
sample_app/db/seeds.rb
deleted
100644 → 0
sample_app/lib/assets/.keep
deleted
100644 → 0
sample_app/lib/tasks/.keep
deleted
100644 → 0
sample_app/log/.keep
deleted
100644 → 0
sample_app/package.json
deleted
100644 → 0
| { | ||
| "name": "sample_app", | ||
| "private": true, | ||
| "dependencies": { | ||
| "@rails/actioncable": "^6.0.0-alpha", | ||
| "@rails/activestorage": "^6.0.0-alpha", | ||
| "@rails/ujs": "^6.0.0-alpha", | ||
| "@rails/webpacker": "^4.0.7", | ||
| "turbolinks": "^5.2.0" | ||
| }, | ||
| "version": "0.1.0", | ||
| "devDependencies": { | ||
| "webpack-dev-server": "^3.9.0" | ||
| } | ||
| } |
sample_app/postcss.config.js
deleted
100644 → 0
sample_app/public/404.html
deleted
100644 → 0
sample_app/public/422.html
deleted
100644 → 0
sample_app/public/500.html
deleted
100644 → 0
sample_app/public/favicon.ico
deleted
100644 → 0
sample_app/public/robots.txt
deleted
100644 → 0
sample_app/storage/.keep
deleted
100644 → 0
sample_app/test/controllers/.keep
deleted
100644 → 0
sample_app/test/fixtures/.keep
deleted
100644 → 0
sample_app/test/fixtures/files/.keep
deleted
100644 → 0
sample_app/test/helpers/.keep
deleted
100644 → 0
sample_app/test/integration/.keep
deleted
100644 → 0
sample_app/test/mailers/.keep
deleted
100644 → 0
sample_app/test/models/.keep
deleted
100644 → 0
sample_app/test/system/.keep
deleted
100644 → 0
sample_app/test/test_helper.rb
deleted
100644 → 0
sample_app/tmp/.keep
deleted
100644 → 0
sample_app/vendor/.keep
deleted
100644 → 0
sample_app/yarn.lock
deleted
100644 → 0
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
toy_app @ bf8f6c8a
toy_app/.browserslistrc
deleted
100644 → 0
toy_app/.gitignore
deleted
100644 → 0
toy_app/.ruby-version
deleted
100644 → 0
toy_app/Gemfile
deleted
100644 → 0
| source 'https://rubygems.org' | ||
| git_source(:github) { |repo| "https://github.com/#{repo}.git" } | ||
| ruby '2.6.5' | ||
| # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | ||
| gem 'rails', '~> 6.0.0' | ||
| # Use sqlite3 as the database for Active Record | ||
| gem 'sqlite3', '~> 1.4' | ||
| # Use Puma as the app server | ||
| gem 'puma', '~> 3.11' | ||
| # Use SCSS for stylesheets | ||
| gem 'sass-rails', '~> 5' | ||
| # Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker | ||
| gem 'webpacker', '~> 4.0' | ||
| # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks | ||
| gem 'turbolinks', '~> 5' | ||
| # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder | ||
| gem 'jbuilder', '~> 2.7' | ||
| # Use Redis adapter to run Action Cable in production | ||
| # gem 'redis', '~> 4.0' | ||
| # Use Active Model has_secure_password | ||
| # gem 'bcrypt', '~> 3.1.7' | ||
| # Use Active Storage variant | ||
| # gem 'image_processing', '~> 1.2' | ||
| # Reduces boot times through caching; required in config/boot.rb | ||
| gem 'bootsnap', '>= 1.4.2', require: false | ||
| group :development, :test do | ||
| # Call 'byebug' anywhere in the code to stop execution and get a debugger console | ||
| gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] | ||
| end | ||
| group :development do | ||
| # Access an interactive console on exception pages or by calling 'console' anywhere in the code. | ||
| gem 'web-console', '>= 3.3.0' | ||
| gem 'listen', '>= 3.0.5', '< 3.2' | ||
| # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | ||
| gem 'spring' | ||
| gem 'spring-watcher-listen', '~> 2.0.0' | ||
| end | ||
| group :test do | ||
| # Adds support for Capybara system testing and selenium driver | ||
| gem 'capybara', '>= 2.15' | ||
| gem 'selenium-webdriver' | ||
| # Easy installation and use of web drivers to run system tests with browsers | ||
| gem 'webdrivers' | ||
| end | ||
| # Windows does not include zoneinfo files, so bundle the tzinfo-data gem | ||
| gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] |
toy_app/Gemfile.lock
deleted
100644 → 0
toy_app/README.md
deleted
100644 → 0
toy_app/Rakefile
deleted
100644 → 0
toy_app/app/assets/images/.keep
deleted
100644 → 0
toy_app/app/jobs/application_job.rb
deleted
100644 → 0
toy_app/app/models/concerns/.keep
deleted
100644 → 0
toy_app/babel.config.js
deleted
100644 → 0
toy_app/bin/bundle
deleted
100755 → 0
toy_app/bin/rails
deleted
100755 → 0
toy_app/bin/rake
deleted
100755 → 0
toy_app/bin/setup
deleted
100755 → 0
toy_app/bin/spring
deleted
100755 → 0
toy_app/bin/webpack
deleted
100755 → 0
toy_app/bin/webpack-dev-server
deleted
100755 → 0
toy_app/bin/yarn
deleted
100755 → 0
toy_app/config.ru
deleted
100644 → 0
toy_app/config/application.rb
deleted
100644 → 0
toy_app/config/boot.rb
deleted
100644 → 0
toy_app/config/cable.yml
deleted
100644 → 0
toy_app/config/credentials.yml.enc
deleted
100644 → 0
toy_app/config/database.yml
deleted
100644 → 0
toy_app/config/environment.rb
deleted
100644 → 0
toy_app/config/environments/test.rb
deleted
100644 → 0
toy_app/config/locales/en.yml
deleted
100644 → 0
toy_app/config/puma.rb
deleted
100644 → 0
toy_app/config/routes.rb
deleted
100644 → 0
toy_app/config/spring.rb
deleted
100644 → 0
toy_app/config/storage.yml
deleted
100644 → 0
toy_app/config/webpack/production.js
deleted
100644 → 0
toy_app/config/webpack/test.js
deleted
100644 → 0
toy_app/config/webpacker.yml
deleted
100644 → 0
toy_app/db/seeds.rb
deleted
100644 → 0
toy_app/lib/assets/.keep
deleted
100644 → 0
toy_app/lib/tasks/.keep
deleted
100644 → 0
toy_app/log/.keep
deleted
100644 → 0
toy_app/package.json
deleted
100644 → 0
| { | ||
| "name": "toy_app", | ||
| "private": true, | ||
| "dependencies": { | ||
| "@rails/actioncable": "^6.0.0-alpha", | ||
| "@rails/activestorage": "^6.0.0-alpha", | ||
| "@rails/ujs": "^6.0.0-alpha", | ||
| "@rails/webpacker": "^4.0.7", | ||
| "turbolinks": "^5.2.0" | ||
| }, | ||
| "version": "0.1.0", | ||
| "devDependencies": { | ||
| "webpack-dev-server": "^3.9.0" | ||
| } | ||
| } |
toy_app/postcss.config.js
deleted
100644 → 0
toy_app/public/404.html
deleted
100644 → 0
toy_app/public/422.html
deleted
100644 → 0
toy_app/public/500.html
deleted
100644 → 0
toy_app/public/apple-touch-icon.png
deleted
100644 → 0
toy_app/public/favicon.ico
deleted
100644 → 0
toy_app/public/robots.txt
deleted
100644 → 0
toy_app/storage/.keep
deleted
100644 → 0
toy_app/test/controllers/.keep
deleted
100644 → 0
toy_app/test/fixtures/.keep
deleted
100644 → 0
toy_app/test/fixtures/files/.keep
deleted
100644 → 0
toy_app/test/helpers/.keep
deleted
100644 → 0
toy_app/test/integration/.keep
deleted
100644 → 0
toy_app/test/mailers/.keep
deleted
100644 → 0
toy_app/test/models/.keep
deleted
100644 → 0
toy_app/test/system/.keep
deleted
100644 → 0
toy_app/test/test_helper.rb
deleted
100644 → 0
toy_app/tmp/.keep
deleted
100644 → 0
toy_app/vendor/.keep
deleted
100644 → 0
toy_app/yarn.lock
deleted
100644 → 0
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
Please
register
or
sign in
to comment