├── .gitignore ├── .hound.yml ├── .rubocop.yml ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── MIT-LICENSE ├── README.md ├── Rakefile ├── app └── assets │ └── javascripts │ └── get_schwifty.js ├── bin └── test ├── get_schwifty.gemspec ├── lib ├── generators │ ├── get_schwifty │ │ ├── cable_generator.rb │ │ └── install_generator.rb │ └── templates │ │ ├── CABLE │ │ ├── INSTALL │ │ ├── assets │ │ └── javascripts │ │ │ └── get_schwifty_channel.js │ │ ├── cables │ │ ├── base_cable.rb │ │ └── cable.rb │ │ ├── channels │ │ └── get_schwifty_channel.rb │ │ ├── controllers │ │ └── get_schwifty_controller.rb │ │ ├── get_schwifty.rb │ │ ├── jobs │ │ └── get_schwifty_runner_job.rb │ │ └── views │ │ └── cables │ │ └── action.html.erb ├── get_schwifty.rb ├── get_schwifty │ ├── cable │ │ └── base.rb │ ├── channel.rb │ ├── helper.rb │ ├── job.rb │ └── version.rb └── tasks │ └── get_schwifty_tasks.rake └── test ├── application_system_test_case.rb ├── dummy ├── Rakefile ├── app │ ├── assets │ │ ├── config │ │ │ └── manifest.js │ │ ├── images │ │ │ └── .keep │ │ ├── javascripts │ │ │ ├── application.js │ │ │ ├── cable.js │ │ │ └── channels │ │ │ │ ├── .keep │ │ │ │ └── get_schwifty_channel.js │ │ └── stylesheets │ │ │ └── application.css │ ├── cables │ │ ├── base_cable.rb │ │ ├── calculator_cable.rb │ │ ├── demo_cable.rb │ │ └── user_cable.rb │ ├── channels │ │ ├── application_cable │ │ │ ├── channel.rb │ │ │ └── connection.rb │ │ └── get_schwifty_channel.rb │ ├── controllers │ │ ├── application_controller.rb │ │ ├── calculators_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── demos_controller.rb │ │ └── get_schwifty_controller.rb │ ├── helpers │ │ └── application_helper.rb │ ├── jobs │ │ ├── application_job.rb │ │ └── get_schwifty_runner_job.rb │ ├── mailers │ │ └── application_mailer.rb │ ├── models │ │ ├── application_record.rb │ │ ├── concerns │ │ │ └── .keep │ │ └── user.rb │ └── views │ │ ├── cables │ │ ├── calculator │ │ │ └── _fibonacci.html.erb │ │ └── user │ │ │ └── _list.html.erb │ │ ├── calculators │ │ └── index.html.erb │ │ ├── demos │ │ ├── index.html.erb │ │ └── show.html.erb │ │ └── layouts │ │ ├── application.html.erb │ │ ├── mailer.html.erb │ │ └── mailer.text.erb ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ ├── update │ └── yarn ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── cable.yml │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── application_controller_renderer.rb │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── get_schwifty.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── puma.rb │ ├── routes.rb │ ├── secrets.yml │ └── spring.rb ├── db │ ├── migrate │ │ └── 20170929210150_create_users.rb │ └── schema.rb ├── lib │ └── assets │ │ └── .keep ├── log │ └── .keep ├── package.json ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ └── favicon.ico └── test │ ├── fixtures │ └── users.yml │ └── models │ └── user_test.rb ├── get_schwifty └── helpers │ └── get_schwifty_test.rb ├── get_schwifty_test.rb ├── system_test.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/.gitignore -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- 1 | ruby: 2 | config_file: .rubocop.yml 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/javascripts/get_schwifty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/app/assets/javascripts/get_schwifty.js -------------------------------------------------------------------------------- /bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/bin/test -------------------------------------------------------------------------------- /get_schwifty.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/get_schwifty.gemspec -------------------------------------------------------------------------------- /lib/generators/get_schwifty/cable_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/lib/generators/get_schwifty/cable_generator.rb -------------------------------------------------------------------------------- /lib/generators/get_schwifty/install_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/lib/generators/get_schwifty/install_generator.rb -------------------------------------------------------------------------------- /lib/generators/templates/CABLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/lib/generators/templates/CABLE -------------------------------------------------------------------------------- /lib/generators/templates/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/lib/generators/templates/INSTALL -------------------------------------------------------------------------------- /lib/generators/templates/assets/javascripts/get_schwifty_channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/lib/generators/templates/assets/javascripts/get_schwifty_channel.js -------------------------------------------------------------------------------- /lib/generators/templates/cables/base_cable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/lib/generators/templates/cables/base_cable.rb -------------------------------------------------------------------------------- /lib/generators/templates/cables/cable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/lib/generators/templates/cables/cable.rb -------------------------------------------------------------------------------- /lib/generators/templates/channels/get_schwifty_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/lib/generators/templates/channels/get_schwifty_channel.rb -------------------------------------------------------------------------------- /lib/generators/templates/controllers/get_schwifty_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/lib/generators/templates/controllers/get_schwifty_controller.rb -------------------------------------------------------------------------------- /lib/generators/templates/get_schwifty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/lib/generators/templates/get_schwifty.rb -------------------------------------------------------------------------------- /lib/generators/templates/jobs/get_schwifty_runner_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/lib/generators/templates/jobs/get_schwifty_runner_job.rb -------------------------------------------------------------------------------- /lib/generators/templates/views/cables/action.html.erb: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/get_schwifty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/lib/get_schwifty.rb -------------------------------------------------------------------------------- /lib/get_schwifty/cable/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/lib/get_schwifty/cable/base.rb -------------------------------------------------------------------------------- /lib/get_schwifty/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/lib/get_schwifty/channel.rb -------------------------------------------------------------------------------- /lib/get_schwifty/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/lib/get_schwifty/helper.rb -------------------------------------------------------------------------------- /lib/get_schwifty/job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/lib/get_schwifty/job.rb -------------------------------------------------------------------------------- /lib/get_schwifty/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module GetSchwifty 4 | VERSION = "0.2.0" 5 | end 6 | -------------------------------------------------------------------------------- /lib/tasks/get_schwifty_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/lib/tasks/get_schwifty_tasks.rake -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/Rakefile -------------------------------------------------------------------------------- /test/dummy/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/app/assets/config/manifest.js -------------------------------------------------------------------------------- /test/dummy/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/channels/get_schwifty_channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/app/assets/javascripts/channels/get_schwifty_channel.js -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /test/dummy/app/cables/base_cable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/app/cables/base_cable.rb -------------------------------------------------------------------------------- /test/dummy/app/cables/calculator_cable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/app/cables/calculator_cable.rb -------------------------------------------------------------------------------- /test/dummy/app/cables/demo_cable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/app/cables/demo_cable.rb -------------------------------------------------------------------------------- /test/dummy/app/cables/user_cable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/app/cables/user_cable.rb -------------------------------------------------------------------------------- /test/dummy/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /test/dummy/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /test/dummy/app/channels/get_schwifty_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/app/channels/get_schwifty_channel.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/calculators_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/app/controllers/calculators_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/controllers/demos_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/app/controllers/demos_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/get_schwifty_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/app/controllers/get_schwifty_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module ApplicationHelper 4 | end 5 | -------------------------------------------------------------------------------- /test/dummy/app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/app/jobs/application_job.rb -------------------------------------------------------------------------------- /test/dummy/app/jobs/get_schwifty_runner_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/app/jobs/get_schwifty_runner_job.rb -------------------------------------------------------------------------------- /test/dummy/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /test/dummy/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/app/models/application_record.rb -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/models/user.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | class User < ApplicationRecord 4 | end 5 | -------------------------------------------------------------------------------- /test/dummy/app/views/cables/calculator/_fibonacci.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/app/views/cables/calculator/_fibonacci.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/cables/user/_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/app/views/cables/user/_list.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/calculators/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/app/views/calculators/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/demos/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/app/views/demos/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/demos/show.html.erb: -------------------------------------------------------------------------------- 1 |

Demo data was inserted

2 | -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /test/dummy/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/bin/bundle -------------------------------------------------------------------------------- /test/dummy/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/bin/rails -------------------------------------------------------------------------------- /test/dummy/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/bin/rake -------------------------------------------------------------------------------- /test/dummy/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/bin/setup -------------------------------------------------------------------------------- /test/dummy/bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/bin/update -------------------------------------------------------------------------------- /test/dummy/bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/bin/yarn -------------------------------------------------------------------------------- /test/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/config.ru -------------------------------------------------------------------------------- /test/dummy/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/config/application.rb -------------------------------------------------------------------------------- /test/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/config/boot.rb -------------------------------------------------------------------------------- /test/dummy/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/config/cable.yml -------------------------------------------------------------------------------- /test/dummy/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/config/database.yml -------------------------------------------------------------------------------- /test/dummy/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/config/environment.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/config/environments/development.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/config/environments/production.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/config/environments/test.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/config/initializers/assets.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/get_schwifty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/config/initializers/get_schwifty.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/config/initializers/inflections.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /test/dummy/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/config/locales/en.yml -------------------------------------------------------------------------------- /test/dummy/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/config/puma.rb -------------------------------------------------------------------------------- /test/dummy/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/config/routes.rb -------------------------------------------------------------------------------- /test/dummy/config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/config/secrets.yml -------------------------------------------------------------------------------- /test/dummy/config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/config/spring.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20170929210150_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/db/migrate/20170929210150_create_users.rb -------------------------------------------------------------------------------- /test/dummy/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/db/schema.rb -------------------------------------------------------------------------------- /test/dummy/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/package.json -------------------------------------------------------------------------------- /test/dummy/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/public/404.html -------------------------------------------------------------------------------- /test/dummy/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/public/422.html -------------------------------------------------------------------------------- /test/dummy/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/public/500.html -------------------------------------------------------------------------------- /test/dummy/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/dummy/test/models/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/dummy/test/models/user_test.rb -------------------------------------------------------------------------------- /test/get_schwifty/helpers/get_schwifty_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/get_schwifty/helpers/get_schwifty_test.rb -------------------------------------------------------------------------------- /test/get_schwifty_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/get_schwifty_test.rb -------------------------------------------------------------------------------- /test/system_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/system_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwestendorf/get_schwifty/HEAD/test/test_helper.rb --------------------------------------------------------------------------------