├── .env.example ├── .gitignore ├── .rspec ├── .slugignore ├── .travis.yml ├── Gemfile ├── Guardfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── app ├── admin │ ├── category.rb │ ├── dashboard.rb │ ├── forum_post.rb │ ├── game.rb │ ├── mod.rb │ ├── subforum.rb │ └── user.rb ├── assets │ ├── images │ │ ├── .keep │ │ ├── batthern.png │ │ └── checkered-pattern.png │ ├── javascripts │ │ ├── active_admin.js.coffee │ │ ├── application.js │ │ ├── bookmarks.js.coffee │ │ ├── inputs │ │ │ └── multi_datalist.js.coffee │ │ ├── lib │ │ │ ├── image_modal.js.coffee │ │ │ ├── image_mover.js.coffee │ │ │ └── mod_images.js.coffee │ │ ├── mods.js.coffee │ │ ├── official_app_banner.js.coffee │ │ └── vendor.js │ └── stylesheets │ │ ├── active_admin.sass │ │ ├── application.sass │ │ ├── bookmarks.sass │ │ ├── errors.sass │ │ ├── forum_validations.sass │ │ ├── layout.sass │ │ ├── mixins │ │ └── utils.sass │ │ ├── mods │ │ ├── edit.sass │ │ ├── index.sass │ │ ├── mod_card.sass │ │ ├── mod_form.sass │ │ └── show.sass │ │ ├── official_app_banner.sass │ │ ├── partials │ │ ├── footer.sass │ │ ├── header.sass │ │ └── search_bar.sass │ │ ├── shared │ │ ├── base_elements.sass │ │ ├── btn.sass │ │ ├── formtastic.sass │ │ ├── helpers.sass │ │ ├── inputs.sass │ │ ├── query_highlight.sass │ │ └── thumbnails.sass │ │ ├── static.sass │ │ ├── users │ │ ├── devise.sass │ │ ├── identification_form.sass │ │ └── users.sass │ │ └── vars │ │ ├── colors.sass │ │ ├── font_awesome.scss │ │ ├── font_awesome_vars.scss │ │ ├── fonts.sass │ │ ├── images.scss │ │ └── misc.sass ├── controllers │ ├── api │ │ ├── api_controller.rb │ │ ├── categories_controller.rb │ │ └── mods_controller.rb │ ├── application_controller.rb │ ├── authors_controller.rb │ ├── bookmarks_controller.rb │ ├── concerns │ │ └── .keep │ ├── forum_validations_controller.rb │ ├── mods_controller.rb │ ├── static_controller.rb │ ├── users │ │ ├── registrations_controller.rb │ │ └── sessions_controller.rb │ └── users_controller.rb ├── decorators │ ├── author_decorator.rb │ ├── bookmark_decorator.rb │ ├── mod_decorator.rb │ └── mods_decorator.rb ├── helpers │ ├── active_admin │ │ └── views_helper.rb │ ├── application_helper.rb │ ├── bookmarks_helper.rb │ ├── mods_helper.rb │ ├── session_helper.rb │ └── users_helper.rb ├── inputs │ ├── attachment_input.rb │ ├── categories_select_input.rb │ └── multi_datalist_input.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── ability.rb │ ├── admin_ability.rb │ ├── author.rb │ ├── authors_mod.rb │ ├── bookmark.rb │ ├── categories_mod.rb │ ├── category.rb │ ├── concerns │ │ └── .keep │ ├── download.rb │ ├── favorite.rb │ ├── forum_post.rb │ ├── forum_validation.rb │ ├── game.rb │ ├── game_version.rb │ ├── mod.rb │ ├── mod_file.rb │ ├── mod_game_version.rb │ ├── mod_version.rb │ ├── search_term.rb │ ├── subforum.rb │ ├── tag.rb │ ├── user.rb │ └── visit.rb ├── serializers │ ├── author_serializer.rb │ ├── category_serializer.rb │ ├── mod_file_serializer.rb │ ├── mod_serializer.rb │ ├── mod_version_serializer.rb │ └── user_serializer.rb └── views │ ├── authors │ └── show.html.haml │ ├── bookmarks │ └── index.html.haml │ ├── devise │ ├── mailer │ │ └── reset_password_instructions.html.haml │ ├── passwords │ │ ├── edit.html.haml │ │ └── new.html.haml │ └── shared │ │ └── _links.haml │ ├── errors │ └── base.html.haml │ ├── forum_validations │ ├── new.html.haml │ └── show.html.haml │ ├── layouts │ ├── _footer.html.haml │ ├── _google_analytics.html.haml │ ├── _header.html.haml │ ├── _search_bar.html.haml │ ├── application.html.haml │ └── blank_page.html.haml │ ├── mods │ ├── _download_button.html.haml │ ├── _file_fields.html.haml │ ├── _filter_bar.html.haml │ ├── _form.html.haml │ ├── _mod_card.html.haml │ ├── _mod_data_table.html.haml │ ├── _mods_filters_list.html.haml │ ├── _version_fields.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── new.html.haml │ └── show.html.haml │ ├── static │ ├── how_to_install.html.haml │ ├── how_to_make.html.haml │ └── how_to_submit.html.haml │ └── users │ ├── _identification_form.html.haml │ ├── registrations │ ├── edit.html.haml │ ├── new.html.haml │ └── signed_up_autogenerated.html.haml │ └── sessions │ └── new.html.haml ├── bin ├── bundle ├── rails ├── rake └── spring ├── cassette_explorer.rb ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml.example ├── database.yml.travis ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── active_admin.rb │ ├── active_model_serializer.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── devise.rb │ ├── filter_parameter_logging.rb │ ├── formtastic.rb │ ├── friendly_id.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── rack_zippy.rb │ ├── require_custom_logger.rb │ ├── sass_base64.rb │ ├── sass_dump_fixer.rb │ ├── session_store.rb │ ├── simple_form.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ ├── en.yml │ ├── forum_validations.en.yml │ ├── layouts.en.yml │ ├── mods.en.yml │ ├── simple_form.en.yml │ ├── static.en.yml │ └── users.en.yml ├── routes.rb └── secrets.yml ├── db ├── db │ └── migrate │ │ └── 20140708031335_devise_create_users.rb ├── migrate │ ├── 20140708031335_devise_create_users.rb │ ├── 20140708052858_create_mods.rb │ ├── 20140708052950_create_downloads.rb │ ├── 20140708053004_create_visits.rb │ ├── 20140708053221_create_mod_files.rb │ ├── 20140708053544_add_attachment_attachment_to_mod_files.rb │ ├── 20140708054706_create_mod_versions.rb │ ├── 20140708054726_create_categories.rb │ ├── 20140708054741_add_attachment_icon_to_categories.rb │ ├── 20140708054800_create_tags.rb │ ├── 20140708054837_create_mods_tags.rb │ ├── 20140708055015_create_favorites.rb │ ├── 20140708055040_create_search_terms.rb │ ├── 20140708055106_create_game_versions.rb │ ├── 20140709033539_create_mod_assets.rb │ ├── 20140709033554_add_attachment_image_to_mod_assets.rb │ ├── 20140709060645_add_name_to_users.rb │ ├── 20140715043515_add_icon_class_to_categories.rb │ ├── 20140715232152_add_description_to_mods.rb │ ├── 20140716004121_add_slug_to_mods.rb │ ├── 20140716004128_add_slug_to_categories.rb │ ├── 20140719054541_convert_mods_forum_comments_count_to_integer.rb │ ├── 20140719223634_create_active_admin_comments.rb │ ├── 20140720220912_add_sort_order_to_mod_assets.rb │ ├── 20140720223441_add_game_version_start_end_to_mod_version.rb │ ├── 20140721012059_add_sort_order_to_mod_versions.rb │ ├── 20140721020918_add_sort_order_to_mod_files.rb │ ├── 20140721054605_set_counts_default_to_0.rb │ ├── 20140721061853_convert_mod_version_datetime_to_date.rb │ ├── 20140721221740_add_summary_to_mods.rb │ ├── 20140721222538_add_game_version_to_mod_versions.rb │ ├── 20140722230634_add_sort_order_to_game_versions.rb │ ├── 20140722234250_remove_default_from_sort_order.rb │ ├── 20140723230459_add_group_id_to_game_versions.rb │ ├── 20140723234601_add_is_group_to_game_versions.rb │ ├── 20140724000358_create_games.rb │ ├── 20140724000416_add_game_to_game_versions.rb │ ├── 20140728223617_add_game_version_start_and_game_version_end_to_mods.rb │ ├── 20140729013409_create_game_versions_mods.rb │ ├── 20140731023047_create_game_version_groups.rb │ ├── 20140731030542_add_game_versions_string_to_mod.rb │ ├── 20140731223914_create_mod_game_versions.rb │ ├── 20140731232141_add_game_versions_string_to_mod_versions.rb │ ├── 20140801005051_remove_all_the_trash_columns_and_tables.rb │ ├── 20140804021455_add_description_html_to_mods.rb │ ├── 20140810200911_add_precise_game_version_string_to_mod_versions.rb │ ├── 20140810223511_create_forum_posts.rb │ ├── 20140810224431_add_forum_post_to_mods.rb │ ├── 20140812111143_add_edited_at_to_forum_posts.rb │ ├── 20140813014354_add_mod_to_forum_posts.rb │ ├── 20140813014607_add_post_number_to_forum_posts.rb │ ├── 20140813014801_add_index_to_forum_posts.rb │ ├── 20140813020437_add_title_changed_to_forum_posts.rb │ ├── 20140813151628_add_forum_subforum_url_to_mods.rb │ ├── 20141003142707_add_forum_url_and_media_link_to_mods.rb │ ├── 20141029002644_convert_mod_released_at_date_to_datetime.rb │ ├── 20150224201733_add_imgur_album_id_to_mod.rb │ ├── 20150303055609_add_imgur_is_album_to_mods.rb │ ├── 20150303060730_add_imgur_extension_to_mods.rb │ ├── 20150303061050_add_imgur_to_mods.rb │ ├── 20150712121842_create_categories_mods.rb │ ├── 20150713042200_add_slug_to_users.rb │ ├── 20150713123241_add_last_release_date_to_mods.rb │ ├── 20150713142609_add_download_url_to_mod_file.rb │ ├── 20150714090306_add_not_a_mod_to_forum_posts.rb │ ├── 20150717091318_convert_mods_summary_to_text.rb │ ├── 20150720100308_make_mod_slug_unique.rb │ ├── 20150720190647_create_authors_mods.rb │ ├── 20150721120835_add_autogenerated_to_users.rb │ ├── 20150721162608_make_user_name_unique.rb │ ├── 20150722191106_create_subforums.rb │ ├── 20150722191442_add_number_to_subforums.rb │ ├── 20150722191517_add_subforum_id_to_forum_post.rb │ ├── 20150722210917_add_default_title_changed_to_forum_posts.rb │ ├── 20150722215126_add_forum_posts_count_to_subforums.rb │ ├── 20150722233819_add_last_scrap_at_to_subforums.rb │ ├── 20150723185125_multi_authors_update.rb │ ├── 20150724141339_set_default_forum_post_and_forum_subforum_url.rb │ ├── 20150724155022_add_visible_to_mods.rb │ ├── 20150727151824_add_contact_and_info_json_name_to_mods.rb │ ├── 20150727221452_add_info_json_name_index.rb │ ├── 20150728201946_create_bookmarks.rb │ ├── 20150728202722_add_bookmarks_count_to_mods.rb │ ├── 20150804041005_create_authors.rb │ ├── 20150804053214_remove_author_name_from_mods.rb │ ├── 20150804055944_change_authors_slug_to_be_unique.rb │ ├── 20150804093423_authors_users_separation.rb │ ├── 20150804093750_create_forum_validations.rb │ ├── 20150806015412_add_pm_sent_to_forum_validation.rb │ ├── 20150806060622_add_forum_name_to_users.rb │ ├── 20150807093532_add_additional_contributors_to_mods.rb │ ├── 20150807095122_rename_mods_author_id_to_owner_id.rb │ ├── 20150807104820_add_author_to_mods.rb │ └── 20150807140522_set_mod_authors_to_mod_author.rb ├── schema.rb └── seeds.rb ├── design ├── FactorioModsFavicon.png ├── FactorioModsFavicon.psd ├── FactorioModsFavicon2.png ├── FactorioModsFavicon3.png ├── FactorioModsFavicon4.png ├── FactorioModsFavicon5.png ├── FactorioModsFavicon6.png ├── FactorioModsFavicon7.png ├── NoPicture.psd └── NoPicture2.psd ├── lib ├── assets │ └── .keep ├── authors_users_separation_updater.rb ├── custom_logger.rb ├── fake_data_generator.rb ├── forum_bot.rb ├── imgur.rb ├── multi_authors_updater.rb ├── scraper.rb ├── scraper │ ├── base.rb │ ├── base_processor.rb │ ├── post_processor.rb │ ├── subforum_processor.rb │ └── subforum_scraper.rb └── tasks │ └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico ├── humans.txt ├── images │ ├── missing_large_thumbnail.png │ └── missing_thumbnail.png └── robots.txt ├── spec ├── controllers │ ├── api │ │ ├── api_controller_spec.rb │ │ ├── categories_controller_spec.rb │ │ └── mods_controller_spec.rb │ ├── authors_controller_spec.rb │ ├── bookmarks_controller_spec.rb │ ├── forum_validations_controller_spec.rb │ ├── mods_controller_spec.rb │ ├── users │ │ ├── registrations_controller_spec.rb │ │ └── sessions_controller_spec.rb │ └── users_controller_spec.rb ├── decorators │ ├── author_decorator_spec.rb │ ├── bookmark_decorator_spec.rb │ └── mod_decorator_spec.rb ├── factories │ ├── authors.rb │ ├── authors_mods.rb │ ├── bookmarks.rb │ ├── forum_post_factories.rb │ ├── forum_validations.rb │ ├── game_versions_mods_factories.rb │ ├── mod_factories.rb │ ├── mod_game_version_factories.rb │ ├── subforums.rb │ └── user_factories.rb ├── features │ ├── adding_bookmarks_spec.rb │ ├── common_sign_in_up_form_everywhere_spec.rb │ ├── mods_edit_spec.rb │ ├── mods_index_spec.rb │ ├── mods_new_spec.rb │ ├── mods_show_spec.rb │ ├── new_user_forum_account_validation_spec.rb │ ├── probabilistic_category_list_count_spec.rb │ ├── redirect_to_previous_page_after_login_spec.rb │ └── the_game_version_string_should_be_updated_after_editing_a_mod_spec.rb ├── fixtures │ ├── sample_images │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ └── 5.jpg │ ├── test-giant.zip │ ├── test.jpg │ ├── test.zip │ └── vcr_cassettes │ │ ├── Imgur │ │ └── _url │ │ │ ├── should_be_invalid_if_a_true_image_URL_is_a_404_too.yml │ │ │ ├── should_be_invalid_without_an_image_src_in_the_page.yml │ │ │ ├── should_be_valid_with_an_https_domain.yml │ │ │ ├── should_de_invalid_with_a_404_image.yml │ │ │ ├── should_detect_its_an_album_with_a_gallery_URL.yml │ │ │ ├── should_detect_that_its_an_image_with_an_image_URL.yml │ │ │ ├── should_detect_that_its_an_image_with_an_image_true_URL.yml │ │ │ └── should_detect_that_its_and_album_with_an_album_URL.yml │ │ ├── _cassette_name_subforum_multiple_pages_record_new_episodes_.yml │ │ ├── _cassette_name_subforum_single_page_record_new_episodes_.yml │ │ ├── fake_data_generator.yml │ │ ├── features │ │ └── forum_validation.yml │ │ ├── forum_bot │ │ ├── auth_invalid.yml │ │ ├── auth_valid.yml │ │ ├── get_user_id_nonesense.yml │ │ ├── get_user_id_partial.yml │ │ └── get_user_id_real.yml │ │ ├── forum_post.yml │ │ ├── scraper_base.yml │ │ └── subforum_model_scrap_itself.yml ├── helpers │ ├── application_helper_spec.rb │ ├── bookmarks_helper_spec.rb │ └── mods_helper_spec.rb ├── lib │ ├── authors_users_separation_updater_spec.rb │ ├── fake_data_generator_spec.rb │ ├── forum_bot_spec.rb │ ├── imgur_spec.rb │ ├── multi_authors_updater_spec.rb │ └── scraper │ │ ├── base_processor_spec.rb │ │ ├── base_spec.rb │ │ ├── post_processor_spec.rb │ │ ├── subforum_processor_spec.rb │ │ └── subforum_scraper_spec.rb ├── models │ ├── author_spec.rb │ ├── authors_mod_spec.rb │ ├── bookmark_spec.rb │ ├── category_spec.rb │ ├── download_spec.rb │ ├── favorite_spec.rb │ ├── forum_post_spec.rb │ ├── forum_validation_spec.rb │ ├── game_spec.rb │ ├── game_version_spec.rb │ ├── mod_file_spec.rb │ ├── mod_game_version_spec.rb │ ├── mod_spec.rb │ ├── mod_version_spec.rb │ ├── search_term_spec.rb │ ├── subforum_spec.rb │ ├── tag_spec.rb │ ├── user_spec.rb │ └── visit_spec.rb ├── rails_helper.rb ├── routing │ └── mods_routes_spec.rb ├── serializers │ ├── author_serializer_spec.rb │ ├── category_serializer_spec.rb │ ├── mod_file_serializer_spec.rb │ ├── mod_serializer_spec.rb │ ├── mod_version_serializer_spec.rb │ └── user_serializer_spec.rb ├── spec_helper.rb └── views │ ├── forum_validations │ ├── new_spec.rb │ └── show_spec.rb │ └── mods │ ├── index_spec.rb │ └── show_spec.rb └── vendor └── assets ├── javascripts └── .keep └── stylesheets └── .keep /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | -r rails_helper 2 | --color 3 | #--tag focus 4 | -------------------------------------------------------------------------------- /.slugignore: -------------------------------------------------------------------------------- 1 | /design 2 | /spec -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/Gemfile -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/Rakefile -------------------------------------------------------------------------------- /app/admin/category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/admin/category.rb -------------------------------------------------------------------------------- /app/admin/dashboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/admin/dashboard.rb -------------------------------------------------------------------------------- /app/admin/forum_post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/admin/forum_post.rb -------------------------------------------------------------------------------- /app/admin/game.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/admin/game.rb -------------------------------------------------------------------------------- /app/admin/mod.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/admin/mod.rb -------------------------------------------------------------------------------- /app/admin/subforum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/admin/subforum.rb -------------------------------------------------------------------------------- /app/admin/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/admin/user.rb -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/batthern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/images/batthern.png -------------------------------------------------------------------------------- /app/assets/images/checkered-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/images/checkered-pattern.png -------------------------------------------------------------------------------- /app/assets/javascripts/active_admin.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/javascripts/active_admin.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/bookmarks.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/javascripts/bookmarks.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/inputs/multi_datalist.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/javascripts/inputs/multi_datalist.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/lib/image_modal.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/javascripts/lib/image_modal.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/lib/image_mover.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/javascripts/lib/image_mover.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/lib/mod_images.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/javascripts/lib/mod_images.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/mods.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/javascripts/mods.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/official_app_banner.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/javascripts/official_app_banner.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/active_admin.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/active_admin.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/application.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/application.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/bookmarks.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/bookmarks.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/errors.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/errors.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/forum_validations.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/forum_validations.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/layout.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/layout.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/mixins/utils.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/mixins/utils.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/mods/edit.sass: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/mods/index.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/mods/index.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/mods/mod_card.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/mods/mod_card.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/mods/mod_form.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/mods/mod_form.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/mods/show.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/mods/show.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/official_app_banner.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/official_app_banner.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/partials/footer.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/partials/footer.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/partials/header.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/partials/header.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/partials/search_bar.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/partials/search_bar.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/shared/base_elements.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/shared/base_elements.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/shared/btn.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/shared/btn.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/shared/formtastic.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/shared/formtastic.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/shared/helpers.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/shared/helpers.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/shared/inputs.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/shared/inputs.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/shared/query_highlight.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/shared/query_highlight.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/shared/thumbnails.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/shared/thumbnails.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/static.sass: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/users/devise.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/users/devise.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/users/identification_form.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/users/identification_form.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/users/users.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/users/users.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/vars/colors.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/vars/colors.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/vars/font_awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/vars/font_awesome.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/vars/font_awesome_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/vars/font_awesome_vars.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/vars/fonts.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/vars/fonts.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/vars/images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/assets/stylesheets/vars/images.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/vars/misc.sass: -------------------------------------------------------------------------------- 1 | $border-radius: 2px -------------------------------------------------------------------------------- /app/controllers/api/api_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/controllers/api/api_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/categories_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/controllers/api/categories_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/mods_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/controllers/api/mods_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/authors_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/controllers/authors_controller.rb -------------------------------------------------------------------------------- /app/controllers/bookmarks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/controllers/bookmarks_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/forum_validations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/controllers/forum_validations_controller.rb -------------------------------------------------------------------------------- /app/controllers/mods_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/controllers/mods_controller.rb -------------------------------------------------------------------------------- /app/controllers/static_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/controllers/static_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/registrations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/controllers/users/registrations_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/controllers/users/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/decorators/author_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/decorators/author_decorator.rb -------------------------------------------------------------------------------- /app/decorators/bookmark_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/decorators/bookmark_decorator.rb -------------------------------------------------------------------------------- /app/decorators/mod_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/decorators/mod_decorator.rb -------------------------------------------------------------------------------- /app/decorators/mods_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/decorators/mods_decorator.rb -------------------------------------------------------------------------------- /app/helpers/active_admin/views_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/helpers/active_admin/views_helper.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/bookmarks_helper.rb: -------------------------------------------------------------------------------- 1 | module BookmarksHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/mods_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/helpers/mods_helper.rb -------------------------------------------------------------------------------- /app/helpers/session_helper.rb: -------------------------------------------------------------------------------- 1 | module SessionHelper 2 | 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/users_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/helpers/users_helper.rb -------------------------------------------------------------------------------- /app/inputs/attachment_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/inputs/attachment_input.rb -------------------------------------------------------------------------------- /app/inputs/categories_select_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/inputs/categories_select_input.rb -------------------------------------------------------------------------------- /app/inputs/multi_datalist_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/inputs/multi_datalist_input.rb -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/ability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/models/ability.rb -------------------------------------------------------------------------------- /app/models/admin_ability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/models/admin_ability.rb -------------------------------------------------------------------------------- /app/models/author.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/models/author.rb -------------------------------------------------------------------------------- /app/models/authors_mod.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/models/authors_mod.rb -------------------------------------------------------------------------------- /app/models/bookmark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/models/bookmark.rb -------------------------------------------------------------------------------- /app/models/categories_mod.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/models/categories_mod.rb -------------------------------------------------------------------------------- /app/models/category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/models/category.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/download.rb: -------------------------------------------------------------------------------- 1 | class Download < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/models/favorite.rb: -------------------------------------------------------------------------------- 1 | class Favorite < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/models/forum_post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/models/forum_post.rb -------------------------------------------------------------------------------- /app/models/forum_validation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/models/forum_validation.rb -------------------------------------------------------------------------------- /app/models/game.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/models/game.rb -------------------------------------------------------------------------------- /app/models/game_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/models/game_version.rb -------------------------------------------------------------------------------- /app/models/mod.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/models/mod.rb -------------------------------------------------------------------------------- /app/models/mod_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/models/mod_file.rb -------------------------------------------------------------------------------- /app/models/mod_game_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/models/mod_game_version.rb -------------------------------------------------------------------------------- /app/models/mod_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/models/mod_version.rb -------------------------------------------------------------------------------- /app/models/search_term.rb: -------------------------------------------------------------------------------- 1 | class SearchTerm < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/models/subforum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/models/subforum.rb -------------------------------------------------------------------------------- /app/models/tag.rb: -------------------------------------------------------------------------------- 1 | class Tag < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/visit.rb: -------------------------------------------------------------------------------- 1 | class Visit < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/serializers/author_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/serializers/author_serializer.rb -------------------------------------------------------------------------------- /app/serializers/category_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/serializers/category_serializer.rb -------------------------------------------------------------------------------- /app/serializers/mod_file_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/serializers/mod_file_serializer.rb -------------------------------------------------------------------------------- /app/serializers/mod_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/serializers/mod_serializer.rb -------------------------------------------------------------------------------- /app/serializers/mod_version_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/serializers/mod_version_serializer.rb -------------------------------------------------------------------------------- /app/serializers/user_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/serializers/user_serializer.rb -------------------------------------------------------------------------------- /app/views/authors/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/authors/show.html.haml -------------------------------------------------------------------------------- /app/views/bookmarks/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/bookmarks/index.html.haml -------------------------------------------------------------------------------- /app/views/devise/mailer/reset_password_instructions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/devise/mailer/reset_password_instructions.html.haml -------------------------------------------------------------------------------- /app/views/devise/passwords/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/devise/passwords/edit.html.haml -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/devise/passwords/new.html.haml -------------------------------------------------------------------------------- /app/views/devise/shared/_links.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/devise/shared/_links.haml -------------------------------------------------------------------------------- /app/views/errors/base.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/errors/base.html.haml -------------------------------------------------------------------------------- /app/views/forum_validations/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/forum_validations/new.html.haml -------------------------------------------------------------------------------- /app/views/forum_validations/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/forum_validations/show.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_footer.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/layouts/_footer.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_google_analytics.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/layouts/_google_analytics.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_header.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/layouts/_header.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_search_bar.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/layouts/_search_bar.html.haml -------------------------------------------------------------------------------- /app/views/layouts/application.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/layouts/application.html.haml -------------------------------------------------------------------------------- /app/views/layouts/blank_page.html.haml: -------------------------------------------------------------------------------- 1 | .content-block 2 | = yield -------------------------------------------------------------------------------- /app/views/mods/_download_button.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/mods/_download_button.html.haml -------------------------------------------------------------------------------- /app/views/mods/_file_fields.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/mods/_file_fields.html.haml -------------------------------------------------------------------------------- /app/views/mods/_filter_bar.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/mods/_filter_bar.html.haml -------------------------------------------------------------------------------- /app/views/mods/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/mods/_form.html.haml -------------------------------------------------------------------------------- /app/views/mods/_mod_card.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/mods/_mod_card.html.haml -------------------------------------------------------------------------------- /app/views/mods/_mod_data_table.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/mods/_mod_data_table.html.haml -------------------------------------------------------------------------------- /app/views/mods/_mods_filters_list.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/mods/_mods_filters_list.html.haml -------------------------------------------------------------------------------- /app/views/mods/_version_fields.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/mods/_version_fields.html.haml -------------------------------------------------------------------------------- /app/views/mods/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/mods/edit.html.haml -------------------------------------------------------------------------------- /app/views/mods/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/mods/index.html.haml -------------------------------------------------------------------------------- /app/views/mods/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/mods/new.html.haml -------------------------------------------------------------------------------- /app/views/mods/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/mods/show.html.haml -------------------------------------------------------------------------------- /app/views/static/how_to_install.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/static/how_to_install.html.haml -------------------------------------------------------------------------------- /app/views/static/how_to_make.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/static/how_to_make.html.haml -------------------------------------------------------------------------------- /app/views/static/how_to_submit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/static/how_to_submit.html.haml -------------------------------------------------------------------------------- /app/views/users/_identification_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/users/_identification_form.html.haml -------------------------------------------------------------------------------- /app/views/users/registrations/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/users/registrations/edit.html.haml -------------------------------------------------------------------------------- /app/views/users/registrations/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/users/registrations/new.html.haml -------------------------------------------------------------------------------- /app/views/users/registrations/signed_up_autogenerated.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/users/registrations/signed_up_autogenerated.html.haml -------------------------------------------------------------------------------- /app/views/users/sessions/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/app/views/users/sessions/new.html.haml -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/bin/spring -------------------------------------------------------------------------------- /cassette_explorer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/cassette_explorer.rb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/database.yml.example -------------------------------------------------------------------------------- /config/database.yml.travis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/database.yml.travis -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/active_admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/initializers/active_admin.rb -------------------------------------------------------------------------------- /config/initializers/active_model_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/initializers/active_model_serializer.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/formtastic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/initializers/formtastic.rb -------------------------------------------------------------------------------- /config/initializers/friendly_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/initializers/friendly_id.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/rack_zippy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/initializers/rack_zippy.rb -------------------------------------------------------------------------------- /config/initializers/require_custom_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/initializers/require_custom_logger.rb -------------------------------------------------------------------------------- /config/initializers/sass_base64.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/initializers/sass_base64.rb -------------------------------------------------------------------------------- /config/initializers/sass_dump_fixer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/initializers/sass_dump_fixer.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/forum_validations.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/locales/forum_validations.en.yml -------------------------------------------------------------------------------- /config/locales/layouts.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/locales/layouts.en.yml -------------------------------------------------------------------------------- /config/locales/mods.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/locales/mods.en.yml -------------------------------------------------------------------------------- /config/locales/simple_form.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/locales/simple_form.en.yml -------------------------------------------------------------------------------- /config/locales/static.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/locales/static.en.yml -------------------------------------------------------------------------------- /config/locales/users.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/locales/users.en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /db/db/migrate/20140708031335_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/db/migrate/20140708031335_devise_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20140708031335_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140708031335_devise_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20140708052858_create_mods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140708052858_create_mods.rb -------------------------------------------------------------------------------- /db/migrate/20140708052950_create_downloads.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140708052950_create_downloads.rb -------------------------------------------------------------------------------- /db/migrate/20140708053004_create_visits.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140708053004_create_visits.rb -------------------------------------------------------------------------------- /db/migrate/20140708053221_create_mod_files.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140708053221_create_mod_files.rb -------------------------------------------------------------------------------- /db/migrate/20140708053544_add_attachment_attachment_to_mod_files.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140708053544_add_attachment_attachment_to_mod_files.rb -------------------------------------------------------------------------------- /db/migrate/20140708054706_create_mod_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140708054706_create_mod_versions.rb -------------------------------------------------------------------------------- /db/migrate/20140708054726_create_categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140708054726_create_categories.rb -------------------------------------------------------------------------------- /db/migrate/20140708054741_add_attachment_icon_to_categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140708054741_add_attachment_icon_to_categories.rb -------------------------------------------------------------------------------- /db/migrate/20140708054800_create_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140708054800_create_tags.rb -------------------------------------------------------------------------------- /db/migrate/20140708054837_create_mods_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140708054837_create_mods_tags.rb -------------------------------------------------------------------------------- /db/migrate/20140708055015_create_favorites.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140708055015_create_favorites.rb -------------------------------------------------------------------------------- /db/migrate/20140708055040_create_search_terms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140708055040_create_search_terms.rb -------------------------------------------------------------------------------- /db/migrate/20140708055106_create_game_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140708055106_create_game_versions.rb -------------------------------------------------------------------------------- /db/migrate/20140709033539_create_mod_assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140709033539_create_mod_assets.rb -------------------------------------------------------------------------------- /db/migrate/20140709033554_add_attachment_image_to_mod_assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140709033554_add_attachment_image_to_mod_assets.rb -------------------------------------------------------------------------------- /db/migrate/20140709060645_add_name_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140709060645_add_name_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20140715043515_add_icon_class_to_categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140715043515_add_icon_class_to_categories.rb -------------------------------------------------------------------------------- /db/migrate/20140715232152_add_description_to_mods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140715232152_add_description_to_mods.rb -------------------------------------------------------------------------------- /db/migrate/20140716004121_add_slug_to_mods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140716004121_add_slug_to_mods.rb -------------------------------------------------------------------------------- /db/migrate/20140716004128_add_slug_to_categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140716004128_add_slug_to_categories.rb -------------------------------------------------------------------------------- /db/migrate/20140719054541_convert_mods_forum_comments_count_to_integer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140719054541_convert_mods_forum_comments_count_to_integer.rb -------------------------------------------------------------------------------- /db/migrate/20140719223634_create_active_admin_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140719223634_create_active_admin_comments.rb -------------------------------------------------------------------------------- /db/migrate/20140720220912_add_sort_order_to_mod_assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140720220912_add_sort_order_to_mod_assets.rb -------------------------------------------------------------------------------- /db/migrate/20140720223441_add_game_version_start_end_to_mod_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140720223441_add_game_version_start_end_to_mod_version.rb -------------------------------------------------------------------------------- /db/migrate/20140721012059_add_sort_order_to_mod_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140721012059_add_sort_order_to_mod_versions.rb -------------------------------------------------------------------------------- /db/migrate/20140721020918_add_sort_order_to_mod_files.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140721020918_add_sort_order_to_mod_files.rb -------------------------------------------------------------------------------- /db/migrate/20140721054605_set_counts_default_to_0.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140721054605_set_counts_default_to_0.rb -------------------------------------------------------------------------------- /db/migrate/20140721061853_convert_mod_version_datetime_to_date.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140721061853_convert_mod_version_datetime_to_date.rb -------------------------------------------------------------------------------- /db/migrate/20140721221740_add_summary_to_mods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140721221740_add_summary_to_mods.rb -------------------------------------------------------------------------------- /db/migrate/20140721222538_add_game_version_to_mod_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140721222538_add_game_version_to_mod_versions.rb -------------------------------------------------------------------------------- /db/migrate/20140722230634_add_sort_order_to_game_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140722230634_add_sort_order_to_game_versions.rb -------------------------------------------------------------------------------- /db/migrate/20140722234250_remove_default_from_sort_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140722234250_remove_default_from_sort_order.rb -------------------------------------------------------------------------------- /db/migrate/20140723230459_add_group_id_to_game_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140723230459_add_group_id_to_game_versions.rb -------------------------------------------------------------------------------- /db/migrate/20140723234601_add_is_group_to_game_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140723234601_add_is_group_to_game_versions.rb -------------------------------------------------------------------------------- /db/migrate/20140724000358_create_games.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140724000358_create_games.rb -------------------------------------------------------------------------------- /db/migrate/20140724000416_add_game_to_game_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140724000416_add_game_to_game_versions.rb -------------------------------------------------------------------------------- /db/migrate/20140728223617_add_game_version_start_and_game_version_end_to_mods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140728223617_add_game_version_start_and_game_version_end_to_mods.rb -------------------------------------------------------------------------------- /db/migrate/20140729013409_create_game_versions_mods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140729013409_create_game_versions_mods.rb -------------------------------------------------------------------------------- /db/migrate/20140731023047_create_game_version_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140731023047_create_game_version_groups.rb -------------------------------------------------------------------------------- /db/migrate/20140731030542_add_game_versions_string_to_mod.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140731030542_add_game_versions_string_to_mod.rb -------------------------------------------------------------------------------- /db/migrate/20140731223914_create_mod_game_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140731223914_create_mod_game_versions.rb -------------------------------------------------------------------------------- /db/migrate/20140731232141_add_game_versions_string_to_mod_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140731232141_add_game_versions_string_to_mod_versions.rb -------------------------------------------------------------------------------- /db/migrate/20140801005051_remove_all_the_trash_columns_and_tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140801005051_remove_all_the_trash_columns_and_tables.rb -------------------------------------------------------------------------------- /db/migrate/20140804021455_add_description_html_to_mods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140804021455_add_description_html_to_mods.rb -------------------------------------------------------------------------------- /db/migrate/20140810200911_add_precise_game_version_string_to_mod_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140810200911_add_precise_game_version_string_to_mod_versions.rb -------------------------------------------------------------------------------- /db/migrate/20140810223511_create_forum_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140810223511_create_forum_posts.rb -------------------------------------------------------------------------------- /db/migrate/20140810224431_add_forum_post_to_mods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140810224431_add_forum_post_to_mods.rb -------------------------------------------------------------------------------- /db/migrate/20140812111143_add_edited_at_to_forum_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140812111143_add_edited_at_to_forum_posts.rb -------------------------------------------------------------------------------- /db/migrate/20140813014354_add_mod_to_forum_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140813014354_add_mod_to_forum_posts.rb -------------------------------------------------------------------------------- /db/migrate/20140813014607_add_post_number_to_forum_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140813014607_add_post_number_to_forum_posts.rb -------------------------------------------------------------------------------- /db/migrate/20140813014801_add_index_to_forum_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140813014801_add_index_to_forum_posts.rb -------------------------------------------------------------------------------- /db/migrate/20140813020437_add_title_changed_to_forum_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140813020437_add_title_changed_to_forum_posts.rb -------------------------------------------------------------------------------- /db/migrate/20140813151628_add_forum_subforum_url_to_mods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20140813151628_add_forum_subforum_url_to_mods.rb -------------------------------------------------------------------------------- /db/migrate/20141003142707_add_forum_url_and_media_link_to_mods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20141003142707_add_forum_url_and_media_link_to_mods.rb -------------------------------------------------------------------------------- /db/migrate/20141029002644_convert_mod_released_at_date_to_datetime.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20141029002644_convert_mod_released_at_date_to_datetime.rb -------------------------------------------------------------------------------- /db/migrate/20150224201733_add_imgur_album_id_to_mod.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150224201733_add_imgur_album_id_to_mod.rb -------------------------------------------------------------------------------- /db/migrate/20150303055609_add_imgur_is_album_to_mods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150303055609_add_imgur_is_album_to_mods.rb -------------------------------------------------------------------------------- /db/migrate/20150303060730_add_imgur_extension_to_mods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150303060730_add_imgur_extension_to_mods.rb -------------------------------------------------------------------------------- /db/migrate/20150303061050_add_imgur_to_mods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150303061050_add_imgur_to_mods.rb -------------------------------------------------------------------------------- /db/migrate/20150712121842_create_categories_mods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150712121842_create_categories_mods.rb -------------------------------------------------------------------------------- /db/migrate/20150713042200_add_slug_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150713042200_add_slug_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20150713123241_add_last_release_date_to_mods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150713123241_add_last_release_date_to_mods.rb -------------------------------------------------------------------------------- /db/migrate/20150713142609_add_download_url_to_mod_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150713142609_add_download_url_to_mod_file.rb -------------------------------------------------------------------------------- /db/migrate/20150714090306_add_not_a_mod_to_forum_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150714090306_add_not_a_mod_to_forum_posts.rb -------------------------------------------------------------------------------- /db/migrate/20150717091318_convert_mods_summary_to_text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150717091318_convert_mods_summary_to_text.rb -------------------------------------------------------------------------------- /db/migrate/20150720100308_make_mod_slug_unique.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150720100308_make_mod_slug_unique.rb -------------------------------------------------------------------------------- /db/migrate/20150720190647_create_authors_mods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150720190647_create_authors_mods.rb -------------------------------------------------------------------------------- /db/migrate/20150721120835_add_autogenerated_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150721120835_add_autogenerated_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20150721162608_make_user_name_unique.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150721162608_make_user_name_unique.rb -------------------------------------------------------------------------------- /db/migrate/20150722191106_create_subforums.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150722191106_create_subforums.rb -------------------------------------------------------------------------------- /db/migrate/20150722191442_add_number_to_subforums.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150722191442_add_number_to_subforums.rb -------------------------------------------------------------------------------- /db/migrate/20150722191517_add_subforum_id_to_forum_post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150722191517_add_subforum_id_to_forum_post.rb -------------------------------------------------------------------------------- /db/migrate/20150722210917_add_default_title_changed_to_forum_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150722210917_add_default_title_changed_to_forum_posts.rb -------------------------------------------------------------------------------- /db/migrate/20150722215126_add_forum_posts_count_to_subforums.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150722215126_add_forum_posts_count_to_subforums.rb -------------------------------------------------------------------------------- /db/migrate/20150722233819_add_last_scrap_at_to_subforums.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150722233819_add_last_scrap_at_to_subforums.rb -------------------------------------------------------------------------------- /db/migrate/20150723185125_multi_authors_update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150723185125_multi_authors_update.rb -------------------------------------------------------------------------------- /db/migrate/20150724141339_set_default_forum_post_and_forum_subforum_url.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150724141339_set_default_forum_post_and_forum_subforum_url.rb -------------------------------------------------------------------------------- /db/migrate/20150724155022_add_visible_to_mods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150724155022_add_visible_to_mods.rb -------------------------------------------------------------------------------- /db/migrate/20150727151824_add_contact_and_info_json_name_to_mods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150727151824_add_contact_and_info_json_name_to_mods.rb -------------------------------------------------------------------------------- /db/migrate/20150727221452_add_info_json_name_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150727221452_add_info_json_name_index.rb -------------------------------------------------------------------------------- /db/migrate/20150728201946_create_bookmarks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150728201946_create_bookmarks.rb -------------------------------------------------------------------------------- /db/migrate/20150728202722_add_bookmarks_count_to_mods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150728202722_add_bookmarks_count_to_mods.rb -------------------------------------------------------------------------------- /db/migrate/20150804041005_create_authors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150804041005_create_authors.rb -------------------------------------------------------------------------------- /db/migrate/20150804053214_remove_author_name_from_mods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150804053214_remove_author_name_from_mods.rb -------------------------------------------------------------------------------- /db/migrate/20150804055944_change_authors_slug_to_be_unique.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150804055944_change_authors_slug_to_be_unique.rb -------------------------------------------------------------------------------- /db/migrate/20150804093423_authors_users_separation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150804093423_authors_users_separation.rb -------------------------------------------------------------------------------- /db/migrate/20150804093750_create_forum_validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150804093750_create_forum_validations.rb -------------------------------------------------------------------------------- /db/migrate/20150806015412_add_pm_sent_to_forum_validation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150806015412_add_pm_sent_to_forum_validation.rb -------------------------------------------------------------------------------- /db/migrate/20150806060622_add_forum_name_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150806060622_add_forum_name_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20150807093532_add_additional_contributors_to_mods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150807093532_add_additional_contributors_to_mods.rb -------------------------------------------------------------------------------- /db/migrate/20150807095122_rename_mods_author_id_to_owner_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150807095122_rename_mods_author_id_to_owner_id.rb -------------------------------------------------------------------------------- /db/migrate/20150807104820_add_author_to_mods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150807104820_add_author_to_mods.rb -------------------------------------------------------------------------------- /db/migrate/20150807140522_set_mod_authors_to_mod_author.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/migrate/20150807140522_set_mod_authors_to_mod_author.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /design/FactorioModsFavicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/design/FactorioModsFavicon.png -------------------------------------------------------------------------------- /design/FactorioModsFavicon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/design/FactorioModsFavicon.psd -------------------------------------------------------------------------------- /design/FactorioModsFavicon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/design/FactorioModsFavicon2.png -------------------------------------------------------------------------------- /design/FactorioModsFavicon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/design/FactorioModsFavicon3.png -------------------------------------------------------------------------------- /design/FactorioModsFavicon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/design/FactorioModsFavicon4.png -------------------------------------------------------------------------------- /design/FactorioModsFavicon5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/design/FactorioModsFavicon5.png -------------------------------------------------------------------------------- /design/FactorioModsFavicon6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/design/FactorioModsFavicon6.png -------------------------------------------------------------------------------- /design/FactorioModsFavicon7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/design/FactorioModsFavicon7.png -------------------------------------------------------------------------------- /design/NoPicture.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/design/NoPicture.psd -------------------------------------------------------------------------------- /design/NoPicture2.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/design/NoPicture2.psd -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/authors_users_separation_updater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/lib/authors_users_separation_updater.rb -------------------------------------------------------------------------------- /lib/custom_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/lib/custom_logger.rb -------------------------------------------------------------------------------- /lib/fake_data_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/lib/fake_data_generator.rb -------------------------------------------------------------------------------- /lib/forum_bot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/lib/forum_bot.rb -------------------------------------------------------------------------------- /lib/imgur.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/lib/imgur.rb -------------------------------------------------------------------------------- /lib/multi_authors_updater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/lib/multi_authors_updater.rb -------------------------------------------------------------------------------- /lib/scraper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/lib/scraper.rb -------------------------------------------------------------------------------- /lib/scraper/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/lib/scraper/base.rb -------------------------------------------------------------------------------- /lib/scraper/base_processor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/lib/scraper/base_processor.rb -------------------------------------------------------------------------------- /lib/scraper/post_processor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/lib/scraper/post_processor.rb -------------------------------------------------------------------------------- /lib/scraper/subforum_processor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/lib/scraper/subforum_processor.rb -------------------------------------------------------------------------------- /lib/scraper/subforum_scraper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/lib/scraper/subforum_scraper.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/public/humans.txt -------------------------------------------------------------------------------- /public/images/missing_large_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/public/images/missing_large_thumbnail.png -------------------------------------------------------------------------------- /public/images/missing_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/public/images/missing_thumbnail.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/public/robots.txt -------------------------------------------------------------------------------- /spec/controllers/api/api_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/controllers/api/api_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/api/categories_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/controllers/api/categories_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/api/mods_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/controllers/api/mods_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/authors_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/controllers/authors_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/bookmarks_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/controllers/bookmarks_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/forum_validations_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/controllers/forum_validations_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/mods_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/controllers/mods_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/users/registrations_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/controllers/users/registrations_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/users/sessions_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/controllers/users/sessions_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/users_controller_spec.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/decorators/author_decorator_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe AuthorDecorator do 4 | end 5 | -------------------------------------------------------------------------------- /spec/decorators/bookmark_decorator_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe BookmarkDecorator do 4 | end 5 | -------------------------------------------------------------------------------- /spec/decorators/mod_decorator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/decorators/mod_decorator_spec.rb -------------------------------------------------------------------------------- /spec/factories/authors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/factories/authors.rb -------------------------------------------------------------------------------- /spec/factories/authors_mods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/factories/authors_mods.rb -------------------------------------------------------------------------------- /spec/factories/bookmarks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/factories/bookmarks.rb -------------------------------------------------------------------------------- /spec/factories/forum_post_factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/factories/forum_post_factories.rb -------------------------------------------------------------------------------- /spec/factories/forum_validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/factories/forum_validations.rb -------------------------------------------------------------------------------- /spec/factories/game_versions_mods_factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/factories/game_versions_mods_factories.rb -------------------------------------------------------------------------------- /spec/factories/mod_factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/factories/mod_factories.rb -------------------------------------------------------------------------------- /spec/factories/mod_game_version_factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/factories/mod_game_version_factories.rb -------------------------------------------------------------------------------- /spec/factories/subforums.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/factories/subforums.rb -------------------------------------------------------------------------------- /spec/factories/user_factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/factories/user_factories.rb -------------------------------------------------------------------------------- /spec/features/adding_bookmarks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/features/adding_bookmarks_spec.rb -------------------------------------------------------------------------------- /spec/features/common_sign_in_up_form_everywhere_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/features/common_sign_in_up_form_everywhere_spec.rb -------------------------------------------------------------------------------- /spec/features/mods_edit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/features/mods_edit_spec.rb -------------------------------------------------------------------------------- /spec/features/mods_index_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/features/mods_index_spec.rb -------------------------------------------------------------------------------- /spec/features/mods_new_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/features/mods_new_spec.rb -------------------------------------------------------------------------------- /spec/features/mods_show_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/features/mods_show_spec.rb -------------------------------------------------------------------------------- /spec/features/new_user_forum_account_validation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/features/new_user_forum_account_validation_spec.rb -------------------------------------------------------------------------------- /spec/features/probabilistic_category_list_count_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/features/probabilistic_category_list_count_spec.rb -------------------------------------------------------------------------------- /spec/features/redirect_to_previous_page_after_login_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/features/redirect_to_previous_page_after_login_spec.rb -------------------------------------------------------------------------------- /spec/features/the_game_version_string_should_be_updated_after_editing_a_mod_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/features/the_game_version_string_should_be_updated_after_editing_a_mod_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/sample_images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/sample_images/1.jpg -------------------------------------------------------------------------------- /spec/fixtures/sample_images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/sample_images/2.jpg -------------------------------------------------------------------------------- /spec/fixtures/sample_images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/sample_images/3.jpg -------------------------------------------------------------------------------- /spec/fixtures/sample_images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/sample_images/4.jpg -------------------------------------------------------------------------------- /spec/fixtures/sample_images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/sample_images/5.jpg -------------------------------------------------------------------------------- /spec/fixtures/test-giant.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/test-giant.zip -------------------------------------------------------------------------------- /spec/fixtures/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/test.jpg -------------------------------------------------------------------------------- /spec/fixtures/test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/test.zip -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Imgur/_url/should_be_invalid_if_a_true_image_URL_is_a_404_too.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/vcr_cassettes/Imgur/_url/should_be_invalid_if_a_true_image_URL_is_a_404_too.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Imgur/_url/should_be_invalid_without_an_image_src_in_the_page.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/vcr_cassettes/Imgur/_url/should_be_invalid_without_an_image_src_in_the_page.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Imgur/_url/should_be_valid_with_an_https_domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/vcr_cassettes/Imgur/_url/should_be_valid_with_an_https_domain.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Imgur/_url/should_de_invalid_with_a_404_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/vcr_cassettes/Imgur/_url/should_de_invalid_with_a_404_image.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Imgur/_url/should_detect_its_an_album_with_a_gallery_URL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/vcr_cassettes/Imgur/_url/should_detect_its_an_album_with_a_gallery_URL.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Imgur/_url/should_detect_that_its_an_image_with_an_image_URL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/vcr_cassettes/Imgur/_url/should_detect_that_its_an_image_with_an_image_URL.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Imgur/_url/should_detect_that_its_an_image_with_an_image_true_URL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/vcr_cassettes/Imgur/_url/should_detect_that_its_an_image_with_an_image_true_URL.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Imgur/_url/should_detect_that_its_and_album_with_an_album_URL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/vcr_cassettes/Imgur/_url/should_detect_that_its_and_album_with_an_album_URL.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/_cassette_name_subforum_multiple_pages_record_new_episodes_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/vcr_cassettes/_cassette_name_subforum_multiple_pages_record_new_episodes_.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/_cassette_name_subforum_single_page_record_new_episodes_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/vcr_cassettes/_cassette_name_subforum_single_page_record_new_episodes_.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/fake_data_generator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/vcr_cassettes/fake_data_generator.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/features/forum_validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/vcr_cassettes/features/forum_validation.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/forum_bot/auth_invalid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/vcr_cassettes/forum_bot/auth_invalid.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/forum_bot/auth_valid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/vcr_cassettes/forum_bot/auth_valid.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/forum_bot/get_user_id_nonesense.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/vcr_cassettes/forum_bot/get_user_id_nonesense.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/forum_bot/get_user_id_partial.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/vcr_cassettes/forum_bot/get_user_id_partial.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/forum_bot/get_user_id_real.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/vcr_cassettes/forum_bot/get_user_id_real.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/forum_post.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/vcr_cassettes/forum_post.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/scraper_base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/vcr_cassettes/scraper_base.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/subforum_model_scrap_itself.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/fixtures/vcr_cassettes/subforum_model_scrap_itself.yml -------------------------------------------------------------------------------- /spec/helpers/application_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/helpers/application_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/bookmarks_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/helpers/bookmarks_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/mods_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/helpers/mods_helper_spec.rb -------------------------------------------------------------------------------- /spec/lib/authors_users_separation_updater_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/lib/authors_users_separation_updater_spec.rb -------------------------------------------------------------------------------- /spec/lib/fake_data_generator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/lib/fake_data_generator_spec.rb -------------------------------------------------------------------------------- /spec/lib/forum_bot_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/lib/forum_bot_spec.rb -------------------------------------------------------------------------------- /spec/lib/imgur_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/lib/imgur_spec.rb -------------------------------------------------------------------------------- /spec/lib/multi_authors_updater_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/lib/multi_authors_updater_spec.rb -------------------------------------------------------------------------------- /spec/lib/scraper/base_processor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/lib/scraper/base_processor_spec.rb -------------------------------------------------------------------------------- /spec/lib/scraper/base_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/lib/scraper/base_spec.rb -------------------------------------------------------------------------------- /spec/lib/scraper/post_processor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/lib/scraper/post_processor_spec.rb -------------------------------------------------------------------------------- /spec/lib/scraper/subforum_processor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/lib/scraper/subforum_processor_spec.rb -------------------------------------------------------------------------------- /spec/lib/scraper/subforum_scraper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/lib/scraper/subforum_scraper_spec.rb -------------------------------------------------------------------------------- /spec/models/author_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/models/author_spec.rb -------------------------------------------------------------------------------- /spec/models/authors_mod_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/models/authors_mod_spec.rb -------------------------------------------------------------------------------- /spec/models/bookmark_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/models/bookmark_spec.rb -------------------------------------------------------------------------------- /spec/models/category_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/models/category_spec.rb -------------------------------------------------------------------------------- /spec/models/download_spec.rb: -------------------------------------------------------------------------------- 1 | describe Download, :type => :model do 2 | 3 | end 4 | -------------------------------------------------------------------------------- /spec/models/favorite_spec.rb: -------------------------------------------------------------------------------- 1 | describe Favorite, :type => :model do 2 | 3 | end 4 | -------------------------------------------------------------------------------- /spec/models/forum_post_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/models/forum_post_spec.rb -------------------------------------------------------------------------------- /spec/models/forum_validation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/models/forum_validation_spec.rb -------------------------------------------------------------------------------- /spec/models/game_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/models/game_spec.rb -------------------------------------------------------------------------------- /spec/models/game_version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/models/game_version_spec.rb -------------------------------------------------------------------------------- /spec/models/mod_file_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/models/mod_file_spec.rb -------------------------------------------------------------------------------- /spec/models/mod_game_version_spec.rb: -------------------------------------------------------------------------------- 1 | describe ModGameVersion, :type => :model do 2 | 3 | end 4 | -------------------------------------------------------------------------------- /spec/models/mod_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/models/mod_spec.rb -------------------------------------------------------------------------------- /spec/models/mod_version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/models/mod_version_spec.rb -------------------------------------------------------------------------------- /spec/models/search_term_spec.rb: -------------------------------------------------------------------------------- 1 | describe SearchTerm, :type => :model do 2 | 3 | end 4 | -------------------------------------------------------------------------------- /spec/models/subforum_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/models/subforum_spec.rb -------------------------------------------------------------------------------- /spec/models/tag_spec.rb: -------------------------------------------------------------------------------- 1 | describe Tag, :type => :model do 2 | 3 | end 4 | -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/models/visit_spec.rb: -------------------------------------------------------------------------------- 1 | describe Visit, :type => :model do 2 | 3 | end 4 | -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/routing/mods_routes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/routing/mods_routes_spec.rb -------------------------------------------------------------------------------- /spec/serializers/author_serializer_spec.rb: -------------------------------------------------------------------------------- 1 | describe AuthorSerializer do 2 | 3 | end 4 | -------------------------------------------------------------------------------- /spec/serializers/category_serializer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/serializers/category_serializer_spec.rb -------------------------------------------------------------------------------- /spec/serializers/mod_file_serializer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/serializers/mod_file_serializer_spec.rb -------------------------------------------------------------------------------- /spec/serializers/mod_serializer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/serializers/mod_serializer_spec.rb -------------------------------------------------------------------------------- /spec/serializers/mod_version_serializer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/serializers/mod_version_serializer_spec.rb -------------------------------------------------------------------------------- /spec/serializers/user_serializer_spec.rb: -------------------------------------------------------------------------------- 1 | describe UserSerializer do 2 | 3 | end 4 | -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'rails_helper' 2 | -------------------------------------------------------------------------------- /spec/views/forum_validations/new_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/views/forum_validations/new_spec.rb -------------------------------------------------------------------------------- /spec/views/forum_validations/show_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zequez/FactorioMods/HEAD/spec/views/forum_validations/show_spec.rb -------------------------------------------------------------------------------- /spec/views/mods/index_spec.rb: -------------------------------------------------------------------------------- 1 | describe "mods/index.html.erb", :type => :view do 2 | 3 | end 4 | -------------------------------------------------------------------------------- /spec/views/mods/show_spec.rb: -------------------------------------------------------------------------------- 1 | describe "mods/show.haml", type: :view do 2 | 3 | end 4 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------