├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── MIT-LICENSE ├── README.md ├── Rakefile ├── actionform.gemspec ├── app └── assets │ └── javascripts │ └── action_form.js ├── lib ├── action_form.rb ├── action_form │ ├── base.rb │ ├── form.rb │ ├── form_collection.rb │ ├── form_definition.rb │ ├── form_helpers.rb │ ├── too_many_records.rb │ ├── version.rb │ └── view_helpers.rb ├── rails │ └── generators │ │ └── form │ │ ├── form_generator.rb │ │ ├── form_install_generator.rb │ │ └── templates │ │ └── form.rb └── tasks │ └── action_form_tasks.rake └── test ├── action_form_test.rb ├── dummy ├── README.rdoc ├── Rakefile ├── app │ ├── assets │ │ ├── images │ │ │ └── .keep │ │ ├── javascripts │ │ │ ├── application.js │ │ │ └── projects.js │ │ └── stylesheets │ │ │ └── application.css │ ├── controllers │ │ ├── application_controller.rb │ │ ├── assignments_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── conferences_controller.rb │ │ ├── projects_controller.rb │ │ ├── songs_controller.rb │ │ ├── surveys_controller.rb │ │ └── users_controller.rb │ ├── forms │ │ ├── assignment_form.rb │ │ ├── conference_form.rb │ │ ├── project_form.rb │ │ ├── song_form.rb │ │ ├── survey_form.rb │ │ └── user_form.rb │ ├── helpers │ │ ├── application_helper.rb │ │ ├── assignments_helper.rb │ │ ├── conferences_helper.rb │ │ ├── projects_helper.rb │ │ ├── songs_helper.rb │ │ ├── surveys_helper.rb │ │ └── users_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ ├── answer.rb │ │ ├── artist.rb │ │ ├── assignment.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── conference.rb │ │ ├── email.rb │ │ ├── person.rb │ │ ├── presentation.rb │ │ ├── producer.rb │ │ ├── profile.rb │ │ ├── project.rb │ │ ├── project_tag.rb │ │ ├── question.rb │ │ ├── song.rb │ │ ├── speaker.rb │ │ ├── sub_task.rb │ │ ├── survey.rb │ │ ├── tag.rb │ │ ├── task.rb │ │ └── user.rb │ └── views │ │ ├── assignments │ │ ├── _form.html.erb │ │ ├── _task_fields.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ │ ├── conferences │ │ ├── _form.html.erb │ │ ├── _presentation_fields.html.erb │ │ ├── _speaker.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ │ ├── layouts │ │ └── application.html.erb │ │ ├── projects │ │ ├── _contributor_fields.html.erb │ │ ├── _form.html.erb │ │ ├── _owner_fields.html.erb │ │ ├── _project_tag_fields.html.erb │ │ ├── _sub_task_fields.html.erb │ │ ├── _tag_fields.html.erb │ │ ├── _task_fields.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ │ ├── songs │ │ ├── _artist.html.erb │ │ ├── _form.html.erb │ │ ├── _producer.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ │ ├── surveys │ │ ├── _answer_fields.html.erb │ │ ├── _form.html.erb │ │ ├── _question_fields.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ │ └── users │ │ ├── _email.html.erb │ │ ├── _form.html.erb │ │ ├── _profile.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb ├── bin │ ├── bundle │ ├── rails │ └── rake ├── 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 │ │ ├── gender.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ ├── simple_form.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ ├── en.yml │ │ └── simple_form.en.yml │ ├── routes.rb │ └── secrets.yml ├── db │ ├── migrate │ │ ├── 20140729162110_create_users.rb │ │ ├── 20140729162246_create_emails.rb │ │ ├── 20140729162335_create_profiles.rb │ │ ├── 20140729164623_create_songs.rb │ │ ├── 20140729164653_create_artists.rb │ │ ├── 20140729164713_create_producers.rb │ │ ├── 20140729165425_create_conferences.rb │ │ ├── 20140729165445_create_speakers.rb │ │ ├── 20140729165506_create_presentations.rb │ │ ├── 20140729170014_create_surveys.rb │ │ ├── 20140729170034_create_questions.rb │ │ ├── 20140729170112_create_answers.rb │ │ ├── 20140806122636_create_projects.rb │ │ ├── 20140806122735_create_tasks.rb │ │ ├── 20140806122805_create_sub_tasks.rb │ │ ├── 20140806122834_create_people.rb │ │ ├── 20140806122911_add_owner_to_projects.rb │ │ ├── 20140806122945_create_tags.rb │ │ ├── 20140806123008_create_project_tags.rb │ │ ├── 20140820071344_create_assignments.rb │ │ └── 20140821074917_add_assignment_ref_to_tasks.rb │ └── schema.rb ├── lib │ ├── act_as_gendered.rb │ ├── assets │ │ └── .keep │ └── templates │ │ └── erb │ │ └── scaffold │ │ └── _form.html.erb ├── log │ └── .keep ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ └── favicon.ico └── test │ ├── controllers │ ├── assignments_controller_test.rb │ ├── conferences_controller_test.rb │ ├── projects_controller_test.rb │ ├── songs_controller_test.rb │ ├── surveys_controller_test.rb │ └── users_controller_test.rb │ ├── fixtures │ ├── answers.yml │ ├── artists.yml │ ├── assignments.yml │ ├── conferences.yml │ ├── demo.txt │ ├── emails.yml │ ├── people.yml │ ├── presentations.yml │ ├── producers.yml │ ├── profiles.yml │ ├── project_tags.yml │ ├── projects.yml │ ├── questions.yml │ ├── songs.yml │ ├── speakers.yml │ ├── sub_tasks.yml │ ├── surveys.yml │ ├── tags.yml │ ├── tasks.yml │ └── users.yml │ ├── helpers │ ├── assignments_helper_test.rb │ ├── conferences_helper_test.rb │ ├── projects_helper_test.rb │ ├── songs_helper_test.rb │ ├── surveys_helper_test.rb │ └── users_helper_test.rb │ └── models │ ├── answer_test.rb │ ├── artist_test.rb │ ├── assignment_test.rb │ ├── conference_test.rb │ ├── email_test.rb │ ├── person_test.rb │ ├── presentation_test.rb │ ├── producer_test.rb │ ├── profile_test.rb │ ├── project_tag_test.rb │ ├── project_test.rb │ ├── question_test.rb │ ├── song_test.rb │ ├── speaker_test.rb │ ├── sub_task_test.rb │ ├── survey_test.rb │ ├── tag_test.rb │ ├── task_test.rb │ └── user_test.rb ├── fixtures ├── user_form_fixture.rb └── user_with_email_form_fixture.rb ├── forms ├── conference_form_test.rb ├── nested_model_form_test.rb ├── nested_model_rendering_test.rb ├── nested_models_form_test.rb ├── poro_form_fixture.rb ├── poro_form_test.rb ├── project_form_test.rb ├── single_model_form_test.rb ├── two_nested_collections_form_test.rb └── two_nesting_level_form_test.rb ├── generators ├── form_generator_test.rb └── form_install_generator_test.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/Rakefile -------------------------------------------------------------------------------- /actionform.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/actionform.gemspec -------------------------------------------------------------------------------- /app/assets/javascripts/action_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/app/assets/javascripts/action_form.js -------------------------------------------------------------------------------- /lib/action_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/lib/action_form.rb -------------------------------------------------------------------------------- /lib/action_form/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/lib/action_form/base.rb -------------------------------------------------------------------------------- /lib/action_form/form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/lib/action_form/form.rb -------------------------------------------------------------------------------- /lib/action_form/form_collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/lib/action_form/form_collection.rb -------------------------------------------------------------------------------- /lib/action_form/form_definition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/lib/action_form/form_definition.rb -------------------------------------------------------------------------------- /lib/action_form/form_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/lib/action_form/form_helpers.rb -------------------------------------------------------------------------------- /lib/action_form/too_many_records.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/lib/action_form/too_many_records.rb -------------------------------------------------------------------------------- /lib/action_form/version.rb: -------------------------------------------------------------------------------- 1 | module ActionForm 2 | VERSION = "0.0.1" 3 | end 4 | -------------------------------------------------------------------------------- /lib/action_form/view_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/lib/action_form/view_helpers.rb -------------------------------------------------------------------------------- /lib/rails/generators/form/form_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/lib/rails/generators/form/form_generator.rb -------------------------------------------------------------------------------- /lib/rails/generators/form/form_install_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/lib/rails/generators/form/form_install_generator.rb -------------------------------------------------------------------------------- /lib/rails/generators/form/templates/form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/lib/rails/generators/form/templates/form.rb -------------------------------------------------------------------------------- /lib/tasks/action_form_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/lib/tasks/action_form_tasks.rake -------------------------------------------------------------------------------- /test/action_form_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/action_form_test.rb -------------------------------------------------------------------------------- /test/dummy/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/README.rdoc -------------------------------------------------------------------------------- /test/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/Rakefile -------------------------------------------------------------------------------- /test/dummy/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/assets/javascripts/projects.js -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /test/dummy/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/assignments_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/controllers/assignments_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/controllers/conferences_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/controllers/conferences_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/projects_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/controllers/projects_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/songs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/controllers/songs_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/surveys_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/controllers/surveys_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/forms/assignment_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/forms/assignment_form.rb -------------------------------------------------------------------------------- /test/dummy/app/forms/conference_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/forms/conference_form.rb -------------------------------------------------------------------------------- /test/dummy/app/forms/project_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/forms/project_form.rb -------------------------------------------------------------------------------- /test/dummy/app/forms/song_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/forms/song_form.rb -------------------------------------------------------------------------------- /test/dummy/app/forms/survey_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/forms/survey_form.rb -------------------------------------------------------------------------------- /test/dummy/app/forms/user_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/forms/user_form.rb -------------------------------------------------------------------------------- /test/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/helpers/assignments_helper.rb: -------------------------------------------------------------------------------- 1 | module AssignmentsHelper 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/helpers/conferences_helper.rb: -------------------------------------------------------------------------------- 1 | module ConferencesHelper 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/helpers/projects_helper.rb: -------------------------------------------------------------------------------- 1 | module ProjectsHelper 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/helpers/songs_helper.rb: -------------------------------------------------------------------------------- 1 | module SongsHelper 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/helpers/surveys_helper.rb: -------------------------------------------------------------------------------- 1 | module SurveysHelper 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/helpers/users_helper.rb: -------------------------------------------------------------------------------- 1 | module UsersHelper 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/models/answer.rb: -------------------------------------------------------------------------------- 1 | class Answer < ActiveRecord::Base 2 | belongs_to :question 3 | end 4 | -------------------------------------------------------------------------------- /test/dummy/app/models/artist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/models/artist.rb -------------------------------------------------------------------------------- /test/dummy/app/models/assignment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/models/assignment.rb -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/models/conference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/models/conference.rb -------------------------------------------------------------------------------- /test/dummy/app/models/email.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/models/email.rb -------------------------------------------------------------------------------- /test/dummy/app/models/person.rb: -------------------------------------------------------------------------------- 1 | class Person < ActiveRecord::Base 2 | belongs_to :project 3 | end 4 | -------------------------------------------------------------------------------- /test/dummy/app/models/presentation.rb: -------------------------------------------------------------------------------- 1 | class Presentation < ActiveRecord::Base 2 | belongs_to :speaker 3 | end 4 | -------------------------------------------------------------------------------- /test/dummy/app/models/producer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/models/producer.rb -------------------------------------------------------------------------------- /test/dummy/app/models/profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/models/profile.rb -------------------------------------------------------------------------------- /test/dummy/app/models/project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/models/project.rb -------------------------------------------------------------------------------- /test/dummy/app/models/project_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/models/project_tag.rb -------------------------------------------------------------------------------- /test/dummy/app/models/question.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/models/question.rb -------------------------------------------------------------------------------- /test/dummy/app/models/song.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/models/song.rb -------------------------------------------------------------------------------- /test/dummy/app/models/speaker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/models/speaker.rb -------------------------------------------------------------------------------- /test/dummy/app/models/sub_task.rb: -------------------------------------------------------------------------------- 1 | class SubTask < ActiveRecord::Base 2 | belongs_to :task 3 | end 4 | -------------------------------------------------------------------------------- /test/dummy/app/models/survey.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/models/survey.rb -------------------------------------------------------------------------------- /test/dummy/app/models/tag.rb: -------------------------------------------------------------------------------- 1 | class Tag < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/models/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/models/task.rb -------------------------------------------------------------------------------- /test/dummy/app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/models/user.rb -------------------------------------------------------------------------------- /test/dummy/app/views/assignments/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/assignments/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/assignments/_task_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/assignments/_task_fields.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/assignments/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/assignments/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/assignments/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/assignments/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/assignments/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/assignments/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/assignments/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/assignments/show.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/conferences/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/conferences/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/conferences/_presentation_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/conferences/_presentation_fields.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/conferences/_speaker.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/conferences/_speaker.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/conferences/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/conferences/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/conferences/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/conferences/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/conferences/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/conferences/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/conferences/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/conferences/show.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/projects/_contributor_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/projects/_contributor_fields.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/projects/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/projects/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/projects/_owner_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/projects/_owner_fields.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/projects/_project_tag_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/projects/_project_tag_fields.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/projects/_sub_task_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/projects/_sub_task_fields.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/projects/_tag_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/projects/_tag_fields.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/projects/_task_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/projects/_task_fields.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/projects/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/projects/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/projects/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/projects/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/projects/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/projects/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/projects/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/projects/show.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/songs/_artist.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/songs/_artist.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/songs/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/songs/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/songs/_producer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/songs/_producer.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/songs/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/songs/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/songs/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/songs/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/songs/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/songs/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/songs/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/songs/show.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/surveys/_answer_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/surveys/_answer_fields.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/surveys/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/surveys/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/surveys/_question_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/surveys/_question_fields.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/surveys/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/surveys/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/surveys/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/surveys/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/surveys/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/surveys/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/surveys/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/surveys/show.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/users/_email.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/users/_email.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/users/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/users/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/users/_profile.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/users/_profile.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/users/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/users/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/users/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/users/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/users/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/users/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/users/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/app/views/users/show.html.erb -------------------------------------------------------------------------------- /test/dummy/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/bin/bundle -------------------------------------------------------------------------------- /test/dummy/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/bin/rails -------------------------------------------------------------------------------- /test/dummy/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/bin/rake -------------------------------------------------------------------------------- /test/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/config.ru -------------------------------------------------------------------------------- /test/dummy/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/config/application.rb -------------------------------------------------------------------------------- /test/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/config/boot.rb -------------------------------------------------------------------------------- /test/dummy/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/config/database.yml -------------------------------------------------------------------------------- /test/dummy/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/config/environment.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/config/environments/development.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/config/environments/production.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/config/environments/test.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/config/initializers/assets.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/gender.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/config/initializers/gender.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/config/initializers/inflections.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/config/initializers/session_store.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /test/dummy/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/config/locales/en.yml -------------------------------------------------------------------------------- /test/dummy/config/locales/simple_form.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/config/locales/simple_form.en.yml -------------------------------------------------------------------------------- /test/dummy/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/config/routes.rb -------------------------------------------------------------------------------- /test/dummy/config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/config/secrets.yml -------------------------------------------------------------------------------- /test/dummy/db/migrate/20140729162110_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/db/migrate/20140729162110_create_users.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20140729162246_create_emails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/db/migrate/20140729162246_create_emails.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20140729162335_create_profiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/db/migrate/20140729162335_create_profiles.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20140729164623_create_songs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/db/migrate/20140729164623_create_songs.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20140729164653_create_artists.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/db/migrate/20140729164653_create_artists.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20140729164713_create_producers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/db/migrate/20140729164713_create_producers.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20140729165425_create_conferences.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/db/migrate/20140729165425_create_conferences.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20140729165445_create_speakers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/db/migrate/20140729165445_create_speakers.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20140729165506_create_presentations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/db/migrate/20140729165506_create_presentations.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20140729170014_create_surveys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/db/migrate/20140729170014_create_surveys.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20140729170034_create_questions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/db/migrate/20140729170034_create_questions.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20140729170112_create_answers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/db/migrate/20140729170112_create_answers.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20140806122636_create_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/db/migrate/20140806122636_create_projects.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20140806122735_create_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/db/migrate/20140806122735_create_tasks.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20140806122805_create_sub_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/db/migrate/20140806122805_create_sub_tasks.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20140806122834_create_people.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/db/migrate/20140806122834_create_people.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20140806122911_add_owner_to_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/db/migrate/20140806122911_add_owner_to_projects.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20140806122945_create_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/db/migrate/20140806122945_create_tags.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20140806123008_create_project_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/db/migrate/20140806123008_create_project_tags.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20140820071344_create_assignments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/db/migrate/20140820071344_create_assignments.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20140821074917_add_assignment_ref_to_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/db/migrate/20140821074917_add_assignment_ref_to_tasks.rb -------------------------------------------------------------------------------- /test/dummy/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/db/schema.rb -------------------------------------------------------------------------------- /test/dummy/lib/act_as_gendered.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/lib/act_as_gendered.rb -------------------------------------------------------------------------------- /test/dummy/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/lib/templates/erb/scaffold/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/lib/templates/erb/scaffold/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/public/404.html -------------------------------------------------------------------------------- /test/dummy/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/public/422.html -------------------------------------------------------------------------------- /test/dummy/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/public/500.html -------------------------------------------------------------------------------- /test/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/test/controllers/assignments_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/controllers/assignments_controller_test.rb -------------------------------------------------------------------------------- /test/dummy/test/controllers/conferences_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/controllers/conferences_controller_test.rb -------------------------------------------------------------------------------- /test/dummy/test/controllers/projects_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/controllers/projects_controller_test.rb -------------------------------------------------------------------------------- /test/dummy/test/controllers/songs_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/controllers/songs_controller_test.rb -------------------------------------------------------------------------------- /test/dummy/test/controllers/surveys_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/controllers/surveys_controller_test.rb -------------------------------------------------------------------------------- /test/dummy/test/controllers/users_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/controllers/users_controller_test.rb -------------------------------------------------------------------------------- /test/dummy/test/fixtures/answers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/fixtures/answers.yml -------------------------------------------------------------------------------- /test/dummy/test/fixtures/artists.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/fixtures/artists.yml -------------------------------------------------------------------------------- /test/dummy/test/fixtures/assignments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/fixtures/assignments.yml -------------------------------------------------------------------------------- /test/dummy/test/fixtures/conferences.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/fixtures/conferences.yml -------------------------------------------------------------------------------- /test/dummy/test/fixtures/demo.txt: -------------------------------------------------------------------------------- 1 | 123 2 | -------------------------------------------------------------------------------- /test/dummy/test/fixtures/emails.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/fixtures/emails.yml -------------------------------------------------------------------------------- /test/dummy/test/fixtures/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/fixtures/people.yml -------------------------------------------------------------------------------- /test/dummy/test/fixtures/presentations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/fixtures/presentations.yml -------------------------------------------------------------------------------- /test/dummy/test/fixtures/producers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/fixtures/producers.yml -------------------------------------------------------------------------------- /test/dummy/test/fixtures/profiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/fixtures/profiles.yml -------------------------------------------------------------------------------- /test/dummy/test/fixtures/project_tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/fixtures/project_tags.yml -------------------------------------------------------------------------------- /test/dummy/test/fixtures/projects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/fixtures/projects.yml -------------------------------------------------------------------------------- /test/dummy/test/fixtures/questions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/fixtures/questions.yml -------------------------------------------------------------------------------- /test/dummy/test/fixtures/songs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/fixtures/songs.yml -------------------------------------------------------------------------------- /test/dummy/test/fixtures/speakers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/fixtures/speakers.yml -------------------------------------------------------------------------------- /test/dummy/test/fixtures/sub_tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/fixtures/sub_tasks.yml -------------------------------------------------------------------------------- /test/dummy/test/fixtures/surveys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/fixtures/surveys.yml -------------------------------------------------------------------------------- /test/dummy/test/fixtures/tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/fixtures/tags.yml -------------------------------------------------------------------------------- /test/dummy/test/fixtures/tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/fixtures/tasks.yml -------------------------------------------------------------------------------- /test/dummy/test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/dummy/test/helpers/assignments_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/helpers/assignments_helper_test.rb -------------------------------------------------------------------------------- /test/dummy/test/helpers/conferences_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/helpers/conferences_helper_test.rb -------------------------------------------------------------------------------- /test/dummy/test/helpers/projects_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/helpers/projects_helper_test.rb -------------------------------------------------------------------------------- /test/dummy/test/helpers/songs_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/helpers/songs_helper_test.rb -------------------------------------------------------------------------------- /test/dummy/test/helpers/surveys_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/helpers/surveys_helper_test.rb -------------------------------------------------------------------------------- /test/dummy/test/helpers/users_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/helpers/users_helper_test.rb -------------------------------------------------------------------------------- /test/dummy/test/models/answer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/models/answer_test.rb -------------------------------------------------------------------------------- /test/dummy/test/models/artist_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/models/artist_test.rb -------------------------------------------------------------------------------- /test/dummy/test/models/assignment_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/models/assignment_test.rb -------------------------------------------------------------------------------- /test/dummy/test/models/conference_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/models/conference_test.rb -------------------------------------------------------------------------------- /test/dummy/test/models/email_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/models/email_test.rb -------------------------------------------------------------------------------- /test/dummy/test/models/person_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/models/person_test.rb -------------------------------------------------------------------------------- /test/dummy/test/models/presentation_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/models/presentation_test.rb -------------------------------------------------------------------------------- /test/dummy/test/models/producer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/models/producer_test.rb -------------------------------------------------------------------------------- /test/dummy/test/models/profile_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/models/profile_test.rb -------------------------------------------------------------------------------- /test/dummy/test/models/project_tag_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/models/project_tag_test.rb -------------------------------------------------------------------------------- /test/dummy/test/models/project_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/models/project_test.rb -------------------------------------------------------------------------------- /test/dummy/test/models/question_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/models/question_test.rb -------------------------------------------------------------------------------- /test/dummy/test/models/song_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/models/song_test.rb -------------------------------------------------------------------------------- /test/dummy/test/models/speaker_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/models/speaker_test.rb -------------------------------------------------------------------------------- /test/dummy/test/models/sub_task_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/models/sub_task_test.rb -------------------------------------------------------------------------------- /test/dummy/test/models/survey_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/models/survey_test.rb -------------------------------------------------------------------------------- /test/dummy/test/models/tag_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/models/tag_test.rb -------------------------------------------------------------------------------- /test/dummy/test/models/task_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/models/task_test.rb -------------------------------------------------------------------------------- /test/dummy/test/models/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/dummy/test/models/user_test.rb -------------------------------------------------------------------------------- /test/fixtures/user_form_fixture.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/fixtures/user_form_fixture.rb -------------------------------------------------------------------------------- /test/fixtures/user_with_email_form_fixture.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/fixtures/user_with_email_form_fixture.rb -------------------------------------------------------------------------------- /test/forms/conference_form_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/forms/conference_form_test.rb -------------------------------------------------------------------------------- /test/forms/nested_model_form_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/forms/nested_model_form_test.rb -------------------------------------------------------------------------------- /test/forms/nested_model_rendering_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/forms/nested_model_rendering_test.rb -------------------------------------------------------------------------------- /test/forms/nested_models_form_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/forms/nested_models_form_test.rb -------------------------------------------------------------------------------- /test/forms/poro_form_fixture.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/forms/poro_form_fixture.rb -------------------------------------------------------------------------------- /test/forms/poro_form_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/forms/poro_form_test.rb -------------------------------------------------------------------------------- /test/forms/project_form_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/forms/project_form_test.rb -------------------------------------------------------------------------------- /test/forms/single_model_form_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/forms/single_model_form_test.rb -------------------------------------------------------------------------------- /test/forms/two_nested_collections_form_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/forms/two_nested_collections_form_test.rb -------------------------------------------------------------------------------- /test/forms/two_nesting_level_form_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/forms/two_nesting_level_form_test.rb -------------------------------------------------------------------------------- /test/generators/form_generator_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/generators/form_generator_test.rb -------------------------------------------------------------------------------- /test/generators/form_install_generator_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/generators/form_install_generator_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsgsoc/actionform/HEAD/test/test_helper.rb --------------------------------------------------------------------------------