├── .dockerignore ├── .env.sample ├── .gitignore ├── .rubocop.yml ├── .rubocop_todo.yml ├── .travis.yml ├── Dockerfile.base ├── Dockerfile.db ├── Dockerfile.dev ├── Dockerfile.front ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── Procfile ├── README.md ├── Rakefile ├── Rakefile.deploy ├── app.json ├── app ├── assets │ ├── images │ │ ├── .keep │ │ ├── Feed-icon.svg │ │ ├── ha4go_icon.png │ │ ├── img_kanazawa.jpg │ │ ├── logo_cfk.png │ │ ├── logotype.png │ │ └── matsu │ │ │ ├── .keep │ │ │ ├── header_item1.png │ │ │ ├── header_item2.png │ │ │ ├── header_item3.png │ │ │ ├── logo.png │ │ │ ├── member.png │ │ │ ├── menu_item01.png │ │ │ ├── nav.gif │ │ │ ├── num_back.png │ │ │ └── sample_thum.jpg │ ├── javascripts │ │ ├── application.js │ │ ├── dashboard.coffee │ │ ├── facebook.js.coffee.erb │ │ ├── matsu │ │ │ ├── html5shiv.js │ │ │ ├── jquery.mmenu.min.js │ │ │ ├── jquery.mobile-menu.js │ │ │ ├── jquery.sidr.min.js │ │ │ └── slidebars.js │ │ ├── project_updates.coffee │ │ ├── projects.coffee │ │ ├── sessions.coffee │ │ ├── skill_quick_add.js │ │ ├── top.coffee │ │ └── users.coffee │ └── stylesheets │ │ ├── application.scss │ │ ├── bootstrap_override.scss │ │ ├── common.scss │ │ ├── dashboard.scss │ │ ├── matsu │ │ ├── _color.scss │ │ ├── _font.scss │ │ ├── jquery.mobile.menu.css │ │ ├── reset.scss │ │ ├── sp_style.scss │ │ └── style.scss │ │ ├── project_updates.scss │ │ ├── projects.scss │ │ ├── sessions.scss │ │ ├── top.scss │ │ └── users.scss ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ ├── .keep │ │ └── sns_publisher.rb │ ├── dashboard_controller.rb │ ├── project_updates_controller.rb │ ├── projects_controller.rb │ ├── sessions_controller.rb │ ├── top_controller.rb │ └── users_controller.rb ├── field_types │ └── array_type.rb ├── helpers │ ├── application_helper.rb │ ├── dashboard_helper.rb │ ├── project_updates_helper.rb │ ├── projects_helper.rb │ ├── seo_helper.rb │ ├── sessions_helper.rb │ ├── sns_helper.rb │ ├── top_helper.rb │ └── users_helper.rb ├── jobs │ └── post_to_sns_job.rb ├── mailers │ ├── .keep │ ├── application_mailer.rb │ └── project_mailer.rb ├── models │ ├── .keep │ ├── app_information.rb │ ├── concerns │ │ └── .keep │ ├── project.rb │ ├── project_update.rb │ ├── project_update_history.rb │ ├── skill.rb │ ├── stage.rb │ └── user.rb ├── uploaders │ ├── comment_image_uploader.rb │ └── image_uploader.rb └── views │ ├── dashboard │ └── index.html.erb │ ├── layouts │ ├── application.html.erb │ ├── mailer.html.erb │ └── mailer.text.erb │ ├── project_mailer │ ├── sendmail_confirm.html.erb │ ├── tell_create.html.erb │ ├── tell_skill_match.html.erb │ └── tell_update.html.erb │ ├── project_updates │ ├── _form.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── projects │ ├── _form.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ ├── show.html.erb │ └── show.rss.builder │ ├── shared │ ├── _facebook.html │ ├── _ogp_common.html.erb │ ├── _ogp_project.html.erb │ ├── _project.html.erb │ └── _twitter.html │ ├── top │ ├── feed.rss.builder │ ├── help.html.erb │ └── index.html.erb │ └── users │ ├── _form.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb ├── bin ├── bundle ├── delayed_job ├── rails ├── rake ├── setup ├── spring └── update ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── database.travis.yml ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── carrierwave.rb │ ├── cookies_serializer.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── kaminari_config.rb │ ├── mime_types.rb │ ├── new_framework_defaults.rb │ ├── omniauth.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ ├── defaults │ │ ├── en.yml │ │ └── ja.yml │ ├── ja.yml │ └── views │ │ ├── dashboard │ │ └── ja.yml │ │ ├── ja.yml │ │ ├── project_mailer │ │ └── ja.yml │ │ ├── project_updates │ │ └── ja.yml │ │ ├── projects │ │ └── ja.yml │ │ ├── top │ │ └── ja.yml │ │ └── users │ │ └── ja.yml ├── puma.rb ├── routes.rb ├── secrets.yml └── spring.rb ├── db ├── migrate │ ├── 20150426023450_create_users.rb │ ├── 20150426023934_create_projects.rb │ ├── 20150426043346_create_project_updates.rb │ ├── 20150426045247_remove_delete_flag_from_users.rb │ ├── 20150426045307_remove_delete_flag_from_projects.rb │ ├── 20150426045313_remove_delete_flag_from_project_updates.rb │ ├── 20150426132854_add_index_email_to_users.rb │ ├── 20150429124203_create_skills.rb │ ├── 20150429130453_create_users_skills.rb │ ├── 20150429131447_add_index_name_to_skills.rb │ ├── 20150429142635_rename_users_skills_to_skills_users.rb │ ├── 20150429143753_create_projects_users.rb │ ├── 20150505025435_create_projects_skills.rb │ ├── 20150505071406_add_column_to_project_update.rb │ ├── 20150606131655_add_column_to_users.rb │ ├── 20150606234005_remove_column_user.rb │ ├── 20150606234247_drop_table_user_session.rb │ ├── 20150607001212_delete_index_user.rb │ ├── 20150607035210_add_column_user.rb │ ├── 20150607104348_add_index_user_id_to_project_users.rb │ ├── 20150614102950_create_stages.rb │ ├── 20150614110547_change_column_to_project.rb │ ├── 20160605183055_change_column2_to_project.rb │ ├── 20160605184658_change_column_to_project_update.rb │ ├── 20160605184821_change_column_to_user.rb │ ├── 20160905094440_change_column_to_project2.rb │ ├── 20161002065824_add_project_to_projects.rb │ ├── 20161008044105_create_project_update_histories.rb │ ├── 20161008063758_add_column_to_project_update2.rb │ ├── 20161106071526_create_app_informations.rb │ ├── 20161106085544_add_receive_all_to_user.rb │ ├── 20161203220548_add_last_commented_at_to_project.rb │ ├── 20170205014850_add_images_to_project.rb │ ├── 20170205093033_add_image_to_project_update.rb │ └── 20170507011046_create_delayed_jobs.rb ├── schema.rb ├── seeds.rb └── seeds │ ├── development.rb │ ├── projects.yml.sample │ └── users.yml.sample ├── docker-compose.yml ├── erd.pdf ├── init.sql ├── lib ├── assets │ └── .keep └── tasks │ ├── .keep │ └── unlock_yml.rake ├── log └── .keep ├── misc └── docker │ └── heroku-deploy │ ├── .gitignore │ └── Dockerfile ├── mysql └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico ├── robots.txt └── uploads │ └── .keep ├── test ├── controllers │ ├── .keep │ ├── dashboard_controller_test.rb │ ├── project_updates_controller_test.rb │ ├── projects_controller_test.rb │ ├── sessions_controller_test.rb │ ├── top_controller_test.rb │ └── users_controller_test.rb ├── fixtures │ ├── .keep │ ├── app_informations.yml │ ├── project_update_histories.yml │ ├── project_updates.yml │ ├── projects.yml │ ├── skills.yml │ ├── stages.yml │ └── users.yml ├── helpers │ └── .keep ├── integration │ └── .keep ├── jobs │ └── post_to_sns_job_test.rb ├── mailers │ ├── .keep │ ├── previews │ │ └── project_mailer_preview.rb │ └── project_mailer_test.rb ├── models │ ├── .keep │ ├── app_information_test.rb │ ├── project_test.rb │ ├── project_update_history_test.rb │ ├── project_update_test.rb │ ├── skill_test.rb │ ├── stage_test.rb │ └── user_test.rb └── test_helper.rb └── vendor └── assets ├── javascripts ├── .keep └── bootstrap.min.js └── stylesheets ├── .keep └── bootstrap.min.css /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/Dockerfile.base -------------------------------------------------------------------------------- /Dockerfile.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/Dockerfile.db -------------------------------------------------------------------------------- /Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/Dockerfile.dev -------------------------------------------------------------------------------- /Dockerfile.front: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/Dockerfile.front -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/Rakefile -------------------------------------------------------------------------------- /Rakefile.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/Rakefile.deploy -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app.json -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/Feed-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/images/Feed-icon.svg -------------------------------------------------------------------------------- /app/assets/images/ha4go_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/images/ha4go_icon.png -------------------------------------------------------------------------------- /app/assets/images/img_kanazawa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/images/img_kanazawa.jpg -------------------------------------------------------------------------------- /app/assets/images/logo_cfk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/images/logo_cfk.png -------------------------------------------------------------------------------- /app/assets/images/logotype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/images/logotype.png -------------------------------------------------------------------------------- /app/assets/images/matsu/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/matsu/header_item1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/images/matsu/header_item1.png -------------------------------------------------------------------------------- /app/assets/images/matsu/header_item2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/images/matsu/header_item2.png -------------------------------------------------------------------------------- /app/assets/images/matsu/header_item3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/images/matsu/header_item3.png -------------------------------------------------------------------------------- /app/assets/images/matsu/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/images/matsu/logo.png -------------------------------------------------------------------------------- /app/assets/images/matsu/member.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/images/matsu/member.png -------------------------------------------------------------------------------- /app/assets/images/matsu/menu_item01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/images/matsu/menu_item01.png -------------------------------------------------------------------------------- /app/assets/images/matsu/nav.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/images/matsu/nav.gif -------------------------------------------------------------------------------- /app/assets/images/matsu/num_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/images/matsu/num_back.png -------------------------------------------------------------------------------- /app/assets/images/matsu/sample_thum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/images/matsu/sample_thum.jpg -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/dashboard.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/javascripts/dashboard.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/facebook.js.coffee.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/javascripts/facebook.js.coffee.erb -------------------------------------------------------------------------------- /app/assets/javascripts/matsu/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/javascripts/matsu/html5shiv.js -------------------------------------------------------------------------------- /app/assets/javascripts/matsu/jquery.mmenu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/javascripts/matsu/jquery.mmenu.min.js -------------------------------------------------------------------------------- /app/assets/javascripts/matsu/jquery.mobile-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/javascripts/matsu/jquery.mobile-menu.js -------------------------------------------------------------------------------- /app/assets/javascripts/matsu/jquery.sidr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/javascripts/matsu/jquery.sidr.min.js -------------------------------------------------------------------------------- /app/assets/javascripts/matsu/slidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/javascripts/matsu/slidebars.js -------------------------------------------------------------------------------- /app/assets/javascripts/project_updates.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/javascripts/project_updates.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/projects.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/javascripts/projects.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/sessions.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/javascripts/sessions.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/skill_quick_add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/javascripts/skill_quick_add.js -------------------------------------------------------------------------------- /app/assets/javascripts/top.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/javascripts/top.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/users.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/javascripts/users.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap_override.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/stylesheets/bootstrap_override.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/stylesheets/common.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/stylesheets/dashboard.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/matsu/_color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/stylesheets/matsu/_color.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/matsu/_font.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/stylesheets/matsu/_font.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/matsu/jquery.mobile.menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/stylesheets/matsu/jquery.mobile.menu.css -------------------------------------------------------------------------------- /app/assets/stylesheets/matsu/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/stylesheets/matsu/reset.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/matsu/sp_style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/stylesheets/matsu/sp_style.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/matsu/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/stylesheets/matsu/style.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/project_updates.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/stylesheets/project_updates.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/projects.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/stylesheets/projects.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/sessions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/stylesheets/sessions.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/top.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/stylesheets/top.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/users.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/assets/stylesheets/users.scss -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/concerns/sns_publisher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/controllers/concerns/sns_publisher.rb -------------------------------------------------------------------------------- /app/controllers/dashboard_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/controllers/dashboard_controller.rb -------------------------------------------------------------------------------- /app/controllers/project_updates_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/controllers/project_updates_controller.rb -------------------------------------------------------------------------------- /app/controllers/projects_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/controllers/projects_controller.rb -------------------------------------------------------------------------------- /app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/top_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/controllers/top_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/field_types/array_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/field_types/array_type.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/dashboard_helper.rb: -------------------------------------------------------------------------------- 1 | module DashboardHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/project_updates_helper.rb: -------------------------------------------------------------------------------- 1 | module ProjectUpdatesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/projects_helper.rb: -------------------------------------------------------------------------------- 1 | module ProjectsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/seo_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/helpers/seo_helper.rb -------------------------------------------------------------------------------- /app/helpers/sessions_helper.rb: -------------------------------------------------------------------------------- 1 | module SessionsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/sns_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/helpers/sns_helper.rb -------------------------------------------------------------------------------- /app/helpers/top_helper.rb: -------------------------------------------------------------------------------- 1 | module TopHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/users_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/helpers/users_helper.rb -------------------------------------------------------------------------------- /app/jobs/post_to_sns_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/jobs/post_to_sns_job.rb -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/mailers/project_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/mailers/project_mailer.rb -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/app_information.rb: -------------------------------------------------------------------------------- 1 | class AppInformation < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/models/project.rb -------------------------------------------------------------------------------- /app/models/project_update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/models/project_update.rb -------------------------------------------------------------------------------- /app/models/project_update_history.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/models/project_update_history.rb -------------------------------------------------------------------------------- /app/models/skill.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/models/skill.rb -------------------------------------------------------------------------------- /app/models/stage.rb: -------------------------------------------------------------------------------- 1 | class Stage < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/uploaders/comment_image_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/uploaders/comment_image_uploader.rb -------------------------------------------------------------------------------- /app/uploaders/image_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/uploaders/image_uploader.rb -------------------------------------------------------------------------------- /app/views/dashboard/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/dashboard/index.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/project_mailer/sendmail_confirm.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/project_mailer/sendmail_confirm.html.erb -------------------------------------------------------------------------------- /app/views/project_mailer/tell_create.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/project_mailer/tell_create.html.erb -------------------------------------------------------------------------------- /app/views/project_mailer/tell_skill_match.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/project_mailer/tell_skill_match.html.erb -------------------------------------------------------------------------------- /app/views/project_mailer/tell_update.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/project_mailer/tell_update.html.erb -------------------------------------------------------------------------------- /app/views/project_updates/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/project_updates/_form.html.erb -------------------------------------------------------------------------------- /app/views/project_updates/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/project_updates/edit.html.erb -------------------------------------------------------------------------------- /app/views/project_updates/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/project_updates/index.html.erb -------------------------------------------------------------------------------- /app/views/project_updates/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/project_updates/new.html.erb -------------------------------------------------------------------------------- /app/views/project_updates/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/project_updates/show.html.erb -------------------------------------------------------------------------------- /app/views/projects/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/projects/_form.html.erb -------------------------------------------------------------------------------- /app/views/projects/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/projects/edit.html.erb -------------------------------------------------------------------------------- /app/views/projects/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/projects/index.html.erb -------------------------------------------------------------------------------- /app/views/projects/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/projects/new.html.erb -------------------------------------------------------------------------------- /app/views/projects/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/projects/show.html.erb -------------------------------------------------------------------------------- /app/views/projects/show.rss.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/projects/show.rss.builder -------------------------------------------------------------------------------- /app/views/shared/_facebook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/shared/_facebook.html -------------------------------------------------------------------------------- /app/views/shared/_ogp_common.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/shared/_ogp_common.html.erb -------------------------------------------------------------------------------- /app/views/shared/_ogp_project.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/shared/_ogp_project.html.erb -------------------------------------------------------------------------------- /app/views/shared/_project.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/shared/_project.html.erb -------------------------------------------------------------------------------- /app/views/shared/_twitter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/shared/_twitter.html -------------------------------------------------------------------------------- /app/views/top/feed.rss.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/top/feed.rss.builder -------------------------------------------------------------------------------- /app/views/top/help.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/top/help.html.erb -------------------------------------------------------------------------------- /app/views/top/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/top/index.html.erb -------------------------------------------------------------------------------- /app/views/users/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/users/_form.html.erb -------------------------------------------------------------------------------- /app/views/users/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/users/edit.html.erb -------------------------------------------------------------------------------- /app/views/users/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/users/index.html.erb -------------------------------------------------------------------------------- /app/views/users/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/users/new.html.erb -------------------------------------------------------------------------------- /app/views/users/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/app/views/users/show.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/delayed_job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/bin/delayed_job -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/bin/update -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/database.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/database.travis.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/carrierwave.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/initializers/carrierwave.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/kaminari_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/initializers/kaminari_config.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/new_framework_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/initializers/new_framework_defaults.rb -------------------------------------------------------------------------------- /config/initializers/omniauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/initializers/omniauth.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/defaults/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/locales/defaults/en.yml -------------------------------------------------------------------------------- /config/locales/defaults/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/locales/defaults/ja.yml -------------------------------------------------------------------------------- /config/locales/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/locales/ja.yml -------------------------------------------------------------------------------- /config/locales/views/dashboard/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/locales/views/dashboard/ja.yml -------------------------------------------------------------------------------- /config/locales/views/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/locales/views/ja.yml -------------------------------------------------------------------------------- /config/locales/views/project_mailer/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/locales/views/project_mailer/ja.yml -------------------------------------------------------------------------------- /config/locales/views/project_updates/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/locales/views/project_updates/ja.yml -------------------------------------------------------------------------------- /config/locales/views/projects/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/locales/views/projects/ja.yml -------------------------------------------------------------------------------- /config/locales/views/top/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/locales/views/top/ja.yml -------------------------------------------------------------------------------- /config/locales/views/users/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/locales/views/users/ja.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/config/spring.rb -------------------------------------------------------------------------------- /db/migrate/20150426023450_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20150426023450_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20150426023934_create_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20150426023934_create_projects.rb -------------------------------------------------------------------------------- /db/migrate/20150426043346_create_project_updates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20150426043346_create_project_updates.rb -------------------------------------------------------------------------------- /db/migrate/20150426045247_remove_delete_flag_from_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20150426045247_remove_delete_flag_from_users.rb -------------------------------------------------------------------------------- /db/migrate/20150426045307_remove_delete_flag_from_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20150426045307_remove_delete_flag_from_projects.rb -------------------------------------------------------------------------------- /db/migrate/20150426045313_remove_delete_flag_from_project_updates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20150426045313_remove_delete_flag_from_project_updates.rb -------------------------------------------------------------------------------- /db/migrate/20150426132854_add_index_email_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20150426132854_add_index_email_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20150429124203_create_skills.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20150429124203_create_skills.rb -------------------------------------------------------------------------------- /db/migrate/20150429130453_create_users_skills.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20150429130453_create_users_skills.rb -------------------------------------------------------------------------------- /db/migrate/20150429131447_add_index_name_to_skills.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20150429131447_add_index_name_to_skills.rb -------------------------------------------------------------------------------- /db/migrate/20150429142635_rename_users_skills_to_skills_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20150429142635_rename_users_skills_to_skills_users.rb -------------------------------------------------------------------------------- /db/migrate/20150429143753_create_projects_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20150429143753_create_projects_users.rb -------------------------------------------------------------------------------- /db/migrate/20150505025435_create_projects_skills.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20150505025435_create_projects_skills.rb -------------------------------------------------------------------------------- /db/migrate/20150505071406_add_column_to_project_update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20150505071406_add_column_to_project_update.rb -------------------------------------------------------------------------------- /db/migrate/20150606131655_add_column_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20150606131655_add_column_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20150606234005_remove_column_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20150606234005_remove_column_user.rb -------------------------------------------------------------------------------- /db/migrate/20150606234247_drop_table_user_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20150606234247_drop_table_user_session.rb -------------------------------------------------------------------------------- /db/migrate/20150607001212_delete_index_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20150607001212_delete_index_user.rb -------------------------------------------------------------------------------- /db/migrate/20150607035210_add_column_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20150607035210_add_column_user.rb -------------------------------------------------------------------------------- /db/migrate/20150607104348_add_index_user_id_to_project_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20150607104348_add_index_user_id_to_project_users.rb -------------------------------------------------------------------------------- /db/migrate/20150614102950_create_stages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20150614102950_create_stages.rb -------------------------------------------------------------------------------- /db/migrate/20150614110547_change_column_to_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20150614110547_change_column_to_project.rb -------------------------------------------------------------------------------- /db/migrate/20160605183055_change_column2_to_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20160605183055_change_column2_to_project.rb -------------------------------------------------------------------------------- /db/migrate/20160605184658_change_column_to_project_update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20160605184658_change_column_to_project_update.rb -------------------------------------------------------------------------------- /db/migrate/20160605184821_change_column_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20160605184821_change_column_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20160905094440_change_column_to_project2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20160905094440_change_column_to_project2.rb -------------------------------------------------------------------------------- /db/migrate/20161002065824_add_project_to_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20161002065824_add_project_to_projects.rb -------------------------------------------------------------------------------- /db/migrate/20161008044105_create_project_update_histories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20161008044105_create_project_update_histories.rb -------------------------------------------------------------------------------- /db/migrate/20161008063758_add_column_to_project_update2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20161008063758_add_column_to_project_update2.rb -------------------------------------------------------------------------------- /db/migrate/20161106071526_create_app_informations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20161106071526_create_app_informations.rb -------------------------------------------------------------------------------- /db/migrate/20161106085544_add_receive_all_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20161106085544_add_receive_all_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20161203220548_add_last_commented_at_to_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20161203220548_add_last_commented_at_to_project.rb -------------------------------------------------------------------------------- /db/migrate/20170205014850_add_images_to_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20170205014850_add_images_to_project.rb -------------------------------------------------------------------------------- /db/migrate/20170205093033_add_image_to_project_update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20170205093033_add_image_to_project_update.rb -------------------------------------------------------------------------------- /db/migrate/20170507011046_create_delayed_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/migrate/20170507011046_create_delayed_jobs.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /db/seeds/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/seeds/development.rb -------------------------------------------------------------------------------- /db/seeds/projects.yml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/seeds/projects.yml.sample -------------------------------------------------------------------------------- /db/seeds/users.yml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/db/seeds/users.yml.sample -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /erd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/erd.pdf -------------------------------------------------------------------------------- /init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/init.sql -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/unlock_yml.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/lib/tasks/unlock_yml.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/docker/heroku-deploy/.gitignore: -------------------------------------------------------------------------------- 1 | heroku_login 2 | -------------------------------------------------------------------------------- /misc/docker/heroku-deploy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/misc/docker/heroku-deploy/Dockerfile -------------------------------------------------------------------------------- /mysql/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/uploads/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/dashboard_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/test/controllers/dashboard_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/project_updates_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/test/controllers/project_updates_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/projects_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/test/controllers/projects_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/sessions_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/test/controllers/sessions_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/top_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/test/controllers/top_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/users_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/test/controllers/users_controller_test.rb -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/app_informations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/test/fixtures/app_informations.yml -------------------------------------------------------------------------------- /test/fixtures/project_update_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/test/fixtures/project_update_histories.yml -------------------------------------------------------------------------------- /test/fixtures/project_updates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/test/fixtures/project_updates.yml -------------------------------------------------------------------------------- /test/fixtures/projects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/test/fixtures/projects.yml -------------------------------------------------------------------------------- /test/fixtures/skills.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/test/fixtures/skills.yml -------------------------------------------------------------------------------- /test/fixtures/stages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/test/fixtures/stages.yml -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/jobs/post_to_sns_job_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/test/jobs/post_to_sns_job_test.rb -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/previews/project_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/test/mailers/previews/project_mailer_preview.rb -------------------------------------------------------------------------------- /test/mailers/project_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/test/mailers/project_mailer_test.rb -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/app_information_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/test/models/app_information_test.rb -------------------------------------------------------------------------------- /test/models/project_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/test/models/project_test.rb -------------------------------------------------------------------------------- /test/models/project_update_history_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/test/models/project_update_history_test.rb -------------------------------------------------------------------------------- /test/models/project_update_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/test/models/project_update_test.rb -------------------------------------------------------------------------------- /test/models/skill_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/test/models/skill_test.rb -------------------------------------------------------------------------------- /test/models/stage_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/test/models/stage_test.rb -------------------------------------------------------------------------------- /test/models/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/test/models/user_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/vendor/assets/javascripts/bootstrap.min.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforkanazawa-org/ha4go/HEAD/vendor/assets/stylesheets/bootstrap.min.css --------------------------------------------------------------------------------