├── .gitignore ├── Gemfile ├── Gemfile.lock ├── MIT-LICENSE ├── README.md ├── README.rdoc ├── Rakefile ├── app ├── assets │ ├── images │ │ └── delayed_action │ │ │ └── .keep │ ├── javascripts │ │ └── delayed_action │ │ │ ├── application.js │ │ │ └── delayed_action_results.js │ └── stylesheets │ │ ├── delayed_action │ │ ├── application.css │ │ └── delayed_action_results.css │ │ └── scaffold.css ├── controllers │ └── delayed_action │ │ ├── application_controller.rb │ │ └── delayed_action_results_controller.rb ├── helpers │ └── delayed_action │ │ ├── application_helper.rb │ │ └── delayed_action_results_helper.rb ├── models │ └── delayed_action │ │ └── delayed_action_result.rb └── views │ ├── delayed_action │ └── delayed_action_results │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ └── layouts │ └── delayed_action │ └── application.html.erb ├── bin └── rails ├── config └── routes.rb ├── db └── migrate │ └── 20151003163407_create_delayed_action_delayed_action_results.rb ├── delayed_action-0.0.1.gem ├── delayed_action-0.0.2.gem ├── delayed_action.gemspec ├── lib ├── delayed_action.rb ├── delayed_action │ ├── delayed_action_active_job.rb │ ├── delayed_action_concern.rb │ ├── engine.rb │ └── version.rb └── tasks │ └── delayed_action_tasks.rake └── test ├── controllers └── delayed_action │ └── delayed_action_results_controller_test.rb ├── delayed_action_test.rb ├── dummy ├── README.rdoc ├── Rakefile ├── app │ ├── assets │ │ ├── images │ │ │ └── .keep │ │ ├── javascripts │ │ │ └── application.js │ │ └── stylesheets │ │ │ └── application.css │ ├── controllers │ │ ├── application_controller.rb │ │ └── concerns │ │ │ └── .keep │ ├── helpers │ │ └── application_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ └── concerns │ │ │ └── .keep │ └── views │ │ └── layouts │ │ └── application.html.erb ├── bin │ ├── bundle │ ├── rails │ ├── rake │ └── setup ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── routes.rb │ └── secrets.yml ├── lib │ └── assets │ │ └── .keep ├── log │ └── .keep └── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ └── favicon.ico ├── fixtures └── delayed_action │ └── delayed_action_results.yml ├── integration └── navigation_test.rb ├── models └── delayed_action │ └── delayed_action_result_test.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/README.md -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- 1 | = DelayedAction 2 | 3 | This project rocks and uses MIT-LICENSE. -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/delayed_action/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/delayed_action/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/app/assets/javascripts/delayed_action/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/delayed_action/delayed_action_results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/app/assets/javascripts/delayed_action/delayed_action_results.js -------------------------------------------------------------------------------- /app/assets/stylesheets/delayed_action/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/app/assets/stylesheets/delayed_action/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/delayed_action/delayed_action_results.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/app/assets/stylesheets/delayed_action/delayed_action_results.css -------------------------------------------------------------------------------- /app/assets/stylesheets/scaffold.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/app/assets/stylesheets/scaffold.css -------------------------------------------------------------------------------- /app/controllers/delayed_action/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/app/controllers/delayed_action/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/delayed_action/delayed_action_results_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/app/controllers/delayed_action/delayed_action_results_controller.rb -------------------------------------------------------------------------------- /app/helpers/delayed_action/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/app/helpers/delayed_action/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/delayed_action/delayed_action_results_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/app/helpers/delayed_action/delayed_action_results_helper.rb -------------------------------------------------------------------------------- /app/models/delayed_action/delayed_action_result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/app/models/delayed_action/delayed_action_result.rb -------------------------------------------------------------------------------- /app/views/delayed_action/delayed_action_results/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/app/views/delayed_action/delayed_action_results/_form.html.erb -------------------------------------------------------------------------------- /app/views/delayed_action/delayed_action_results/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/app/views/delayed_action/delayed_action_results/edit.html.erb -------------------------------------------------------------------------------- /app/views/delayed_action/delayed_action_results/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/app/views/delayed_action/delayed_action_results/index.html.erb -------------------------------------------------------------------------------- /app/views/delayed_action/delayed_action_results/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/app/views/delayed_action/delayed_action_results/new.html.erb -------------------------------------------------------------------------------- /app/views/delayed_action/delayed_action_results/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/app/views/delayed_action/delayed_action_results/show.html.erb -------------------------------------------------------------------------------- /app/views/layouts/delayed_action/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/app/views/layouts/delayed_action/application.html.erb -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/bin/rails -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/config/routes.rb -------------------------------------------------------------------------------- /db/migrate/20151003163407_create_delayed_action_delayed_action_results.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/db/migrate/20151003163407_create_delayed_action_delayed_action_results.rb -------------------------------------------------------------------------------- /delayed_action-0.0.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/delayed_action-0.0.1.gem -------------------------------------------------------------------------------- /delayed_action-0.0.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/delayed_action-0.0.2.gem -------------------------------------------------------------------------------- /delayed_action.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/delayed_action.gemspec -------------------------------------------------------------------------------- /lib/delayed_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/lib/delayed_action.rb -------------------------------------------------------------------------------- /lib/delayed_action/delayed_action_active_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/lib/delayed_action/delayed_action_active_job.rb -------------------------------------------------------------------------------- /lib/delayed_action/delayed_action_concern.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/lib/delayed_action/delayed_action_concern.rb -------------------------------------------------------------------------------- /lib/delayed_action/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/lib/delayed_action/engine.rb -------------------------------------------------------------------------------- /lib/delayed_action/version.rb: -------------------------------------------------------------------------------- 1 | module DelayedAction 2 | VERSION = "0.0.3" 3 | end 4 | -------------------------------------------------------------------------------- /lib/tasks/delayed_action_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/lib/tasks/delayed_action_tasks.rake -------------------------------------------------------------------------------- /test/controllers/delayed_action/delayed_action_results_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/controllers/delayed_action/delayed_action_results_controller_test.rb -------------------------------------------------------------------------------- /test/delayed_action_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/delayed_action_test.rb -------------------------------------------------------------------------------- /test/dummy/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/README.rdoc -------------------------------------------------------------------------------- /test/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/Rakefile -------------------------------------------------------------------------------- /test/dummy/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /test/dummy/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /test/dummy/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/bin/bundle -------------------------------------------------------------------------------- /test/dummy/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/bin/rails -------------------------------------------------------------------------------- /test/dummy/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/bin/rake -------------------------------------------------------------------------------- /test/dummy/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/bin/setup -------------------------------------------------------------------------------- /test/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/config.ru -------------------------------------------------------------------------------- /test/dummy/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/config/application.rb -------------------------------------------------------------------------------- /test/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/config/boot.rb -------------------------------------------------------------------------------- /test/dummy/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/config/database.yml -------------------------------------------------------------------------------- /test/dummy/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/config/environment.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/config/environments/development.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/config/environments/production.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/config/environments/test.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/config/initializers/assets.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/config/initializers/inflections.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/config/initializers/session_store.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /test/dummy/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/config/locales/en.yml -------------------------------------------------------------------------------- /test/dummy/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/config/routes.rb -------------------------------------------------------------------------------- /test/dummy/config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/config/secrets.yml -------------------------------------------------------------------------------- /test/dummy/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/public/404.html -------------------------------------------------------------------------------- /test/dummy/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/public/422.html -------------------------------------------------------------------------------- /test/dummy/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/dummy/public/500.html -------------------------------------------------------------------------------- /test/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/delayed_action/delayed_action_results.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/fixtures/delayed_action/delayed_action_results.yml -------------------------------------------------------------------------------- /test/integration/navigation_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/integration/navigation_test.rb -------------------------------------------------------------------------------- /test/models/delayed_action/delayed_action_result_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/models/delayed_action/delayed_action_result_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvcodeclub/delayed_action/HEAD/test/test_helper.rb --------------------------------------------------------------------------------