├── .gitignore ├── .hgignore ├── .lighttable ├── .ruby-version ├── .travis.yml ├── Capfile ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── INSTALL.md ├── LICENSE.txt ├── README.md ├── Rakefile ├── TODO.md ├── app ├── assets │ ├── images │ │ ├── anonymous.png │ │ ├── bad.gif │ │ ├── cup.jpg │ │ ├── favicon.ico │ │ ├── good.gif │ │ ├── happy-iphone.gif │ │ ├── happy.gif │ │ ├── icons │ │ │ └── like.png │ │ ├── mail_back.gif │ │ ├── overlay.png │ │ ├── qiushi │ │ │ ├── bad.gif │ │ │ ├── good.gif │ │ │ ├── h2bg.gif │ │ │ ├── icons.gif │ │ │ ├── icons.png │ │ │ ├── line.gif │ │ │ ├── logo.jpg │ │ │ ├── mainbg.jpg │ │ │ ├── qiushibaike.png │ │ │ ├── spacer.gif │ │ │ └── uc-logo.gif │ │ ├── rails.png │ │ └── trash.gif │ ├── javascripts │ │ ├── application.js │ │ ├── comment.js.coffee │ │ ├── dist │ │ │ ├── admin.js │ │ │ └── modernizr.min.js │ │ └── ratings.js.coffee │ └── stylesheets │ │ ├── application.css.scss │ │ ├── article.css │ │ ├── comment.css │ │ ├── dist │ │ └── admin.css.scss │ │ ├── images │ │ ├── ajax-loader.gif │ │ ├── ajax-loader.png │ │ ├── icons-18-black.png │ │ ├── icons-18-white.png │ │ ├── icons-36-black.png │ │ └── icons-36-white.png │ │ ├── jquery.timePicker.css │ │ ├── ratings.css.scss │ │ └── style.css ├── controllers │ ├── admin │ │ ├── announcements_controller.rb │ │ ├── articles_controller.rb │ │ ├── badges_controller.rb │ │ ├── base_controller.rb │ │ ├── comments_controller.rb │ │ ├── configurations_controller.rb │ │ ├── dashboard_controller.rb │ │ ├── groups_controller.rb │ │ ├── invitation_codes_controller.rb │ │ ├── pages_controller.rb │ │ ├── reports_controller.rb │ │ ├── settings_controller.rb │ │ ├── statistic_controller.rb │ │ ├── tags_controller.rb │ │ ├── themes_controller.rb │ │ ├── ticket_types_controller.rb │ │ └── users_controller.rb │ ├── application_controller.rb │ ├── archives_controller.rb │ ├── articles_controller.rb │ ├── badges_controller.rb │ ├── balances_controller.rb │ ├── comments_controller.rb │ ├── favorites_controller.rb │ ├── groups_controller.rb │ ├── invitation_codes_controller.rb │ ├── list_items_controller.rb │ ├── lists_controller.rb │ ├── messages_controller.rb │ ├── metadatas_controller.rb │ ├── my_controller.rb │ ├── notifications_controller.rb │ ├── oauth_clients_controller.rb │ ├── oauth_controller.rb │ ├── pages_controller.rb │ ├── posts_controller.rb │ ├── profiles_controller.rb │ ├── ratings_controller.rb │ ├── salaries_controller.rb │ ├── sessions_controller.rb │ ├── tags │ │ └── articles_controller.rb │ ├── tags_controller.rb │ ├── tickets_controller.rb │ ├── users │ │ └── articles_controller.rb │ └── users_controller.rb ├── decorators │ ├── article_decorator.rb │ ├── articles_decorator.rb │ ├── comment_decorator.rb │ ├── group_decorator.rb │ ├── paginating_decorator.rb │ └── rating_decorator.rb ├── helpers │ ├── admin │ │ ├── announcements_helper.rb │ │ ├── articles_helper.rb │ │ ├── dashboard_helper.rb │ │ ├── groups_helper.rb │ │ ├── keywords_helper.rb │ │ ├── pages_helper.rb │ │ ├── tags_helper.rb │ │ ├── themes_helper.rb │ │ ├── ticket_types_helper.rb │ │ └── users_helper.rb │ ├── application_helper.rb │ ├── archives_helper.rb │ ├── articles_helper.rb │ ├── badges_helper.rb │ ├── balances_helper.rb │ ├── comments_helper.rb │ ├── favorites_helper.rb │ ├── groups_helper.rb │ ├── invitation_codes_helper.rb │ ├── list_items_helper.rb │ ├── lists_helper.rb │ ├── messages_helper.rb │ ├── metadatas_helper.rb │ ├── my_helper.rb │ ├── notifications_helper.rb │ ├── pages_helper.rb │ ├── posts_helper.rb │ ├── profiles_helper.rb │ ├── ratings_helper.rb │ ├── report_helper.rb │ ├── salaries_helper.rb │ ├── sessions_helper.rb │ ├── statistic_helper.rb │ ├── tickets_helper.rb │ └── users_helper.rb ├── mailers │ ├── .gitkeep │ └── user_notifier.rb ├── models │ ├── .gitkeep │ ├── access_token.rb │ ├── announcement.rb │ ├── anonymous_rating.rb │ ├── article.rb │ ├── article │ │ ├── comment_aspect.rb │ │ ├── metadata_aspect.rb │ │ ├── metadata_local_cache.rb │ │ ├── metadata_remote_cache.rb │ │ ├── navigation.rb │ │ ├── picture_aspect.rb │ │ ├── publish_callbacks_aspect.rb │ │ ├── reference_aspect.rb │ │ ├── score_aspect.rb │ │ └── ticket_aspect.rb │ ├── article_sweeper.rb │ ├── article_trackback.rb │ ├── audit_logger.rb │ ├── badge.rb │ ├── balance.rb │ ├── client_application.rb │ ├── code_log.rb │ ├── comment.rb │ ├── comment │ │ └── sequence_aspect.rb │ ├── comment_rating.rb │ ├── comment_sweeper.rb │ ├── favorite.rb │ ├── friendship.rb │ ├── group.rb │ ├── invitation_code.rb │ ├── list.rb │ ├── list_item.rb │ ├── message.rb │ ├── metadata.rb │ ├── name_log.rb │ ├── notification.rb │ ├── oauth_nonce.rb │ ├── oauth_token.rb │ ├── page.rb │ ├── post.rb │ ├── profile.rb │ ├── rating.rb │ ├── report.rb │ ├── request_token.rb │ ├── role.rb │ ├── setting.rb │ ├── statistics.rb │ ├── ticket.rb │ ├── ticket_type.rb │ ├── transaction.rb │ ├── user.rb │ ├── user │ │ ├── authentication_aspect.rb │ │ ├── balance_aspect.rb │ │ ├── charm_aspect.rb │ │ ├── favorite_aspect.rb │ │ ├── friendship_aspect.rb │ │ ├── message_aspect.rb │ │ ├── rating_aspect.rb │ │ ├── registration_observer.rb │ │ └── ticket_aspect.rb │ ├── user_observer.rb │ ├── user_session.rb │ ├── user_stat.rb │ └── weight.rb ├── policies │ ├── application_policy.rb │ └── article_policy.rb ├── serializers │ ├── article_serializer.rb │ ├── comment_serializer.rb │ ├── group_serializer.rb │ ├── paginating_serializer.rb │ ├── rating_serializer.rb │ └── user_serializer.rb ├── views │ ├── admin │ │ ├── announcements │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ └── show.html.erb │ │ ├── articles │ │ │ ├── _article.erb │ │ │ ├── _form.erb │ │ │ ├── _pagination.erb │ │ │ ├── _search.erb │ │ │ ├── _selection.erb │ │ │ ├── _ticket.erb │ │ │ ├── comments.erb │ │ │ ├── counseling.erb │ │ │ ├── edit.erb │ │ │ ├── index.erb │ │ │ ├── new.erb │ │ │ ├── set_status.js.erb │ │ │ └── tickets.erb │ │ ├── badges │ │ │ ├── _form.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ └── show.html.erb │ │ ├── comments │ │ │ ├── _comment.erb │ │ │ ├── index.erb │ │ │ └── new.html.erb │ │ ├── dashboard │ │ │ └── index.erb │ │ ├── groups │ │ │ ├── _form.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ └── show.html.erb │ │ ├── index.html.erb │ │ ├── invitation_codes │ │ │ ├── _form.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ └── show.html.erb │ │ ├── pages │ │ │ ├── _form.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ └── new.html.erb │ │ ├── reports │ │ │ ├── _article.erb │ │ │ ├── _comment.erb │ │ │ ├── _punish.erb │ │ │ └── index.html.erb │ │ ├── settings │ │ │ └── edit.erb │ │ ├── statistic │ │ │ ├── index.html.erb │ │ │ └── stats.erb │ │ ├── tags │ │ │ ├── edit.html.erb │ │ │ └── index.html.erb │ │ ├── ticket_types │ │ │ ├── _form.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ └── show.html.erb │ │ └── users │ │ │ ├── comments.html.erb │ │ │ ├── edit.erb │ │ │ ├── index.erb │ │ │ ├── show.erb │ │ │ ├── tickets.html.erb │ │ │ └── users.erb │ ├── archives │ │ ├── _archive.erb │ │ ├── _spacer.erb │ │ ├── day.erb │ │ ├── index.erb │ │ ├── month.erb │ │ └── year.erb │ ├── articles │ │ ├── _article.html.erb │ │ ├── _article.mobile.erb │ │ ├── _draw.erb.erb │ │ ├── _tags.html.erb │ │ ├── _tags.mobile.erb │ │ ├── add_favorite.html.erb │ │ ├── add_favorite.mobile.erb │ │ ├── create.html.erb │ │ ├── dn.js.erb │ │ ├── draw.erb │ │ ├── hottest.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ ├── new.mobile.erb │ │ ├── not_found.erb │ │ ├── not_found.html.erb │ │ ├── remove_favorite.html.erb │ │ ├── remove_favorite.mobile.erb │ │ ├── show.html.erb │ │ ├── show.mobile.erb │ │ ├── tickets_stats.erb │ │ └── up.js.erb │ ├── badges │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── balances │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── comments │ │ ├── _comment.html.erb │ │ ├── _comment.mobile.erb │ │ ├── _comment_score.erb │ │ ├── _form.erb │ │ ├── _index.html.erb │ │ ├── _index.mobile.erb │ │ ├── create.js.erb │ │ ├── dn.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.erb │ │ ├── show.html.erb │ │ └── up.erb │ ├── common │ │ ├── _admin.erb │ │ ├── _analytics.erb │ │ ├── _digest.html.erb │ │ ├── _feedback.erb │ │ ├── _flash.erb │ │ ├── _item.html.erb │ │ ├── _login_info.erb │ │ ├── _pagination.erb │ │ ├── _pagination.mobile.erb │ │ ├── _rss_item.html.erb │ │ ├── _search.erb │ │ ├── _share.erb │ │ ├── _tagcloud.erb │ │ ├── error.erb │ │ └── rss.xml.builder │ ├── favorites │ │ └── index.erb │ ├── groups │ │ ├── _articles.erb │ │ ├── _group.mobile.erb │ │ ├── add.mobile.erb │ │ ├── index.html.erb │ │ ├── index.mobile.erb │ │ ├── pictures.erb │ │ ├── show.html.erb │ │ └── show.mobile.erb │ ├── invitation_codes │ │ ├── edit.erb │ │ ├── index.erb │ │ ├── new.erb │ │ └── show.erb │ ├── layouts │ │ ├── admin.html.erb │ │ ├── application.html.erb │ │ ├── application.mobile.erb │ │ ├── application.mobile.haml │ │ ├── messages.erb │ │ ├── register.erb │ │ ├── sessions.html.erb │ │ ├── skeleton.html.erb │ │ ├── skeleton.mobile.haml │ │ ├── users.html.erb │ │ └── users.mobile.erb │ ├── list_items │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── lists │ │ ├── _form.erb │ │ ├── _form.html.erb │ │ ├── edit.erb │ │ ├── index.erb │ │ ├── new.erb │ │ └── show.erb │ ├── messages │ │ ├── _message.erb │ │ ├── _nav.erb │ │ ├── edit.html.erb │ │ ├── inbox.erb │ │ ├── index.html.erb │ │ ├── new.erb │ │ ├── outbox.erb │ │ └── show.erb │ ├── my │ │ ├── articles.html.erb │ │ ├── favorites.html.erb │ │ ├── friends.erb │ │ ├── friends_comments.erb │ │ ├── index.html.erb │ │ ├── rename.erb │ │ └── salaries.html.erb │ ├── notifications │ │ ├── _delete_comment.erb │ │ ├── _new_comment.erb │ │ ├── _new_follower.erb │ │ ├── _space.html.erb │ │ ├── _unread_notification_count.html.erb │ │ ├── clear_all.rjs │ │ ├── edit.html.erb │ │ ├── ignore.rjs │ │ ├── index.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── oauth │ │ ├── authorize.html.erb │ │ ├── authorize_failure.html.erb │ │ └── authorize_success.html.erb │ ├── oauth_clients │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── pages │ │ ├── index.html.erb │ │ └── show.html.erb │ ├── posts │ │ ├── _form.erb │ │ ├── _post.erb │ │ ├── _quote.erb │ │ ├── children.erb │ │ ├── edit.html.erb │ │ ├── index.erb │ │ ├── new.erb │ │ ├── post.rjs │ │ └── show.erb │ ├── profiles │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── quest_logs │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── quests │ │ └── index.html.erb │ ├── salaries │ │ └── index.html.erb │ ├── sessions │ │ ├── new.html.erb │ │ └── new.mobile.erb │ ├── sidebar │ │ ├── _group.erb │ │ ├── _group_6.erb │ │ ├── _recent_comments.erb │ │ └── _yesterday_hosttest.erb │ ├── skeleton │ │ ├── _flashes.mobile.haml │ │ ├── _footer.html.erb │ │ ├── _footer.mobile.erb │ │ ├── _footer.mobile.haml │ │ ├── _head.html.erb │ │ ├── _head.mobile.haml │ │ ├── _header.html.erb │ │ ├── _header.mobile.erb │ │ ├── _header.mobile.haml │ │ ├── _javascripts.html.erb │ │ ├── _javascripts.mobile.haml │ │ ├── _navbar.html.erb │ │ ├── _sidebar.html.erb │ │ └── _stylesheets.html.erb │ ├── tags │ │ ├── articles │ │ │ ├── _article.erb │ │ │ └── index.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── tickets │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── submit.erb │ ├── user_notifier │ │ ├── activation.erb │ │ ├── digest_notification.erb │ │ ├── fetchpasswd.erb │ │ ├── invitation_code.erb │ │ ├── invitation_code_anonymous.erb │ │ ├── noticemail.erb │ │ ├── notification.erb │ │ ├── signup_notification.erb │ │ └── suspend.erb │ └── users │ │ ├── _person.erb │ │ ├── _user.erb │ │ ├── _user.mobile.erb │ │ ├── _user_bar.erb │ │ ├── activate.html.erb │ │ ├── articles │ │ ├── _article.html.erb │ │ └── index.erb │ │ ├── comments.erb │ │ ├── edit.erb │ │ ├── editpass.erb │ │ ├── fetchpass.html.erb │ │ ├── followers.erb │ │ ├── followers.mobile.erb │ │ ├── followings.erb │ │ ├── followings.mobile.erb │ │ ├── index.html.erb │ │ ├── index.mobile.erb │ │ ├── lists.html.erb │ │ ├── new.erb │ │ ├── notice.html.erb │ │ ├── notice.mobile.erb │ │ ├── search.html.erb │ │ ├── show.erb │ │ └── show.mobile.erb └── workers │ ├── back_end │ ├── delayed_job.rb │ ├── resque.rb │ └── workling.rb │ ├── base_worker.rb │ ├── comment_worker.rb │ ├── score_worker.rb │ ├── ticket_worker.rb │ └── user_worker.rb ├── bin ├── bundle ├── rails ├── rake ├── rspec └── spring ├── config.ru ├── config ├── application.rb ├── boot.rb ├── compass.rb ├── cucumber.yml ├── database.travis.yml ├── database.yml.example ├── deploy.rb ├── deploy │ └── production.rb.example ├── environment.rb ├── environments │ ├── development.rb │ ├── local_production.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── background_worker.rb │ ├── backtrace_silencers.rb │ ├── cache_extension.rb │ ├── compass.rb │ ├── compat.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── init_test_db.rb │ ├── jdbc.rb │ ├── jruby_psych_fix.rb │ ├── mem_cache_store_patch.rb │ ├── mime_types.rb │ ├── new_rails_defaults.rb │ ├── rolify.rb │ ├── secret_token.rb │ ├── session_store.rb │ ├── simple_form.rb │ ├── simple_form_bootstrap.rb │ ├── site_keys.rb │ └── wrap_parameters.rb ├── install.rb ├── locales │ ├── en.yml │ ├── kaminari.zh.yml │ ├── responders.en.yml │ ├── simple_form.en.yml │ └── zh.yml ├── newrelic.yml.example ├── preinitializer.rb ├── puma.rb ├── routes.rb ├── schedule.rb ├── sphinx.yml ├── stack │ ├── apache.rb │ ├── essential.rb │ ├── git.rb │ ├── hg.rb │ ├── memcached.rb │ ├── monitor.rb │ ├── mq.rb │ ├── mysql.rb │ ├── nginx.rb │ ├── nginx │ │ └── init.d │ ├── passenger.rb │ ├── postgresql.rb │ ├── redis.rb │ ├── ruby_enterprise.rb │ ├── sphinx.rb │ └── utils.rb ├── system_configuration.default.rb ├── unicorn.rb ├── warble.rb └── workling.yml ├── db ├── migrate │ ├── 20120217164444_create_delayed_jobs.rb │ ├── 20120218045517_create_preferences.rb │ ├── 20120227071642_create_metadatas.rb │ ├── 20120507055803_create_anonymous_ratings.rb │ ├── 20120614051300_add_special_info_for_tags.rb │ ├── 20120617041147_create_pages.rb │ ├── 20120710144214_add_score_columns_to_article.rb │ ├── 20120719092614_add_published_at_to_articles.rb │ ├── 20130320145437_add_alt_score_to_article.rb │ └── 20130326132509_rolify_create_roles.rb ├── schema.rb └── seeds.rb ├── db_setup.bat ├── features ├── step_definitions │ └── user_steps.rb ├── support │ ├── env.rb │ └── paths.rb └── users │ └── sign_in.feature ├── lib ├── anti_spam.rb ├── application_responder.rb ├── assets │ └── .gitkeep ├── authenticated_system.rb ├── authentication.rb ├── authentication │ ├── by_cookie_token.rb │ └── by_password.rb ├── authorization.rb ├── authorization │ ├── aasm_roles.rb │ └── stateful_roles.rb ├── bootstrap_link_renderer.rb ├── cache_control_methods.rb ├── generators │ └── theme │ │ ├── USAGE │ │ ├── templates │ │ ├── about.markdown │ │ ├── layout.html.erb │ │ ├── layout.liquid │ │ ├── preview.png │ │ ├── theme.css │ │ ├── theme.yml │ │ └── views_readme │ │ └── theme_generator.rb ├── global_lock.rb ├── hijacker.rb ├── ip_utils.rb ├── json_column.rb ├── paperclip_processors │ └── watermark.rb ├── post_lock.rb ├── recipes │ └── db.rb ├── reportable.rb ├── tasks │ ├── .gitkeep │ ├── auth.rake │ ├── cucumber.rake │ ├── jdbc.rake │ ├── paperclip_tasks.rake │ └── themes.rake ├── templates │ └── erb │ │ └── scaffold │ │ └── _form.html.erb ├── trustification.rb └── view_control_methods.rb ├── migrate.bat ├── public ├── .htaccess ├── 404.html ├── 422.html ├── 500.html ├── avatars │ ├── medium │ │ └── missing.png │ ├── original │ │ ├── for_test.jpg │ │ └── missing.png │ └── thumb │ │ └── missing.png ├── favicon.ico ├── img │ ├── for_article_test.jpg │ ├── glyphicons-halflings-white.png │ └── glyphicons-halflings.png ├── maintenance.html ├── out.png ├── robots.txt └── stylesheets │ └── rsspretty.xsl ├── script ├── cucumber ├── delayed_job ├── rails └── scheduler ├── spec ├── acceptance │ └── groups_spec.rb ├── controllers │ ├── admin │ │ ├── articles_controller_spec.rb │ │ └── groups_controller_spec.rb │ ├── archives_controller_spec.rb │ ├── articles_controller_spec.rb │ ├── comments_controller_spec.rb │ ├── favorites_controller_spec.rb │ ├── groups_controller_spec.rb │ ├── oauth_clients_controller_spec.rb │ ├── oauth_controller_spec.rb │ ├── oauth_controller_spec_helper.rb │ ├── ratings_controller_spec.rb │ ├── sessions_controller_spec.rb │ └── users_controller_spec.rb ├── decorators │ ├── article_decorator_spec.rb │ ├── articles_decorator_spec.rb │ ├── comment_decorator_spec.rb │ ├── group_decorator_spec.rb │ └── rating_decorator_spec.rb ├── factories │ ├── anonymous_ratings.rb │ ├── articles.rb │ ├── comments.rb │ ├── groups.rb │ ├── messages.rb │ ├── ratings.rb │ ├── roles.rb │ └── users.rb ├── helpers │ ├── admin │ │ ├── articles_helper_spec.rb │ │ └── groups_helper_spec.rb │ ├── articles_helper_spec.rb │ ├── favorites_helper_spec.rb │ ├── groups_helper_spec.rb │ ├── ratings_helper_spec.rb │ └── users_helper_spec.rb ├── models │ ├── anonymous_rating_spec.rb │ ├── article_spec.rb │ ├── client_application_spec.rb │ ├── group_spec.rb │ ├── oauth_nonce_spec.rb │ ├── oauth_token_spec.rb │ ├── rating_spec.rb │ ├── setting_spec.rb │ ├── user │ │ └── rating_aspect_spec.rb │ ├── user_notifier_spec.rb │ ├── user_session_spec.rb │ └── user_spec.rb ├── policies │ └── article_policy_spec.rb ├── rails_helper.rb ├── rcov.opts ├── routing │ ├── archives_routing_spec.rb │ ├── articles_routing_spec.rb │ ├── comments_routing_spec.rb │ ├── sessions_routing_spec.rb │ └── users_routing_spec.rb ├── spec_helper.rb └── support │ ├── database_cleaner.rb │ ├── factory_girl.rb │ └── rspec_api.rb ├── start-jruby.bat └── vendor └── assets ├── javascripts └── .gitkeep └── stylesheets └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/.hgignore -------------------------------------------------------------------------------- /.lighttable: -------------------------------------------------------------------------------- 1 | require 'config/environment' -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.1.1 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/.travis.yml -------------------------------------------------------------------------------- /Capfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/Capfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/Guardfile -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | ONLY FOR PRIVATE USAGE 2 | distribution is not allowed 3 | copyright cao li 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/Rakefile -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/TODO.md -------------------------------------------------------------------------------- /app/assets/images/anonymous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/images/anonymous.png -------------------------------------------------------------------------------- /app/assets/images/bad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/images/bad.gif -------------------------------------------------------------------------------- /app/assets/images/cup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/images/cup.jpg -------------------------------------------------------------------------------- /app/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/images/favicon.ico -------------------------------------------------------------------------------- /app/assets/images/good.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/images/good.gif -------------------------------------------------------------------------------- /app/assets/images/happy-iphone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/images/happy-iphone.gif -------------------------------------------------------------------------------- /app/assets/images/happy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/images/happy.gif -------------------------------------------------------------------------------- /app/assets/images/icons/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/images/icons/like.png -------------------------------------------------------------------------------- /app/assets/images/mail_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/images/mail_back.gif -------------------------------------------------------------------------------- /app/assets/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/images/overlay.png -------------------------------------------------------------------------------- /app/assets/images/qiushi/bad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/images/qiushi/bad.gif -------------------------------------------------------------------------------- /app/assets/images/qiushi/good.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/images/qiushi/good.gif -------------------------------------------------------------------------------- /app/assets/images/qiushi/h2bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/images/qiushi/h2bg.gif -------------------------------------------------------------------------------- /app/assets/images/qiushi/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/images/qiushi/icons.gif -------------------------------------------------------------------------------- /app/assets/images/qiushi/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/images/qiushi/icons.png -------------------------------------------------------------------------------- /app/assets/images/qiushi/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/images/qiushi/line.gif -------------------------------------------------------------------------------- /app/assets/images/qiushi/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/images/qiushi/logo.jpg -------------------------------------------------------------------------------- /app/assets/images/qiushi/mainbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/images/qiushi/mainbg.jpg -------------------------------------------------------------------------------- /app/assets/images/qiushi/qiushibaike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/images/qiushi/qiushibaike.png -------------------------------------------------------------------------------- /app/assets/images/qiushi/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/images/qiushi/spacer.gif -------------------------------------------------------------------------------- /app/assets/images/qiushi/uc-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/images/qiushi/uc-logo.gif -------------------------------------------------------------------------------- /app/assets/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/images/rails.png -------------------------------------------------------------------------------- /app/assets/images/trash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/images/trash.gif -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/comment.js.coffee: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/dist/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/javascripts/dist/admin.js -------------------------------------------------------------------------------- /app/assets/javascripts/dist/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/javascripts/dist/modernizr.min.js -------------------------------------------------------------------------------- /app/assets/javascripts/ratings.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/javascripts/ratings.js.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/stylesheets/application.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/article.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/stylesheets/article.css -------------------------------------------------------------------------------- /app/assets/stylesheets/comment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/stylesheets/comment.css -------------------------------------------------------------------------------- /app/assets/stylesheets/dist/admin.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/stylesheets/dist/admin.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/stylesheets/images/ajax-loader.gif -------------------------------------------------------------------------------- /app/assets/stylesheets/images/ajax-loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/stylesheets/images/ajax-loader.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/icons-18-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/stylesheets/images/icons-18-black.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/icons-18-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/stylesheets/images/icons-18-white.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/icons-36-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/stylesheets/images/icons-36-black.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/icons-36-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/stylesheets/images/icons-36-white.png -------------------------------------------------------------------------------- /app/assets/stylesheets/jquery.timePicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/stylesheets/jquery.timePicker.css -------------------------------------------------------------------------------- /app/assets/stylesheets/ratings.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/stylesheets/ratings.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/assets/stylesheets/style.css -------------------------------------------------------------------------------- /app/controllers/admin/announcements_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/admin/announcements_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/articles_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/admin/articles_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/badges_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/admin/badges_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/admin/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/comments_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/admin/comments_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/configurations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/admin/configurations_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/dashboard_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/admin/dashboard_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/groups_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/admin/groups_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/invitation_codes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/admin/invitation_codes_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/admin/pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/reports_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/admin/reports_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/settings_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/admin/settings_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/statistic_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/admin/statistic_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/tags_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/admin/tags_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/themes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/admin/themes_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/ticket_types_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/admin/ticket_types_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/admin/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/archives_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/archives_controller.rb -------------------------------------------------------------------------------- /app/controllers/articles_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/articles_controller.rb -------------------------------------------------------------------------------- /app/controllers/badges_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/badges_controller.rb -------------------------------------------------------------------------------- /app/controllers/balances_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/balances_controller.rb -------------------------------------------------------------------------------- /app/controllers/comments_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/comments_controller.rb -------------------------------------------------------------------------------- /app/controllers/favorites_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/favorites_controller.rb -------------------------------------------------------------------------------- /app/controllers/groups_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/groups_controller.rb -------------------------------------------------------------------------------- /app/controllers/invitation_codes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/invitation_codes_controller.rb -------------------------------------------------------------------------------- /app/controllers/list_items_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/list_items_controller.rb -------------------------------------------------------------------------------- /app/controllers/lists_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/lists_controller.rb -------------------------------------------------------------------------------- /app/controllers/messages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/messages_controller.rb -------------------------------------------------------------------------------- /app/controllers/metadatas_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/metadatas_controller.rb -------------------------------------------------------------------------------- /app/controllers/my_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/my_controller.rb -------------------------------------------------------------------------------- /app/controllers/notifications_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/notifications_controller.rb -------------------------------------------------------------------------------- /app/controllers/oauth_clients_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/oauth_clients_controller.rb -------------------------------------------------------------------------------- /app/controllers/oauth_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/oauth_controller.rb -------------------------------------------------------------------------------- /app/controllers/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/posts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/posts_controller.rb -------------------------------------------------------------------------------- /app/controllers/profiles_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/profiles_controller.rb -------------------------------------------------------------------------------- /app/controllers/ratings_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/ratings_controller.rb -------------------------------------------------------------------------------- /app/controllers/salaries_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/salaries_controller.rb -------------------------------------------------------------------------------- /app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/tags/articles_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/tags/articles_controller.rb -------------------------------------------------------------------------------- /app/controllers/tags_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/tags_controller.rb -------------------------------------------------------------------------------- /app/controllers/tickets_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/tickets_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/articles_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/users/articles_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/decorators/article_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/decorators/article_decorator.rb -------------------------------------------------------------------------------- /app/decorators/articles_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/decorators/articles_decorator.rb -------------------------------------------------------------------------------- /app/decorators/comment_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/decorators/comment_decorator.rb -------------------------------------------------------------------------------- /app/decorators/group_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/decorators/group_decorator.rb -------------------------------------------------------------------------------- /app/decorators/paginating_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/decorators/paginating_decorator.rb -------------------------------------------------------------------------------- /app/decorators/rating_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/decorators/rating_decorator.rb -------------------------------------------------------------------------------- /app/helpers/admin/announcements_helper.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | module Admin::AnnouncementsHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/admin/articles_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/helpers/admin/articles_helper.rb -------------------------------------------------------------------------------- /app/helpers/admin/dashboard_helper.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | module Admin::DashboardHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/admin/groups_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/helpers/admin/groups_helper.rb -------------------------------------------------------------------------------- /app/helpers/admin/keywords_helper.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | module Admin::KeywordsHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/admin/pages_helper.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | module Admin::PagesHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/admin/tags_helper.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | module Admin::TagsHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/admin/themes_helper.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | module Admin::ThemesHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/admin/ticket_types_helper.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | module Admin::TicketTypesHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/admin/users_helper.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | module Admin::UsersHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/archives_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/helpers/archives_helper.rb -------------------------------------------------------------------------------- /app/helpers/articles_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/helpers/articles_helper.rb -------------------------------------------------------------------------------- /app/helpers/badges_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/helpers/badges_helper.rb -------------------------------------------------------------------------------- /app/helpers/balances_helper.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | module BalancesHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/comments_helper.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | module CommentsHelper 3 | 4 | end 5 | -------------------------------------------------------------------------------- /app/helpers/favorites_helper.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | module FavoritesHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/groups_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/helpers/groups_helper.rb -------------------------------------------------------------------------------- /app/helpers/invitation_codes_helper.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | module InvitationCodesHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/list_items_helper.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | module ListItemsHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/lists_helper.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | module ListsHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/messages_helper.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | module MessagesHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/metadatas_helper.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | module MetadatasHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/my_helper.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | module MyHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/notifications_helper.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | module NotificationsHelper 3 | 4 | end 5 | -------------------------------------------------------------------------------- /app/helpers/pages_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/helpers/pages_helper.rb -------------------------------------------------------------------------------- /app/helpers/posts_helper.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | module PostsHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/profiles_helper.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | module ProfilesHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/ratings_helper.rb: -------------------------------------------------------------------------------- 1 | module RatingsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/report_helper.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | module ReportHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/salaries_helper.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | module SalariesHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/sessions_helper.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | module SessionsHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/statistic_helper.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | module StatisticHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/tickets_helper.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | module TicketsHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/users_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/helpers/users_helper.rb -------------------------------------------------------------------------------- /app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/mailers/user_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/mailers/user_notifier.rb -------------------------------------------------------------------------------- /app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/access_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/access_token.rb -------------------------------------------------------------------------------- /app/models/announcement.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | class Announcement < ActiveRecord::Base 3 | end 4 | -------------------------------------------------------------------------------- /app/models/anonymous_rating.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/anonymous_rating.rb -------------------------------------------------------------------------------- /app/models/article.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/article.rb -------------------------------------------------------------------------------- /app/models/article/comment_aspect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/article/comment_aspect.rb -------------------------------------------------------------------------------- /app/models/article/metadata_aspect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/article/metadata_aspect.rb -------------------------------------------------------------------------------- /app/models/article/metadata_local_cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/article/metadata_local_cache.rb -------------------------------------------------------------------------------- /app/models/article/metadata_remote_cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/article/metadata_remote_cache.rb -------------------------------------------------------------------------------- /app/models/article/navigation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/article/navigation.rb -------------------------------------------------------------------------------- /app/models/article/picture_aspect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/article/picture_aspect.rb -------------------------------------------------------------------------------- /app/models/article/publish_callbacks_aspect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/article/publish_callbacks_aspect.rb -------------------------------------------------------------------------------- /app/models/article/reference_aspect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/article/reference_aspect.rb -------------------------------------------------------------------------------- /app/models/article/score_aspect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/article/score_aspect.rb -------------------------------------------------------------------------------- /app/models/article/ticket_aspect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/article/ticket_aspect.rb -------------------------------------------------------------------------------- /app/models/article_sweeper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/article_sweeper.rb -------------------------------------------------------------------------------- /app/models/article_trackback.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/article_trackback.rb -------------------------------------------------------------------------------- /app/models/audit_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/audit_logger.rb -------------------------------------------------------------------------------- /app/models/badge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/badge.rb -------------------------------------------------------------------------------- /app/models/balance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/balance.rb -------------------------------------------------------------------------------- /app/models/client_application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/client_application.rb -------------------------------------------------------------------------------- /app/models/code_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/code_log.rb -------------------------------------------------------------------------------- /app/models/comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/comment.rb -------------------------------------------------------------------------------- /app/models/comment/sequence_aspect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/comment/sequence_aspect.rb -------------------------------------------------------------------------------- /app/models/comment_rating.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/comment_rating.rb -------------------------------------------------------------------------------- /app/models/comment_sweeper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/comment_sweeper.rb -------------------------------------------------------------------------------- /app/models/favorite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/favorite.rb -------------------------------------------------------------------------------- /app/models/friendship.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/friendship.rb -------------------------------------------------------------------------------- /app/models/group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/group.rb -------------------------------------------------------------------------------- /app/models/invitation_code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/invitation_code.rb -------------------------------------------------------------------------------- /app/models/list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/list.rb -------------------------------------------------------------------------------- /app/models/list_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/list_item.rb -------------------------------------------------------------------------------- /app/models/message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/message.rb -------------------------------------------------------------------------------- /app/models/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/metadata.rb -------------------------------------------------------------------------------- /app/models/name_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/name_log.rb -------------------------------------------------------------------------------- /app/models/notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/notification.rb -------------------------------------------------------------------------------- /app/models/oauth_nonce.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/oauth_nonce.rb -------------------------------------------------------------------------------- /app/models/oauth_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/oauth_token.rb -------------------------------------------------------------------------------- /app/models/page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/page.rb -------------------------------------------------------------------------------- /app/models/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/post.rb -------------------------------------------------------------------------------- /app/models/profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/profile.rb -------------------------------------------------------------------------------- /app/models/rating.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/rating.rb -------------------------------------------------------------------------------- /app/models/report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/report.rb -------------------------------------------------------------------------------- /app/models/request_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/request_token.rb -------------------------------------------------------------------------------- /app/models/role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/role.rb -------------------------------------------------------------------------------- /app/models/setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/setting.rb -------------------------------------------------------------------------------- /app/models/statistics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/statistics.rb -------------------------------------------------------------------------------- /app/models/ticket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/ticket.rb -------------------------------------------------------------------------------- /app/models/ticket_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/ticket_type.rb -------------------------------------------------------------------------------- /app/models/transaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/transaction.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/user/authentication_aspect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/user/authentication_aspect.rb -------------------------------------------------------------------------------- /app/models/user/balance_aspect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/user/balance_aspect.rb -------------------------------------------------------------------------------- /app/models/user/charm_aspect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/user/charm_aspect.rb -------------------------------------------------------------------------------- /app/models/user/favorite_aspect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/user/favorite_aspect.rb -------------------------------------------------------------------------------- /app/models/user/friendship_aspect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/user/friendship_aspect.rb -------------------------------------------------------------------------------- /app/models/user/message_aspect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/user/message_aspect.rb -------------------------------------------------------------------------------- /app/models/user/rating_aspect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/user/rating_aspect.rb -------------------------------------------------------------------------------- /app/models/user/registration_observer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/user/registration_observer.rb -------------------------------------------------------------------------------- /app/models/user/ticket_aspect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/user/ticket_aspect.rb -------------------------------------------------------------------------------- /app/models/user_observer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/user_observer.rb -------------------------------------------------------------------------------- /app/models/user_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/user_session.rb -------------------------------------------------------------------------------- /app/models/user_stat.rb: -------------------------------------------------------------------------------- 1 | # -*- encoding : utf-8 -*- 2 | class UserStat 3 | end 4 | -------------------------------------------------------------------------------- /app/models/weight.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/models/weight.rb -------------------------------------------------------------------------------- /app/policies/application_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/policies/application_policy.rb -------------------------------------------------------------------------------- /app/policies/article_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/policies/article_policy.rb -------------------------------------------------------------------------------- /app/serializers/article_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/serializers/article_serializer.rb -------------------------------------------------------------------------------- /app/serializers/comment_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/serializers/comment_serializer.rb -------------------------------------------------------------------------------- /app/serializers/group_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/serializers/group_serializer.rb -------------------------------------------------------------------------------- /app/serializers/paginating_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/serializers/paginating_serializer.rb -------------------------------------------------------------------------------- /app/serializers/rating_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/serializers/rating_serializer.rb -------------------------------------------------------------------------------- /app/serializers/user_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/serializers/user_serializer.rb -------------------------------------------------------------------------------- /app/views/admin/announcements/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/announcements/edit.html.erb -------------------------------------------------------------------------------- /app/views/admin/announcements/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/announcements/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/announcements/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/announcements/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/announcements/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/announcements/show.html.erb -------------------------------------------------------------------------------- /app/views/admin/articles/_article.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/articles/_article.erb -------------------------------------------------------------------------------- /app/views/admin/articles/_form.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/articles/_form.erb -------------------------------------------------------------------------------- /app/views/admin/articles/_pagination.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/articles/_pagination.erb -------------------------------------------------------------------------------- /app/views/admin/articles/_search.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/articles/_search.erb -------------------------------------------------------------------------------- /app/views/admin/articles/_selection.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/articles/_selection.erb -------------------------------------------------------------------------------- /app/views/admin/articles/_ticket.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/articles/_ticket.erb -------------------------------------------------------------------------------- /app/views/admin/articles/comments.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/articles/comments.erb -------------------------------------------------------------------------------- /app/views/admin/articles/counseling.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/articles/counseling.erb -------------------------------------------------------------------------------- /app/views/admin/articles/edit.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/articles/edit.erb -------------------------------------------------------------------------------- /app/views/admin/articles/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/articles/index.erb -------------------------------------------------------------------------------- /app/views/admin/articles/new.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/articles/new.erb -------------------------------------------------------------------------------- /app/views/admin/articles/set_status.js.erb: -------------------------------------------------------------------------------- 1 | $('#entity<%=@article.id%>').hide(); -------------------------------------------------------------------------------- /app/views/admin/articles/tickets.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/articles/tickets.erb -------------------------------------------------------------------------------- /app/views/admin/badges/_form.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/badges/_form.erb -------------------------------------------------------------------------------- /app/views/admin/badges/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/badges/edit.html.erb -------------------------------------------------------------------------------- /app/views/admin/badges/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/badges/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/badges/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/badges/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/badges/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/badges/show.html.erb -------------------------------------------------------------------------------- /app/views/admin/comments/_comment.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/comments/_comment.erb -------------------------------------------------------------------------------- /app/views/admin/comments/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/comments/index.erb -------------------------------------------------------------------------------- /app/views/admin/comments/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/comments/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/dashboard/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/dashboard/index.erb -------------------------------------------------------------------------------- /app/views/admin/groups/_form.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/groups/_form.erb -------------------------------------------------------------------------------- /app/views/admin/groups/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/groups/edit.html.erb -------------------------------------------------------------------------------- /app/views/admin/groups/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/groups/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/groups/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/groups/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/groups/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/groups/show.html.erb -------------------------------------------------------------------------------- /app/views/admin/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/invitation_codes/_form.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/invitation_codes/_form.erb -------------------------------------------------------------------------------- /app/views/admin/invitation_codes/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/invitation_codes/edit.html.erb -------------------------------------------------------------------------------- /app/views/admin/invitation_codes/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/invitation_codes/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/invitation_codes/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/invitation_codes/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/invitation_codes/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/invitation_codes/show.html.erb -------------------------------------------------------------------------------- /app/views/admin/pages/_form.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/pages/_form.erb -------------------------------------------------------------------------------- /app/views/admin/pages/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/pages/edit.html.erb -------------------------------------------------------------------------------- /app/views/admin/pages/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/pages/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/pages/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/pages/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/reports/_article.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/reports/_article.erb -------------------------------------------------------------------------------- /app/views/admin/reports/_comment.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/reports/_comment.erb -------------------------------------------------------------------------------- /app/views/admin/reports/_punish.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/reports/_punish.erb -------------------------------------------------------------------------------- /app/views/admin/reports/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/reports/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/settings/edit.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/settings/edit.erb -------------------------------------------------------------------------------- /app/views/admin/statistic/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/statistic/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/statistic/stats.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/statistic/stats.erb -------------------------------------------------------------------------------- /app/views/admin/tags/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/tags/edit.html.erb -------------------------------------------------------------------------------- /app/views/admin/tags/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/tags/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/ticket_types/_form.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/ticket_types/_form.erb -------------------------------------------------------------------------------- /app/views/admin/ticket_types/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/ticket_types/edit.html.erb -------------------------------------------------------------------------------- /app/views/admin/ticket_types/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/ticket_types/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/ticket_types/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/ticket_types/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/ticket_types/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/ticket_types/show.html.erb -------------------------------------------------------------------------------- /app/views/admin/users/comments.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/users/comments.html.erb -------------------------------------------------------------------------------- /app/views/admin/users/edit.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/users/edit.erb -------------------------------------------------------------------------------- /app/views/admin/users/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/users/index.erb -------------------------------------------------------------------------------- /app/views/admin/users/show.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/users/show.erb -------------------------------------------------------------------------------- /app/views/admin/users/tickets.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/users/tickets.html.erb -------------------------------------------------------------------------------- /app/views/admin/users/users.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/admin/users/users.erb -------------------------------------------------------------------------------- /app/views/archives/_archive.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/archives/_archive.erb -------------------------------------------------------------------------------- /app/views/archives/_spacer.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/archives/_spacer.erb -------------------------------------------------------------------------------- /app/views/archives/day.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/archives/day.erb -------------------------------------------------------------------------------- /app/views/archives/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/archives/index.erb -------------------------------------------------------------------------------- /app/views/archives/month.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/archives/month.erb -------------------------------------------------------------------------------- /app/views/archives/year.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/archives/year.erb -------------------------------------------------------------------------------- /app/views/articles/_article.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/articles/_article.html.erb -------------------------------------------------------------------------------- /app/views/articles/_article.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/articles/_article.mobile.erb -------------------------------------------------------------------------------- /app/views/articles/_draw.erb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/articles/_draw.erb.erb -------------------------------------------------------------------------------- /app/views/articles/_tags.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/articles/_tags.html.erb -------------------------------------------------------------------------------- /app/views/articles/_tags.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/articles/_tags.mobile.erb -------------------------------------------------------------------------------- /app/views/articles/add_favorite.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/articles/add_favorite.html.erb -------------------------------------------------------------------------------- /app/views/articles/add_favorite.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/articles/add_favorite.mobile.erb -------------------------------------------------------------------------------- /app/views/articles/create.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/articles/create.html.erb -------------------------------------------------------------------------------- /app/views/articles/dn.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/articles/dn.js.erb -------------------------------------------------------------------------------- /app/views/articles/draw.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/articles/draw.erb -------------------------------------------------------------------------------- /app/views/articles/hottest.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/articles/hottest.erb -------------------------------------------------------------------------------- /app/views/articles/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/articles/index.html.erb -------------------------------------------------------------------------------- /app/views/articles/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/articles/new.html.erb -------------------------------------------------------------------------------- /app/views/articles/new.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/articles/new.mobile.erb -------------------------------------------------------------------------------- /app/views/articles/not_found.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/articles/not_found.erb -------------------------------------------------------------------------------- /app/views/articles/not_found.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/articles/not_found.html.erb -------------------------------------------------------------------------------- /app/views/articles/remove_favorite.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/articles/remove_favorite.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/articles/remove_favorite.mobile.erb -------------------------------------------------------------------------------- /app/views/articles/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/articles/show.html.erb -------------------------------------------------------------------------------- /app/views/articles/show.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/articles/show.mobile.erb -------------------------------------------------------------------------------- /app/views/articles/tickets_stats.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/articles/tickets_stats.erb -------------------------------------------------------------------------------- /app/views/articles/up.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/articles/up.js.erb -------------------------------------------------------------------------------- /app/views/badges/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/badges/edit.html.erb -------------------------------------------------------------------------------- /app/views/badges/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/badges/index.html.erb -------------------------------------------------------------------------------- /app/views/badges/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/badges/new.html.erb -------------------------------------------------------------------------------- /app/views/badges/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/badges/show.html.erb -------------------------------------------------------------------------------- /app/views/balances/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/balances/edit.html.erb -------------------------------------------------------------------------------- /app/views/balances/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/balances/index.html.erb -------------------------------------------------------------------------------- /app/views/balances/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/balances/new.html.erb -------------------------------------------------------------------------------- /app/views/balances/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/balances/show.html.erb -------------------------------------------------------------------------------- /app/views/comments/_comment.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/comments/_comment.html.erb -------------------------------------------------------------------------------- /app/views/comments/_comment.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/comments/_comment.mobile.erb -------------------------------------------------------------------------------- /app/views/comments/_comment_score.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/comments/_comment_score.erb -------------------------------------------------------------------------------- /app/views/comments/_form.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/comments/_form.erb -------------------------------------------------------------------------------- /app/views/comments/_index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/comments/_index.html.erb -------------------------------------------------------------------------------- /app/views/comments/_index.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/comments/_index.mobile.erb -------------------------------------------------------------------------------- /app/views/comments/create.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/comments/create.js.erb -------------------------------------------------------------------------------- /app/views/comments/dn.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/comments/dn.erb -------------------------------------------------------------------------------- /app/views/comments/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/comments/edit.html.erb -------------------------------------------------------------------------------- /app/views/comments/index.html.erb: -------------------------------------------------------------------------------- 1 | <%= render :partial => 'index' %> -------------------------------------------------------------------------------- /app/views/comments/new.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/comments/new.erb -------------------------------------------------------------------------------- /app/views/comments/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/comments/show.html.erb -------------------------------------------------------------------------------- /app/views/comments/up.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/comments/up.erb -------------------------------------------------------------------------------- /app/views/common/_admin.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/common/_admin.erb -------------------------------------------------------------------------------- /app/views/common/_analytics.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/common/_analytics.erb -------------------------------------------------------------------------------- /app/views/common/_digest.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/common/_digest.html.erb -------------------------------------------------------------------------------- /app/views/common/_feedback.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/common/_feedback.erb -------------------------------------------------------------------------------- /app/views/common/_flash.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/common/_flash.erb -------------------------------------------------------------------------------- /app/views/common/_item.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/common/_item.html.erb -------------------------------------------------------------------------------- /app/views/common/_login_info.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/common/_login_info.erb -------------------------------------------------------------------------------- /app/views/common/_pagination.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/common/_pagination.erb -------------------------------------------------------------------------------- /app/views/common/_pagination.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/common/_pagination.mobile.erb -------------------------------------------------------------------------------- /app/views/common/_rss_item.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/common/_rss_item.html.erb -------------------------------------------------------------------------------- /app/views/common/_search.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/common/_search.erb -------------------------------------------------------------------------------- /app/views/common/_share.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/common/_share.erb -------------------------------------------------------------------------------- /app/views/common/_tagcloud.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/common/_tagcloud.erb -------------------------------------------------------------------------------- /app/views/common/error.erb: -------------------------------------------------------------------------------- 1 | <%= @message %> 2 | -------------------------------------------------------------------------------- /app/views/common/rss.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/common/rss.xml.builder -------------------------------------------------------------------------------- /app/views/favorites/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/favorites/index.erb -------------------------------------------------------------------------------- /app/views/groups/_articles.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/groups/_articles.erb -------------------------------------------------------------------------------- /app/views/groups/_group.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/groups/_group.mobile.erb -------------------------------------------------------------------------------- /app/views/groups/add.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/groups/add.mobile.erb -------------------------------------------------------------------------------- /app/views/groups/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/groups/index.html.erb -------------------------------------------------------------------------------- /app/views/groups/index.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/groups/index.mobile.erb -------------------------------------------------------------------------------- /app/views/groups/pictures.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/groups/pictures.erb -------------------------------------------------------------------------------- /app/views/groups/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/groups/show.html.erb -------------------------------------------------------------------------------- /app/views/groups/show.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/groups/show.mobile.erb -------------------------------------------------------------------------------- /app/views/invitation_codes/edit.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/invitation_codes/edit.erb -------------------------------------------------------------------------------- /app/views/invitation_codes/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/invitation_codes/index.erb -------------------------------------------------------------------------------- /app/views/invitation_codes/new.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/invitation_codes/new.erb -------------------------------------------------------------------------------- /app/views/invitation_codes/show.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/invitation_codes/show.erb -------------------------------------------------------------------------------- /app/views/layouts/admin.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/layouts/admin.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/layouts/application.mobile.erb -------------------------------------------------------------------------------- /app/views/layouts/application.mobile.haml: -------------------------------------------------------------------------------- 1 | 2 | = render_skeleton 3 | -------------------------------------------------------------------------------- /app/views/layouts/messages.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/layouts/messages.erb -------------------------------------------------------------------------------- /app/views/layouts/register.erb: -------------------------------------------------------------------------------- 1 | <%= render :file => 'layouts/sessions' %> -------------------------------------------------------------------------------- /app/views/layouts/sessions.html.erb: -------------------------------------------------------------------------------- 1 | <%= render :template => 'layouts/application' -%> -------------------------------------------------------------------------------- /app/views/layouts/skeleton.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/layouts/skeleton.html.erb -------------------------------------------------------------------------------- /app/views/layouts/skeleton.mobile.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/layouts/skeleton.mobile.haml -------------------------------------------------------------------------------- /app/views/layouts/users.html.erb: -------------------------------------------------------------------------------- 1 | <%= render template: 'layouts/application' %> -------------------------------------------------------------------------------- /app/views/layouts/users.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/layouts/users.mobile.erb -------------------------------------------------------------------------------- /app/views/list_items/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/list_items/edit.html.erb -------------------------------------------------------------------------------- /app/views/list_items/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/list_items/index.html.erb -------------------------------------------------------------------------------- /app/views/list_items/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/list_items/new.html.erb -------------------------------------------------------------------------------- /app/views/list_items/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/list_items/show.html.erb -------------------------------------------------------------------------------- /app/views/lists/_form.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/lists/_form.erb -------------------------------------------------------------------------------- /app/views/lists/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/lists/_form.html.erb -------------------------------------------------------------------------------- /app/views/lists/edit.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/lists/edit.erb -------------------------------------------------------------------------------- /app/views/lists/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/lists/index.erb -------------------------------------------------------------------------------- /app/views/lists/new.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/lists/new.erb -------------------------------------------------------------------------------- /app/views/lists/show.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/lists/show.erb -------------------------------------------------------------------------------- /app/views/messages/_message.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/messages/_message.erb -------------------------------------------------------------------------------- /app/views/messages/_nav.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/messages/_nav.erb -------------------------------------------------------------------------------- /app/views/messages/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/messages/edit.html.erb -------------------------------------------------------------------------------- /app/views/messages/inbox.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/messages/inbox.erb -------------------------------------------------------------------------------- /app/views/messages/index.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/messages/new.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/messages/new.erb -------------------------------------------------------------------------------- /app/views/messages/outbox.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/messages/outbox.erb -------------------------------------------------------------------------------- /app/views/messages/show.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/messages/show.erb -------------------------------------------------------------------------------- /app/views/my/articles.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/my/articles.html.erb -------------------------------------------------------------------------------- /app/views/my/favorites.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/my/favorites.html.erb -------------------------------------------------------------------------------- /app/views/my/friends.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/my/friends.erb -------------------------------------------------------------------------------- /app/views/my/friends_comments.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/my/friends_comments.erb -------------------------------------------------------------------------------- /app/views/my/index.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/my/rename.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/my/rename.erb -------------------------------------------------------------------------------- /app/views/my/salaries.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/my/salaries.html.erb -------------------------------------------------------------------------------- /app/views/notifications/_delete_comment.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/notifications/_delete_comment.erb -------------------------------------------------------------------------------- /app/views/notifications/_new_comment.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/notifications/_new_comment.erb -------------------------------------------------------------------------------- /app/views/notifications/_new_follower.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/notifications/_new_follower.erb -------------------------------------------------------------------------------- /app/views/notifications/_space.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/notifications/_unread_notification_count.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/notifications/_unread_notification_count.html.erb -------------------------------------------------------------------------------- /app/views/notifications/clear_all.rjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/notifications/clear_all.rjs -------------------------------------------------------------------------------- /app/views/notifications/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/notifications/edit.html.erb -------------------------------------------------------------------------------- /app/views/notifications/ignore.rjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/notifications/ignore.rjs -------------------------------------------------------------------------------- /app/views/notifications/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/notifications/index.erb -------------------------------------------------------------------------------- /app/views/notifications/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/notifications/new.html.erb -------------------------------------------------------------------------------- /app/views/notifications/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/notifications/show.html.erb -------------------------------------------------------------------------------- /app/views/oauth/authorize.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/oauth/authorize.html.erb -------------------------------------------------------------------------------- /app/views/oauth/authorize_failure.html.erb: -------------------------------------------------------------------------------- 1 |

You have disallowed this request

2 | -------------------------------------------------------------------------------- /app/views/oauth/authorize_success.html.erb: -------------------------------------------------------------------------------- 1 |

You have allowed this request

-------------------------------------------------------------------------------- /app/views/oauth_clients/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/oauth_clients/_form.html.erb -------------------------------------------------------------------------------- /app/views/oauth_clients/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/oauth_clients/edit.html.erb -------------------------------------------------------------------------------- /app/views/oauth_clients/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/oauth_clients/index.html.erb -------------------------------------------------------------------------------- /app/views/oauth_clients/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/oauth_clients/new.html.erb -------------------------------------------------------------------------------- /app/views/oauth_clients/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/oauth_clients/show.html.erb -------------------------------------------------------------------------------- /app/views/pages/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/pages/index.html.erb -------------------------------------------------------------------------------- /app/views/pages/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/pages/show.html.erb -------------------------------------------------------------------------------- /app/views/posts/_form.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/posts/_form.erb -------------------------------------------------------------------------------- /app/views/posts/_post.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/posts/_post.erb -------------------------------------------------------------------------------- /app/views/posts/_quote.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/posts/_quote.erb -------------------------------------------------------------------------------- /app/views/posts/children.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/posts/children.erb -------------------------------------------------------------------------------- /app/views/posts/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/posts/edit.html.erb -------------------------------------------------------------------------------- /app/views/posts/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/posts/index.erb -------------------------------------------------------------------------------- /app/views/posts/new.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/posts/new.erb -------------------------------------------------------------------------------- /app/views/posts/post.rjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/posts/post.rjs -------------------------------------------------------------------------------- /app/views/posts/show.erb: -------------------------------------------------------------------------------- 1 |
    2 | <%= render :partial => @post %> 3 |
4 | -------------------------------------------------------------------------------- /app/views/profiles/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/profiles/edit.html.erb -------------------------------------------------------------------------------- /app/views/profiles/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/profiles/index.html.erb -------------------------------------------------------------------------------- /app/views/profiles/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/profiles/new.html.erb -------------------------------------------------------------------------------- /app/views/profiles/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/profiles/show.html.erb -------------------------------------------------------------------------------- /app/views/quest_logs/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/quest_logs/edit.html.erb -------------------------------------------------------------------------------- /app/views/quest_logs/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/quest_logs/index.html.erb -------------------------------------------------------------------------------- /app/views/quest_logs/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/quest_logs/new.html.erb -------------------------------------------------------------------------------- /app/views/quest_logs/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/quest_logs/show.html.erb -------------------------------------------------------------------------------- /app/views/quests/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/quests/index.html.erb -------------------------------------------------------------------------------- /app/views/salaries/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/salaries/index.html.erb -------------------------------------------------------------------------------- /app/views/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/sessions/new.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/sessions/new.mobile.erb -------------------------------------------------------------------------------- /app/views/sidebar/_group.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/sidebar/_group.erb -------------------------------------------------------------------------------- /app/views/sidebar/_group_6.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/sidebar/_group_6.erb -------------------------------------------------------------------------------- /app/views/sidebar/_recent_comments.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/sidebar/_recent_comments.erb -------------------------------------------------------------------------------- /app/views/sidebar/_yesterday_hosttest.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/sidebar/_yesterday_hosttest.erb -------------------------------------------------------------------------------- /app/views/skeleton/_flashes.mobile.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/skeleton/_flashes.mobile.haml -------------------------------------------------------------------------------- /app/views/skeleton/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/skeleton/_footer.html.erb -------------------------------------------------------------------------------- /app/views/skeleton/_footer.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/skeleton/_footer.mobile.erb -------------------------------------------------------------------------------- /app/views/skeleton/_footer.mobile.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/skeleton/_footer.mobile.haml -------------------------------------------------------------------------------- /app/views/skeleton/_head.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/skeleton/_head.html.erb -------------------------------------------------------------------------------- /app/views/skeleton/_head.mobile.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/skeleton/_head.mobile.haml -------------------------------------------------------------------------------- /app/views/skeleton/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/skeleton/_header.html.erb -------------------------------------------------------------------------------- /app/views/skeleton/_header.mobile.erb: -------------------------------------------------------------------------------- 1 |

<%= yield :title %>

-------------------------------------------------------------------------------- /app/views/skeleton/_header.mobile.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/skeleton/_header.mobile.haml -------------------------------------------------------------------------------- /app/views/skeleton/_javascripts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/skeleton/_javascripts.html.erb -------------------------------------------------------------------------------- /app/views/skeleton/_javascripts.mobile.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/skeleton/_javascripts.mobile.haml -------------------------------------------------------------------------------- /app/views/skeleton/_navbar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/skeleton/_navbar.html.erb -------------------------------------------------------------------------------- /app/views/skeleton/_sidebar.html.erb: -------------------------------------------------------------------------------- 1 | <%= yield :sidebar %> -------------------------------------------------------------------------------- /app/views/skeleton/_stylesheets.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/skeleton/_stylesheets.html.erb -------------------------------------------------------------------------------- /app/views/tags/articles/_article.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/tags/articles/_article.erb -------------------------------------------------------------------------------- /app/views/tags/articles/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/tags/articles/index.erb -------------------------------------------------------------------------------- /app/views/tags/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/tags/edit.html.erb -------------------------------------------------------------------------------- /app/views/tags/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/tags/index.html.erb -------------------------------------------------------------------------------- /app/views/tags/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/tags/new.html.erb -------------------------------------------------------------------------------- /app/views/tags/show.html.erb: -------------------------------------------------------------------------------- 1 | You're viewing <%= @tag.name %> -------------------------------------------------------------------------------- /app/views/tickets/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/tickets/edit.html.erb -------------------------------------------------------------------------------- /app/views/tickets/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/tickets/index.html.erb -------------------------------------------------------------------------------- /app/views/tickets/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/tickets/new.html.erb -------------------------------------------------------------------------------- /app/views/tickets/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/tickets/show.html.erb -------------------------------------------------------------------------------- /app/views/tickets/submit.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/tickets/submit.erb -------------------------------------------------------------------------------- /app/views/user_notifier/activation.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/user_notifier/activation.erb -------------------------------------------------------------------------------- /app/views/user_notifier/digest_notification.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/user_notifier/digest_notification.erb -------------------------------------------------------------------------------- /app/views/user_notifier/fetchpasswd.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/user_notifier/fetchpasswd.erb -------------------------------------------------------------------------------- /app/views/user_notifier/invitation_code.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/user_notifier/invitation_code.erb -------------------------------------------------------------------------------- /app/views/user_notifier/invitation_code_anonymous.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/user_notifier/invitation_code_anonymous.erb -------------------------------------------------------------------------------- /app/views/user_notifier/noticemail.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/user_notifier/noticemail.erb -------------------------------------------------------------------------------- /app/views/user_notifier/notification.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/user_notifier/notification.erb -------------------------------------------------------------------------------- /app/views/user_notifier/signup_notification.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/user_notifier/signup_notification.erb -------------------------------------------------------------------------------- /app/views/user_notifier/suspend.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/user_notifier/suspend.erb -------------------------------------------------------------------------------- /app/views/users/_person.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/users/_person.erb -------------------------------------------------------------------------------- /app/views/users/_user.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/users/_user.erb -------------------------------------------------------------------------------- /app/views/users/_user.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/users/_user.mobile.erb -------------------------------------------------------------------------------- /app/views/users/_user_bar.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/users/_user_bar.erb -------------------------------------------------------------------------------- /app/views/users/activate.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/users/activate.html.erb -------------------------------------------------------------------------------- /app/views/users/articles/_article.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/users/articles/_article.html.erb -------------------------------------------------------------------------------- /app/views/users/articles/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/users/articles/index.erb -------------------------------------------------------------------------------- /app/views/users/comments.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/users/comments.erb -------------------------------------------------------------------------------- /app/views/users/edit.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/users/edit.erb -------------------------------------------------------------------------------- /app/views/users/editpass.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/users/editpass.erb -------------------------------------------------------------------------------- /app/views/users/fetchpass.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/users/fetchpass.html.erb -------------------------------------------------------------------------------- /app/views/users/followers.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/users/followers.erb -------------------------------------------------------------------------------- /app/views/users/followers.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/users/followers.mobile.erb -------------------------------------------------------------------------------- /app/views/users/followings.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/users/followings.erb -------------------------------------------------------------------------------- /app/views/users/followings.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/users/followings.mobile.erb -------------------------------------------------------------------------------- /app/views/users/index.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/users/index.mobile.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/users/lists.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/users/lists.html.erb -------------------------------------------------------------------------------- /app/views/users/new.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/users/new.erb -------------------------------------------------------------------------------- /app/views/users/notice.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/users/notice.html.erb -------------------------------------------------------------------------------- /app/views/users/notice.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/users/notice.mobile.erb -------------------------------------------------------------------------------- /app/views/users/search.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/users/search.html.erb -------------------------------------------------------------------------------- /app/views/users/show.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/users/show.erb -------------------------------------------------------------------------------- /app/views/users/show.mobile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/views/users/show.mobile.erb -------------------------------------------------------------------------------- /app/workers/back_end/delayed_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/workers/back_end/delayed_job.rb -------------------------------------------------------------------------------- /app/workers/back_end/resque.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/workers/back_end/resque.rb -------------------------------------------------------------------------------- /app/workers/back_end/workling.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/workers/back_end/workling.rb -------------------------------------------------------------------------------- /app/workers/base_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/workers/base_worker.rb -------------------------------------------------------------------------------- /app/workers/comment_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/workers/comment_worker.rb -------------------------------------------------------------------------------- /app/workers/score_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/workers/score_worker.rb -------------------------------------------------------------------------------- /app/workers/ticket_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/workers/ticket_worker.rb -------------------------------------------------------------------------------- /app/workers/user_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/app/workers/user_worker.rb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/bin/rspec -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/bin/spring -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/compass.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/compass.rb -------------------------------------------------------------------------------- /config/cucumber.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/cucumber.yml -------------------------------------------------------------------------------- /config/database.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/database.travis.yml -------------------------------------------------------------------------------- /config/database.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/database.yml.example -------------------------------------------------------------------------------- /config/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/deploy.rb -------------------------------------------------------------------------------- /config/deploy/production.rb.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/deploy/production.rb.example -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/local_production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/environments/local_production.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/background_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/initializers/background_worker.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cache_extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/initializers/cache_extension.rb -------------------------------------------------------------------------------- /config/initializers/compass.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/initializers/compass.rb -------------------------------------------------------------------------------- /config/initializers/compat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/initializers/compat.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/init_test_db.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/initializers/init_test_db.rb -------------------------------------------------------------------------------- /config/initializers/jdbc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/initializers/jdbc.rb -------------------------------------------------------------------------------- /config/initializers/jruby_psych_fix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/initializers/jruby_psych_fix.rb -------------------------------------------------------------------------------- /config/initializers/mem_cache_store_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/initializers/mem_cache_store_patch.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/new_rails_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/initializers/new_rails_defaults.rb -------------------------------------------------------------------------------- /config/initializers/rolify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/initializers/rolify.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /config/initializers/simple_form_bootstrap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/initializers/simple_form_bootstrap.rb -------------------------------------------------------------------------------- /config/initializers/site_keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/initializers/site_keys.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/install.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/kaminari.zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/locales/kaminari.zh.yml -------------------------------------------------------------------------------- /config/locales/responders.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/locales/responders.en.yml -------------------------------------------------------------------------------- /config/locales/simple_form.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/locales/simple_form.en.yml -------------------------------------------------------------------------------- /config/locales/zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/locales/zh.yml -------------------------------------------------------------------------------- /config/newrelic.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/newrelic.yml.example -------------------------------------------------------------------------------- /config/preinitializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/preinitializer.rb -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/schedule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/schedule.rb -------------------------------------------------------------------------------- /config/sphinx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/sphinx.yml -------------------------------------------------------------------------------- /config/stack/apache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/stack/apache.rb -------------------------------------------------------------------------------- /config/stack/essential.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/stack/essential.rb -------------------------------------------------------------------------------- /config/stack/git.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/stack/git.rb -------------------------------------------------------------------------------- /config/stack/hg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/stack/hg.rb -------------------------------------------------------------------------------- /config/stack/memcached.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/stack/memcached.rb -------------------------------------------------------------------------------- /config/stack/monitor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/stack/monitor.rb -------------------------------------------------------------------------------- /config/stack/mq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/stack/mq.rb -------------------------------------------------------------------------------- /config/stack/mysql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/stack/mysql.rb -------------------------------------------------------------------------------- /config/stack/nginx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/stack/nginx.rb -------------------------------------------------------------------------------- /config/stack/nginx/init.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/stack/nginx/init.d -------------------------------------------------------------------------------- /config/stack/passenger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/stack/passenger.rb -------------------------------------------------------------------------------- /config/stack/postgresql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/stack/postgresql.rb -------------------------------------------------------------------------------- /config/stack/redis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/stack/redis.rb -------------------------------------------------------------------------------- /config/stack/ruby_enterprise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/stack/ruby_enterprise.rb -------------------------------------------------------------------------------- /config/stack/sphinx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/stack/sphinx.rb -------------------------------------------------------------------------------- /config/stack/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/stack/utils.rb -------------------------------------------------------------------------------- /config/system_configuration.default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/system_configuration.default.rb -------------------------------------------------------------------------------- /config/unicorn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/unicorn.rb -------------------------------------------------------------------------------- /config/warble.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/warble.rb -------------------------------------------------------------------------------- /config/workling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/config/workling.yml -------------------------------------------------------------------------------- /db/migrate/20120217164444_create_delayed_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/db/migrate/20120217164444_create_delayed_jobs.rb -------------------------------------------------------------------------------- /db/migrate/20120218045517_create_preferences.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/db/migrate/20120218045517_create_preferences.rb -------------------------------------------------------------------------------- /db/migrate/20120227071642_create_metadatas.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/db/migrate/20120227071642_create_metadatas.rb -------------------------------------------------------------------------------- /db/migrate/20120507055803_create_anonymous_ratings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/db/migrate/20120507055803_create_anonymous_ratings.rb -------------------------------------------------------------------------------- /db/migrate/20120614051300_add_special_info_for_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/db/migrate/20120614051300_add_special_info_for_tags.rb -------------------------------------------------------------------------------- /db/migrate/20120617041147_create_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/db/migrate/20120617041147_create_pages.rb -------------------------------------------------------------------------------- /db/migrate/20120710144214_add_score_columns_to_article.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/db/migrate/20120710144214_add_score_columns_to_article.rb -------------------------------------------------------------------------------- /db/migrate/20120719092614_add_published_at_to_articles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/db/migrate/20120719092614_add_published_at_to_articles.rb -------------------------------------------------------------------------------- /db/migrate/20130320145437_add_alt_score_to_article.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/db/migrate/20130320145437_add_alt_score_to_article.rb -------------------------------------------------------------------------------- /db/migrate/20130326132509_rolify_create_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/db/migrate/20130326132509_rolify_create_roles.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /db_setup.bat: -------------------------------------------------------------------------------- 1 | bundle exec "rake db:setup" 2 | read -p "Press [Enter] key to continue..." 3 | -------------------------------------------------------------------------------- /features/step_definitions/user_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/features/step_definitions/user_steps.rb -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /features/support/paths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/features/support/paths.rb -------------------------------------------------------------------------------- /features/users/sign_in.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/features/users/sign_in.feature -------------------------------------------------------------------------------- /lib/anti_spam.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/anti_spam.rb -------------------------------------------------------------------------------- /lib/application_responder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/application_responder.rb -------------------------------------------------------------------------------- /lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/authenticated_system.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/authenticated_system.rb -------------------------------------------------------------------------------- /lib/authentication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/authentication.rb -------------------------------------------------------------------------------- /lib/authentication/by_cookie_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/authentication/by_cookie_token.rb -------------------------------------------------------------------------------- /lib/authentication/by_password.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/authentication/by_password.rb -------------------------------------------------------------------------------- /lib/authorization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/authorization.rb -------------------------------------------------------------------------------- /lib/authorization/aasm_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/authorization/aasm_roles.rb -------------------------------------------------------------------------------- /lib/authorization/stateful_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/authorization/stateful_roles.rb -------------------------------------------------------------------------------- /lib/bootstrap_link_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/bootstrap_link_renderer.rb -------------------------------------------------------------------------------- /lib/cache_control_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/cache_control_methods.rb -------------------------------------------------------------------------------- /lib/generators/theme/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/generators/theme/USAGE -------------------------------------------------------------------------------- /lib/generators/theme/templates/about.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/generators/theme/templates/about.markdown -------------------------------------------------------------------------------- /lib/generators/theme/templates/layout.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/generators/theme/templates/layout.html.erb -------------------------------------------------------------------------------- /lib/generators/theme/templates/layout.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/generators/theme/templates/layout.liquid -------------------------------------------------------------------------------- /lib/generators/theme/templates/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/generators/theme/templates/preview.png -------------------------------------------------------------------------------- /lib/generators/theme/templates/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/generators/theme/templates/theme.css -------------------------------------------------------------------------------- /lib/generators/theme/templates/theme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/generators/theme/templates/theme.yml -------------------------------------------------------------------------------- /lib/generators/theme/templates/views_readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/generators/theme/templates/views_readme -------------------------------------------------------------------------------- /lib/generators/theme/theme_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/generators/theme/theme_generator.rb -------------------------------------------------------------------------------- /lib/global_lock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/global_lock.rb -------------------------------------------------------------------------------- /lib/hijacker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/hijacker.rb -------------------------------------------------------------------------------- /lib/ip_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/ip_utils.rb -------------------------------------------------------------------------------- /lib/json_column.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/json_column.rb -------------------------------------------------------------------------------- /lib/paperclip_processors/watermark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/paperclip_processors/watermark.rb -------------------------------------------------------------------------------- /lib/post_lock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/post_lock.rb -------------------------------------------------------------------------------- /lib/recipes/db.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/recipes/db.rb -------------------------------------------------------------------------------- /lib/reportable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/reportable.rb -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/auth.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/tasks/auth.rake -------------------------------------------------------------------------------- /lib/tasks/cucumber.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/tasks/cucumber.rake -------------------------------------------------------------------------------- /lib/tasks/jdbc.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/tasks/jdbc.rake -------------------------------------------------------------------------------- /lib/tasks/paperclip_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/tasks/paperclip_tasks.rake -------------------------------------------------------------------------------- /lib/tasks/themes.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/tasks/themes.rake -------------------------------------------------------------------------------- /lib/templates/erb/scaffold/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/templates/erb/scaffold/_form.html.erb -------------------------------------------------------------------------------- /lib/trustification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/trustification.rb -------------------------------------------------------------------------------- /lib/view_control_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/lib/view_control_methods.rb -------------------------------------------------------------------------------- /migrate.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bundle exec "rake db:migrate" 3 | pause 4 | -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/public/500.html -------------------------------------------------------------------------------- /public/avatars/medium/missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/public/avatars/medium/missing.png -------------------------------------------------------------------------------- /public/avatars/original/for_test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/public/avatars/original/for_test.jpg -------------------------------------------------------------------------------- /public/avatars/original/missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/public/avatars/original/missing.png -------------------------------------------------------------------------------- /public/avatars/thumb/missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/public/avatars/thumb/missing.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/img/for_article_test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/public/img/for_article_test.jpg -------------------------------------------------------------------------------- /public/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/public/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /public/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/public/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /public/maintenance.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/public/out.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/stylesheets/rsspretty.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/public/stylesheets/rsspretty.xsl -------------------------------------------------------------------------------- /script/cucumber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/script/cucumber -------------------------------------------------------------------------------- /script/delayed_job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/script/delayed_job -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/script/rails -------------------------------------------------------------------------------- /script/scheduler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/script/scheduler -------------------------------------------------------------------------------- /spec/acceptance/groups_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/acceptance/groups_spec.rb -------------------------------------------------------------------------------- /spec/controllers/admin/articles_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/controllers/admin/articles_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/admin/groups_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/controllers/admin/groups_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/archives_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/controllers/archives_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/articles_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/controllers/articles_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/comments_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/controllers/comments_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/favorites_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/controllers/favorites_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/groups_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/controllers/groups_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/oauth_clients_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/controllers/oauth_clients_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/oauth_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/controllers/oauth_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/oauth_controller_spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/controllers/oauth_controller_spec_helper.rb -------------------------------------------------------------------------------- /spec/controllers/ratings_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/controllers/ratings_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/sessions_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/controllers/sessions_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/users_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/controllers/users_controller_spec.rb -------------------------------------------------------------------------------- /spec/decorators/article_decorator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/decorators/article_decorator_spec.rb -------------------------------------------------------------------------------- /spec/decorators/articles_decorator_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe ArticlesDecorator do 4 | end 5 | -------------------------------------------------------------------------------- /spec/decorators/comment_decorator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/decorators/comment_decorator_spec.rb -------------------------------------------------------------------------------- /spec/decorators/group_decorator_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe GroupDecorator do 4 | end 5 | -------------------------------------------------------------------------------- /spec/decorators/rating_decorator_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe RatingDecorator do 4 | end 5 | -------------------------------------------------------------------------------- /spec/factories/anonymous_ratings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/factories/anonymous_ratings.rb -------------------------------------------------------------------------------- /spec/factories/articles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/factories/articles.rb -------------------------------------------------------------------------------- /spec/factories/comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/factories/comments.rb -------------------------------------------------------------------------------- /spec/factories/groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/factories/groups.rb -------------------------------------------------------------------------------- /spec/factories/messages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/factories/messages.rb -------------------------------------------------------------------------------- /spec/factories/ratings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/factories/ratings.rb -------------------------------------------------------------------------------- /spec/factories/roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/factories/roles.rb -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/helpers/admin/articles_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/helpers/admin/articles_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/admin/groups_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/helpers/admin/groups_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/articles_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/helpers/articles_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/favorites_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/helpers/favorites_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/groups_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/helpers/groups_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/ratings_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/helpers/ratings_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/users_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/helpers/users_helper_spec.rb -------------------------------------------------------------------------------- /spec/models/anonymous_rating_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/models/anonymous_rating_spec.rb -------------------------------------------------------------------------------- /spec/models/article_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/models/article_spec.rb -------------------------------------------------------------------------------- /spec/models/client_application_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/models/client_application_spec.rb -------------------------------------------------------------------------------- /spec/models/group_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/models/group_spec.rb -------------------------------------------------------------------------------- /spec/models/oauth_nonce_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/models/oauth_nonce_spec.rb -------------------------------------------------------------------------------- /spec/models/oauth_token_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/models/oauth_token_spec.rb -------------------------------------------------------------------------------- /spec/models/rating_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/models/rating_spec.rb -------------------------------------------------------------------------------- /spec/models/setting_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/models/setting_spec.rb -------------------------------------------------------------------------------- /spec/models/user/rating_aspect_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/models/user/rating_aspect_spec.rb -------------------------------------------------------------------------------- /spec/models/user_notifier_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/models/user_notifier_spec.rb -------------------------------------------------------------------------------- /spec/models/user_session_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/models/user_session_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/policies/article_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/policies/article_policy_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/rcov.opts: -------------------------------------------------------------------------------- 1 | --exclude "spec/*,gems/*" 2 | --rails -------------------------------------------------------------------------------- /spec/routing/archives_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/routing/archives_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/articles_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/routing/articles_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/comments_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/routing/comments_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/sessions_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/routing/sessions_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/users_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/routing/users_routing_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/database_cleaner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/support/database_cleaner.rb -------------------------------------------------------------------------------- /spec/support/factory_girl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/support/factory_girl.rb -------------------------------------------------------------------------------- /spec/support/rspec_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/spec/support/rspec_api.rb -------------------------------------------------------------------------------- /start-jruby.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiushibaike/moumentei/HEAD/start-jruby.bat -------------------------------------------------------------------------------- /vendor/assets/javascripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------