├── meetup ├── log │ └── .keep ├── app │ ├── models │ │ ├── .keep │ │ ├── concerns │ │ │ └── .keep │ │ ├── issue.rb │ │ └── comment.rb │ ├── mailers │ │ └── .keep │ ├── controllers │ │ ├── concerns │ │ │ └── .keep │ │ ├── page_controller.rb │ │ ├── application_controller.rb │ │ ├── comments_controller.rb │ │ └── issues_controller.rb │ ├── helpers │ │ └── application_helper.rb │ ├── views │ │ ├── issues │ │ │ ├── edit.html.erb │ │ │ ├── new.html.erb │ │ │ ├── _form.html.erb │ │ │ └── show.html.erb │ │ ├── page │ │ │ ├── about.html.erb │ │ │ ├── welcome.html.erb │ │ │ └── _issue_list.html.erb │ │ ├── shared │ │ │ ├── _comment_list.html.erb │ │ │ └── _comment_box.html.erb │ │ └── layouts │ │ │ └── application.html.erb │ └── assets │ │ ├── images │ │ ├── default_avatar.png │ │ └── home-banner-bg.jpg │ │ ├── stylesheets │ │ ├── sections │ │ │ ├── issue_new.css.scss │ │ │ ├── layout.css.scss │ │ │ ├── issue_show.css.scss │ │ │ └── welcome.css.scss │ │ ├── application.css │ │ └── shared │ │ │ └── common.css.scss │ │ └── javascripts │ │ ├── application.js │ │ └── vendor │ │ └── jquery.anystretch.min.js ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ └── .keep ├── public │ ├── favicon.ico │ ├── robots.txt │ ├── 500.html │ ├── 422.html │ └── 404.html ├── test │ ├── fixtures │ │ └── .keep │ ├── helpers │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ └── .keep │ ├── controllers │ │ └── .keep │ ├── integration │ │ └── .keep │ └── test_helper.rb ├── vendor │ └── assets │ │ ├── javascripts │ │ └── .keep │ │ └── stylesheets │ │ └── .keep ├── bin │ ├── bundle │ ├── rake │ ├── rails │ └── spring ├── config.ru ├── config │ ├── initializers │ │ ├── cookies_serializer.rb │ │ ├── session_store.rb │ │ ├── mime_types.rb │ │ ├── filter_parameter_logging.rb │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── wrap_parameters.rb │ │ └── inflections.rb │ ├── environment.rb │ ├── boot.rb │ ├── locales │ │ └── en.yml │ ├── secrets.yml │ ├── application.rb │ ├── environments │ │ ├── development.rb │ │ ├── test.rb │ │ └── production.rb │ ├── database.yml │ └── routes.rb ├── db │ ├── migrate │ │ ├── 20141106033327_add_content_to_issues.rb │ │ ├── 20141105032146_create_issues.rb │ │ └── 20141109034315_create_comments.rb │ ├── seeds.rb │ └── schema.rb ├── Rakefile ├── .gitignore ├── README.rdoc ├── Gemfile └── Gemfile.lock ├── README.md └── Vagrantfile /meetup/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meetup/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meetup/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meetup/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meetup/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meetup/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meetup/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meetup/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meetup/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meetup/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meetup/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meetup/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meetup/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meetup/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meetup/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meetup/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meetup/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /meetup/app/models/issue.rb: -------------------------------------------------------------------------------- 1 | class Issue < ActiveRecord::Base 2 | has_many :comments 3 | end 4 | -------------------------------------------------------------------------------- /meetup/app/views/issues/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render partial: 'form', locals: {issue: @issue} %> 2 | -------------------------------------------------------------------------------- /meetup/app/views/issues/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render partial: 'form', locals: {issue: @issue} %> 2 | -------------------------------------------------------------------------------- /meetup/app/views/page/about.html.erb: -------------------------------------------------------------------------------- 1 | 2 |
<%= f.submit :class => "submit-issue-button btn btn-primary" %>
13 | <% end %> 14 |If you are the application owner check the logs for more information.
64 |Maybe you tried to change something you didn't have access to.
63 |If you are the application owner check the logs for more information.
65 |You may have mistyped the address or the page may have moved.
63 |If you are the application owner check the logs for more information.
65 |