├── .gitignore ├── CHANGELOG.rdoc ├── LICENSE ├── README.rdoc ├── Rakefile ├── app ├── controllers │ ├── application_controller.rb │ ├── avatar_session_controller.rb │ ├── callbacks2_controller.rb │ ├── callbacks3_controller.rb │ ├── callbacks_controller.rb │ ├── callbacks_module.rb │ ├── data_modes2_controller.rb │ ├── data_modes_controller.rb │ ├── generated_controller.rb │ ├── image_submit_controller.rb │ ├── macro_controller.rb │ ├── main_controller.rb │ ├── sandbox_controller.rb │ ├── scaffold_test_controller.rb │ └── session_controller.rb ├── helpers │ ├── application_helper.rb │ ├── avatar_session_helper.rb │ ├── callbacks_helper.rb │ ├── data_modes_helper.rb │ ├── generated_helper.rb │ ├── image_submit_helper.rb │ ├── sandbox_helper.rb │ ├── scaffold_test_helper.rb │ └── session_helper.rb ├── models │ ├── four_step_user.rb │ ├── user.rb │ └── user_avatar.rb └── views │ ├── avatar_session │ ├── finish.html.erb │ ├── init.html.erb │ └── second.html.erb │ ├── callbacks │ ├── finish.html.erb │ ├── init.html.erb │ └── second.html.erb │ ├── data_modes │ ├── _finish.html.erb │ ├── _init.html.erb │ ├── _second.html.erb │ ├── finish.html.erb │ ├── init.html.erb │ └── second.html.erb │ ├── data_modes2 │ ├── _finish.html.erb │ ├── _init.html.erb │ ├── _second.html.erb │ ├── finish.html.erb │ ├── init.html.erb │ └── second.html.erb │ ├── generated │ ├── finish.html.erb │ ├── init.html.erb │ └── second.html.erb │ ├── image_submit │ ├── finish.html.erb │ ├── init.html.erb │ └── second.html.erb │ ├── layouts │ ├── application.html.erb │ ├── avatar_session.html.erb │ ├── callbacks.html.erb │ ├── data_modes.html.erb │ ├── generated.html.erb │ ├── image_submit.html.erb │ ├── sandbox.html.erb │ ├── scaffold_test.html.erb │ └── session.html.erb │ ├── macro │ ├── finish.html.erb │ ├── init.html.erb │ └── second.html.erb │ ├── main │ ├── canceled.html.erb │ ├── finished.html.erb │ ├── index.html.erb │ └── referrer_page.html.erb │ ├── sandbox │ ├── finish.html.erb │ ├── init.html.erb │ ├── second.html.erb │ └── third.html.erb │ ├── scaffold_test │ ├── finish.html.erb │ ├── init.html.erb │ └── second.html.erb │ └── session │ ├── finish.html.erb │ ├── init.html.erb │ ├── second.html.erb │ └── third.html.erb ├── config ├── boot.rb ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── backtrace_silencers.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── new_rails_defaults.rb │ └── session_store.rb ├── locales │ └── en.yml └── routes.rb ├── db ├── migrate │ ├── 20090718171255_create_sessions.rb │ └── 20090718172749_create_users.rb └── schema.rb ├── init.rb ├── lib ├── generators │ ├── wizardly_app │ │ ├── USAGE │ │ ├── templates │ │ │ └── wizardly.rake │ │ └── wizardly_app_generator.rb │ ├── wizardly_controller │ │ ├── USAGE │ │ ├── templates │ │ │ ├── controller.rb.erb │ │ │ └── helper.rb.erb │ │ └── wizardly_controller_generator.rb │ └── wizardly_scaffold │ │ ├── USAGE │ │ ├── templates │ │ ├── form.html.erb │ │ ├── form.html.haml.erb │ │ ├── helper.rb.erb │ │ ├── images │ │ │ ├── back.png │ │ │ ├── cancel.png │ │ │ ├── finish.png │ │ │ ├── next.png │ │ │ └── skip.png │ │ ├── layout.html.erb │ │ ├── layout.html.haml.erb │ │ └── style.css │ │ └── wizardly_scaffold_generator.rb ├── jeffp-wizardly.rb ├── validation_group.rb ├── wizardly.rb └── wizardly │ ├── action_controller.rb │ ├── wizard.rb │ └── wizard │ ├── button.rb │ ├── configuration.rb │ ├── configuration │ └── methods.rb │ ├── dsl.rb │ ├── page.rb │ ├── text_helpers.rb │ └── utils.rb ├── public ├── .gitignore ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico ├── images │ ├── avatar.png │ ├── rails.png │ └── wizardly │ │ ├── back.png │ │ ├── cancel.png │ │ ├── finish.png │ │ ├── next.png │ │ └── skip.png ├── javascripts │ ├── application.js │ ├── controls.js │ ├── dragdrop.js │ ├── effects.js │ └── prototype.js ├── robots.txt └── stylesheets │ └── scaffold.css ├── rails_generators ├── wizardly_app │ ├── USAGE │ ├── templates │ │ └── wizardly.rake │ └── wizardly_app_generator.rb ├── wizardly_controller │ ├── USAGE │ ├── templates │ │ ├── controller.rb.erb │ │ └── helper.rb.erb │ └── wizardly_controller_generator.rb └── wizardly_scaffold │ ├── USAGE │ ├── templates │ ├── form.html.erb │ ├── form.html.haml.erb │ ├── helper.rb.erb │ ├── images │ │ ├── back.png │ │ ├── cancel.png │ │ ├── finish.png │ │ ├── next.png │ │ └── skip.png │ ├── layout.html.erb │ ├── layout.html.haml.erb │ └── style.css │ └── wizardly_scaffold_generator.rb ├── script ├── about ├── autospec ├── console ├── dbconsole ├── destroy ├── generate ├── performance │ ├── benchmarker │ └── profiler ├── plugin ├── runner ├── server ├── spec └── spec_server ├── spec ├── controllers │ ├── callbacks2_spec.rb │ ├── callbacks3_spec.rb │ └── callbacks_spec.rb ├── fixtures │ └── users.yml ├── integrations │ ├── avatar_spec.rb │ ├── avatar_step_helpers.rb │ ├── data_modes2_spec.rb │ ├── data_modes_spec.rb │ ├── four_step_helpers.rb │ ├── generated_spec.rb │ ├── macro_spec.rb │ ├── matchers.rb │ ├── sandbox_spec.rb │ ├── scaffold_test_spec.rb │ ├── session_spec.rb │ ├── shared_examples.rb │ └── step_helpers.rb ├── models │ └── user_specd.rb ├── rcov.opts ├── spec.opts └── spec_helper.rb ├── test ├── fixtures │ └── users.yml ├── functional │ ├── callbacks_controller_test.rb │ └── image_submit_controller_test.rb ├── performance │ └── browsing_test.rb ├── test_helper.rb └── unit │ ├── helpers │ ├── callbacks_helper_test.rb │ └── image_submit_helper_test.rb │ └── user_test.rb └── wizardly.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/CHANGELOG.rdoc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/Rakefile -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/avatar_session_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/controllers/avatar_session_controller.rb -------------------------------------------------------------------------------- /app/controllers/callbacks2_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/controllers/callbacks2_controller.rb -------------------------------------------------------------------------------- /app/controllers/callbacks3_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/controllers/callbacks3_controller.rb -------------------------------------------------------------------------------- /app/controllers/callbacks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/controllers/callbacks_controller.rb -------------------------------------------------------------------------------- /app/controllers/callbacks_module.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/controllers/callbacks_module.rb -------------------------------------------------------------------------------- /app/controllers/data_modes2_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/controllers/data_modes2_controller.rb -------------------------------------------------------------------------------- /app/controllers/data_modes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/controllers/data_modes_controller.rb -------------------------------------------------------------------------------- /app/controllers/generated_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/controllers/generated_controller.rb -------------------------------------------------------------------------------- /app/controllers/image_submit_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/controllers/image_submit_controller.rb -------------------------------------------------------------------------------- /app/controllers/macro_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/controllers/macro_controller.rb -------------------------------------------------------------------------------- /app/controllers/main_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/controllers/main_controller.rb -------------------------------------------------------------------------------- /app/controllers/sandbox_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/controllers/sandbox_controller.rb -------------------------------------------------------------------------------- /app/controllers/scaffold_test_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/controllers/scaffold_test_controller.rb -------------------------------------------------------------------------------- /app/controllers/session_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/controllers/session_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/avatar_session_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/helpers/avatar_session_helper.rb -------------------------------------------------------------------------------- /app/helpers/callbacks_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/helpers/callbacks_helper.rb -------------------------------------------------------------------------------- /app/helpers/data_modes_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/helpers/data_modes_helper.rb -------------------------------------------------------------------------------- /app/helpers/generated_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/helpers/generated_helper.rb -------------------------------------------------------------------------------- /app/helpers/image_submit_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/helpers/image_submit_helper.rb -------------------------------------------------------------------------------- /app/helpers/sandbox_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/helpers/sandbox_helper.rb -------------------------------------------------------------------------------- /app/helpers/scaffold_test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/helpers/scaffold_test_helper.rb -------------------------------------------------------------------------------- /app/helpers/session_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/helpers/session_helper.rb -------------------------------------------------------------------------------- /app/models/four_step_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/models/four_step_user.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/user_avatar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/models/user_avatar.rb -------------------------------------------------------------------------------- /app/views/avatar_session/finish.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/avatar_session/finish.html.erb -------------------------------------------------------------------------------- /app/views/avatar_session/init.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/avatar_session/init.html.erb -------------------------------------------------------------------------------- /app/views/avatar_session/second.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/avatar_session/second.html.erb -------------------------------------------------------------------------------- /app/views/callbacks/finish.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/callbacks/finish.html.erb -------------------------------------------------------------------------------- /app/views/callbacks/init.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/callbacks/init.html.erb -------------------------------------------------------------------------------- /app/views/callbacks/second.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/callbacks/second.html.erb -------------------------------------------------------------------------------- /app/views/data_modes/_finish.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/data_modes/_finish.html.erb -------------------------------------------------------------------------------- /app/views/data_modes/_init.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/data_modes/_init.html.erb -------------------------------------------------------------------------------- /app/views/data_modes/_second.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/data_modes/_second.html.erb -------------------------------------------------------------------------------- /app/views/data_modes/finish.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/data_modes/finish.html.erb -------------------------------------------------------------------------------- /app/views/data_modes/init.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/data_modes/init.html.erb -------------------------------------------------------------------------------- /app/views/data_modes/second.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/data_modes/second.html.erb -------------------------------------------------------------------------------- /app/views/data_modes2/_finish.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/data_modes2/_finish.html.erb -------------------------------------------------------------------------------- /app/views/data_modes2/_init.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/data_modes2/_init.html.erb -------------------------------------------------------------------------------- /app/views/data_modes2/_second.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/data_modes2/_second.html.erb -------------------------------------------------------------------------------- /app/views/data_modes2/finish.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/data_modes2/finish.html.erb -------------------------------------------------------------------------------- /app/views/data_modes2/init.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/data_modes2/init.html.erb -------------------------------------------------------------------------------- /app/views/data_modes2/second.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/data_modes2/second.html.erb -------------------------------------------------------------------------------- /app/views/generated/finish.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/generated/finish.html.erb -------------------------------------------------------------------------------- /app/views/generated/init.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/generated/init.html.erb -------------------------------------------------------------------------------- /app/views/generated/second.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/generated/second.html.erb -------------------------------------------------------------------------------- /app/views/image_submit/finish.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/image_submit/finish.html.erb -------------------------------------------------------------------------------- /app/views/image_submit/init.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/image_submit/init.html.erb -------------------------------------------------------------------------------- /app/views/image_submit/second.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/image_submit/second.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/avatar_session.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/layouts/avatar_session.html.erb -------------------------------------------------------------------------------- /app/views/layouts/callbacks.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/layouts/callbacks.html.erb -------------------------------------------------------------------------------- /app/views/layouts/data_modes.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/layouts/data_modes.html.erb -------------------------------------------------------------------------------- /app/views/layouts/generated.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/layouts/generated.html.erb -------------------------------------------------------------------------------- /app/views/layouts/image_submit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/layouts/image_submit.html.erb -------------------------------------------------------------------------------- /app/views/layouts/sandbox.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/layouts/sandbox.html.erb -------------------------------------------------------------------------------- /app/views/layouts/scaffold_test.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/layouts/scaffold_test.html.erb -------------------------------------------------------------------------------- /app/views/layouts/session.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/layouts/session.html.erb -------------------------------------------------------------------------------- /app/views/macro/finish.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/macro/finish.html.erb -------------------------------------------------------------------------------- /app/views/macro/init.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/macro/init.html.erb -------------------------------------------------------------------------------- /app/views/macro/second.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/macro/second.html.erb -------------------------------------------------------------------------------- /app/views/main/canceled.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/main/canceled.html.erb -------------------------------------------------------------------------------- /app/views/main/finished.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/main/finished.html.erb -------------------------------------------------------------------------------- /app/views/main/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/main/index.html.erb -------------------------------------------------------------------------------- /app/views/main/referrer_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/main/referrer_page.html.erb -------------------------------------------------------------------------------- /app/views/sandbox/finish.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/sandbox/finish.html.erb -------------------------------------------------------------------------------- /app/views/sandbox/init.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/sandbox/init.html.erb -------------------------------------------------------------------------------- /app/views/sandbox/second.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/sandbox/second.html.erb -------------------------------------------------------------------------------- /app/views/sandbox/third.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/sandbox/third.html.erb -------------------------------------------------------------------------------- /app/views/scaffold_test/finish.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/scaffold_test/finish.html.erb -------------------------------------------------------------------------------- /app/views/scaffold_test/init.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/scaffold_test/init.html.erb -------------------------------------------------------------------------------- /app/views/scaffold_test/second.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/scaffold_test/second.html.erb -------------------------------------------------------------------------------- /app/views/session/finish.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/session/finish.html.erb -------------------------------------------------------------------------------- /app/views/session/init.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/session/init.html.erb -------------------------------------------------------------------------------- /app/views/session/second.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/session/second.html.erb -------------------------------------------------------------------------------- /app/views/session/third.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/app/views/session/third.html.erb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/new_rails_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/config/initializers/new_rails_defaults.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/config/routes.rb -------------------------------------------------------------------------------- /db/migrate/20090718171255_create_sessions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/db/migrate/20090718171255_create_sessions.rb -------------------------------------------------------------------------------- /db/migrate/20090718172749_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/db/migrate/20090718172749_create_users.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/db/schema.rb -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- 1 | require 'wizardly' 2 | -------------------------------------------------------------------------------- /lib/generators/wizardly_app/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/generators/wizardly_app/USAGE -------------------------------------------------------------------------------- /lib/generators/wizardly_app/templates/wizardly.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/generators/wizardly_app/templates/wizardly.rake -------------------------------------------------------------------------------- /lib/generators/wizardly_app/wizardly_app_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/generators/wizardly_app/wizardly_app_generator.rb -------------------------------------------------------------------------------- /lib/generators/wizardly_controller/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/generators/wizardly_controller/USAGE -------------------------------------------------------------------------------- /lib/generators/wizardly_controller/templates/controller.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/generators/wizardly_controller/templates/controller.rb.erb -------------------------------------------------------------------------------- /lib/generators/wizardly_controller/templates/helper.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/generators/wizardly_controller/templates/helper.rb.erb -------------------------------------------------------------------------------- /lib/generators/wizardly_controller/wizardly_controller_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/generators/wizardly_controller/wizardly_controller_generator.rb -------------------------------------------------------------------------------- /lib/generators/wizardly_scaffold/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/generators/wizardly_scaffold/USAGE -------------------------------------------------------------------------------- /lib/generators/wizardly_scaffold/templates/form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/generators/wizardly_scaffold/templates/form.html.erb -------------------------------------------------------------------------------- /lib/generators/wizardly_scaffold/templates/form.html.haml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/generators/wizardly_scaffold/templates/form.html.haml.erb -------------------------------------------------------------------------------- /lib/generators/wizardly_scaffold/templates/helper.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/generators/wizardly_scaffold/templates/helper.rb.erb -------------------------------------------------------------------------------- /lib/generators/wizardly_scaffold/templates/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/generators/wizardly_scaffold/templates/images/back.png -------------------------------------------------------------------------------- /lib/generators/wizardly_scaffold/templates/images/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/generators/wizardly_scaffold/templates/images/cancel.png -------------------------------------------------------------------------------- /lib/generators/wizardly_scaffold/templates/images/finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/generators/wizardly_scaffold/templates/images/finish.png -------------------------------------------------------------------------------- /lib/generators/wizardly_scaffold/templates/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/generators/wizardly_scaffold/templates/images/next.png -------------------------------------------------------------------------------- /lib/generators/wizardly_scaffold/templates/images/skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/generators/wizardly_scaffold/templates/images/skip.png -------------------------------------------------------------------------------- /lib/generators/wizardly_scaffold/templates/layout.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/generators/wizardly_scaffold/templates/layout.html.erb -------------------------------------------------------------------------------- /lib/generators/wizardly_scaffold/templates/layout.html.haml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/generators/wizardly_scaffold/templates/layout.html.haml.erb -------------------------------------------------------------------------------- /lib/generators/wizardly_scaffold/templates/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/generators/wizardly_scaffold/templates/style.css -------------------------------------------------------------------------------- /lib/generators/wizardly_scaffold/wizardly_scaffold_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/generators/wizardly_scaffold/wizardly_scaffold_generator.rb -------------------------------------------------------------------------------- /lib/jeffp-wizardly.rb: -------------------------------------------------------------------------------- 1 | require 'wizardly' -------------------------------------------------------------------------------- /lib/validation_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/validation_group.rb -------------------------------------------------------------------------------- /lib/wizardly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/wizardly.rb -------------------------------------------------------------------------------- /lib/wizardly/action_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/wizardly/action_controller.rb -------------------------------------------------------------------------------- /lib/wizardly/wizard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/wizardly/wizard.rb -------------------------------------------------------------------------------- /lib/wizardly/wizard/button.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/wizardly/wizard/button.rb -------------------------------------------------------------------------------- /lib/wizardly/wizard/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/wizardly/wizard/configuration.rb -------------------------------------------------------------------------------- /lib/wizardly/wizard/configuration/methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/wizardly/wizard/configuration/methods.rb -------------------------------------------------------------------------------- /lib/wizardly/wizard/dsl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/wizardly/wizard/dsl.rb -------------------------------------------------------------------------------- /lib/wizardly/wizard/page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/wizardly/wizard/page.rb -------------------------------------------------------------------------------- /lib/wizardly/wizard/text_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/wizardly/wizard/text_helpers.rb -------------------------------------------------------------------------------- /lib/wizardly/wizard/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/lib/wizardly/wizard/utils.rb -------------------------------------------------------------------------------- /public/.gitignore: -------------------------------------------------------------------------------- 1 | system 2 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/public/images/avatar.png -------------------------------------------------------------------------------- /public/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/public/images/rails.png -------------------------------------------------------------------------------- /public/images/wizardly/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/public/images/wizardly/back.png -------------------------------------------------------------------------------- /public/images/wizardly/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/public/images/wizardly/cancel.png -------------------------------------------------------------------------------- /public/images/wizardly/finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/public/images/wizardly/finish.png -------------------------------------------------------------------------------- /public/images/wizardly/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/public/images/wizardly/next.png -------------------------------------------------------------------------------- /public/images/wizardly/skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/public/images/wizardly/skip.png -------------------------------------------------------------------------------- /public/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/public/javascripts/application.js -------------------------------------------------------------------------------- /public/javascripts/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/public/javascripts/controls.js -------------------------------------------------------------------------------- /public/javascripts/dragdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/public/javascripts/dragdrop.js -------------------------------------------------------------------------------- /public/javascripts/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/public/javascripts/effects.js -------------------------------------------------------------------------------- /public/javascripts/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/public/javascripts/prototype.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/stylesheets/scaffold.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/public/stylesheets/scaffold.css -------------------------------------------------------------------------------- /rails_generators/wizardly_app/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/rails_generators/wizardly_app/USAGE -------------------------------------------------------------------------------- /rails_generators/wizardly_app/templates/wizardly.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/rails_generators/wizardly_app/templates/wizardly.rake -------------------------------------------------------------------------------- /rails_generators/wizardly_app/wizardly_app_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/rails_generators/wizardly_app/wizardly_app_generator.rb -------------------------------------------------------------------------------- /rails_generators/wizardly_controller/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/rails_generators/wizardly_controller/USAGE -------------------------------------------------------------------------------- /rails_generators/wizardly_controller/templates/controller.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/rails_generators/wizardly_controller/templates/controller.rb.erb -------------------------------------------------------------------------------- /rails_generators/wizardly_controller/templates/helper.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/rails_generators/wizardly_controller/templates/helper.rb.erb -------------------------------------------------------------------------------- /rails_generators/wizardly_controller/wizardly_controller_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/rails_generators/wizardly_controller/wizardly_controller_generator.rb -------------------------------------------------------------------------------- /rails_generators/wizardly_scaffold/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/rails_generators/wizardly_scaffold/USAGE -------------------------------------------------------------------------------- /rails_generators/wizardly_scaffold/templates/form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/rails_generators/wizardly_scaffold/templates/form.html.erb -------------------------------------------------------------------------------- /rails_generators/wizardly_scaffold/templates/form.html.haml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/rails_generators/wizardly_scaffold/templates/form.html.haml.erb -------------------------------------------------------------------------------- /rails_generators/wizardly_scaffold/templates/helper.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/rails_generators/wizardly_scaffold/templates/helper.rb.erb -------------------------------------------------------------------------------- /rails_generators/wizardly_scaffold/templates/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/rails_generators/wizardly_scaffold/templates/images/back.png -------------------------------------------------------------------------------- /rails_generators/wizardly_scaffold/templates/images/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/rails_generators/wizardly_scaffold/templates/images/cancel.png -------------------------------------------------------------------------------- /rails_generators/wizardly_scaffold/templates/images/finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/rails_generators/wizardly_scaffold/templates/images/finish.png -------------------------------------------------------------------------------- /rails_generators/wizardly_scaffold/templates/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/rails_generators/wizardly_scaffold/templates/images/next.png -------------------------------------------------------------------------------- /rails_generators/wizardly_scaffold/templates/images/skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/rails_generators/wizardly_scaffold/templates/images/skip.png -------------------------------------------------------------------------------- /rails_generators/wizardly_scaffold/templates/layout.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/rails_generators/wizardly_scaffold/templates/layout.html.erb -------------------------------------------------------------------------------- /rails_generators/wizardly_scaffold/templates/layout.html.haml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/rails_generators/wizardly_scaffold/templates/layout.html.haml.erb -------------------------------------------------------------------------------- /rails_generators/wizardly_scaffold/templates/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/rails_generators/wizardly_scaffold/templates/style.css -------------------------------------------------------------------------------- /rails_generators/wizardly_scaffold/wizardly_scaffold_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/rails_generators/wizardly_scaffold/wizardly_scaffold_generator.rb -------------------------------------------------------------------------------- /script/about: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/script/about -------------------------------------------------------------------------------- /script/autospec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/script/autospec -------------------------------------------------------------------------------- /script/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/script/console -------------------------------------------------------------------------------- /script/dbconsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/script/dbconsole -------------------------------------------------------------------------------- /script/destroy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/script/destroy -------------------------------------------------------------------------------- /script/generate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/script/generate -------------------------------------------------------------------------------- /script/performance/benchmarker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/script/performance/benchmarker -------------------------------------------------------------------------------- /script/performance/profiler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/script/performance/profiler -------------------------------------------------------------------------------- /script/plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/script/plugin -------------------------------------------------------------------------------- /script/runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/script/runner -------------------------------------------------------------------------------- /script/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/script/server -------------------------------------------------------------------------------- /script/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/script/spec -------------------------------------------------------------------------------- /script/spec_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/script/spec_server -------------------------------------------------------------------------------- /spec/controllers/callbacks2_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/spec/controllers/callbacks2_spec.rb -------------------------------------------------------------------------------- /spec/controllers/callbacks3_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/spec/controllers/callbacks3_spec.rb -------------------------------------------------------------------------------- /spec/controllers/callbacks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/spec/controllers/callbacks_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/spec/fixtures/users.yml -------------------------------------------------------------------------------- /spec/integrations/avatar_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/spec/integrations/avatar_spec.rb -------------------------------------------------------------------------------- /spec/integrations/avatar_step_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/spec/integrations/avatar_step_helpers.rb -------------------------------------------------------------------------------- /spec/integrations/data_modes2_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/spec/integrations/data_modes2_spec.rb -------------------------------------------------------------------------------- /spec/integrations/data_modes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/spec/integrations/data_modes_spec.rb -------------------------------------------------------------------------------- /spec/integrations/four_step_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/spec/integrations/four_step_helpers.rb -------------------------------------------------------------------------------- /spec/integrations/generated_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/spec/integrations/generated_spec.rb -------------------------------------------------------------------------------- /spec/integrations/macro_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/spec/integrations/macro_spec.rb -------------------------------------------------------------------------------- /spec/integrations/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/spec/integrations/matchers.rb -------------------------------------------------------------------------------- /spec/integrations/sandbox_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/spec/integrations/sandbox_spec.rb -------------------------------------------------------------------------------- /spec/integrations/scaffold_test_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/spec/integrations/scaffold_test_spec.rb -------------------------------------------------------------------------------- /spec/integrations/session_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/spec/integrations/session_spec.rb -------------------------------------------------------------------------------- /spec/integrations/shared_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/spec/integrations/shared_examples.rb -------------------------------------------------------------------------------- /spec/integrations/step_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/spec/integrations/step_helpers.rb -------------------------------------------------------------------------------- /spec/models/user_specd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/spec/models/user_specd.rb -------------------------------------------------------------------------------- /spec/rcov.opts: -------------------------------------------------------------------------------- 1 | --exclude "spec/*,gems/*" 2 | --rails -------------------------------------------------------------------------------- /spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/spec/spec.opts -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/functional/callbacks_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/test/functional/callbacks_controller_test.rb -------------------------------------------------------------------------------- /test/functional/image_submit_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/test/functional/image_submit_controller_test.rb -------------------------------------------------------------------------------- /test/performance/browsing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/test/performance/browsing_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/unit/helpers/callbacks_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/test/unit/helpers/callbacks_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/image_submit_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/test/unit/helpers/image_submit_helper_test.rb -------------------------------------------------------------------------------- /test/unit/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/test/unit/user_test.rb -------------------------------------------------------------------------------- /wizardly.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffp/wizardly/HEAD/wizardly.gemspec --------------------------------------------------------------------------------