{"id":13878500,"url":"https://github.com/hummingbird-me/kitsu-server","last_synced_at":"2025-05-16T06:06:19.419Z","repository":{"id":11096880,"uuid":"68339720","full_name":"hummingbird-me/kitsu-server","owner":"hummingbird-me","description":":steam_locomotive: Rails API server for Kitsu","archived":false,"fork":false,"pushed_at":"2025-03-11T22:49:00.000Z","size":11045,"stargazers_count":188,"open_issues_count":36,"forks_count":141,"subscribers_count":9,"default_branch":"the-future","last_synced_at":"2025-05-08T11:47:48.423Z","etag":null,"topics":["anime","api","graphql","hacktoberfest","hummingbird","kitsu","kitsu-server","manga","rails","ruby"],"latest_commit_sha":null,"homepage":"https://kitsu.app/api/playground","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hummingbird-me.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-09-15T23:36:19.000Z","updated_at":"2025-05-07T12:11:36.000Z","dependencies_parsed_at":"2023-12-21T04:40:00.791Z","dependency_job_id":"af91fc8a-3027-442e-bb05-5b981ed960ca","html_url":"https://github.com/hummingbird-me/kitsu-server","commit_stats":{"total_commits":5580,"total_committers":30,"mean_commits":186.0,"dds":0.6146953405017921,"last_synced_commit":"28991307e01cfc48fded8fc407d624b262a2b745"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hummingbird-me%2Fkitsu-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hummingbird-me%2Fkitsu-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hummingbird-me%2Fkitsu-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hummingbird-me%2Fkitsu-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hummingbird-me","download_url":"https://codeload.github.com/hummingbird-me/kitsu-server/tar.gz/refs/heads/the-future","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254478189,"owners_count":22077676,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["anime","api","graphql","hacktoberfest","hummingbird","kitsu","kitsu-server","manga","rails","ruby"],"created_at":"2024-08-06T08:01:51.597Z","updated_at":"2025-05-16T06:06:14.406Z","avatar_url":"https://github.com/hummingbird-me.png","language":"Ruby","funding_links":[],"categories":["Ruby"],"sub_categories":[],"readme":"# Kitsu Server\n\n![Kitsu Test Suite](https://github.com/hummingbird-me/kitsu-server/workflows/Kitsu%20Test%20Suite/badge.svg)\n![Kitsu API Deployment](https://github.com/hummingbird-me/kitsu-server/workflows/Kitsu%20API%20Deployment/badge.svg)\n[![Code Climate](https://codeclimate.com/github/hummingbird-me/kitsu-server/badges/gpa.svg)](https://codeclimate.com/github/hummingbird-me/kitsu-server) \n[![Test Coverage](https://codeclimate.com/github/hummingbird-me/kitsu-server/badges/coverage.svg)](https://codeclimate.com/github/hummingbird-me/kitsu-server/coverage)\n\n---\n**\u003cp align=\"center\"\u003eThis is our server repository. It contains the rails application for Kitsu.\u003cbr /\u003eCheck out the [tools], [web], [mobile] and [api docs] repositories.\u003c/p\u003e**\n\n[tools]:https://github.com/hummingbird-me/kitsu-tools\n[web]:https://github.com/hummingbird-me/kitsu-web\n[mobile]:https://github.com/hummingbird-me/kitsu-mobile\n[api docs]:https://github.com/hummingbird-me/api-docs\n\n---\n\nThis README outlines the details of collaborating on this application.\n\n## Styleguide\n\n* [Ruby](https://github.com/bbatsov/ruby-style-guide)\n* [Rails](https://github.com/bbatsov/rails-style-guide) - - [Amendments](https://github.com/hummingbird-me/kitsu-server/blob/the-future/README.md#rails)\n\n## Styleguide Amendments\n\nThese amendments are listed below, though we may forget some. Rubocop will help\nyou, and we have a `.rubocop.yml` which we develop with.\n\n### Rails\n#### ActiveRecord Models\n * Group macro-style methods at the beginning of the class definition, in the\n   following order:\n\n   ```ruby\n   class User \u003c ActiveRecord::Base\n     # put the default scope at the top\n     default_scope { includes(:favorites) }\n\n     # then the constants\n     COLORS = %w[red green blue]\n\n     # then named scopes\n     scope(:banned) { where(banned: true) }\n\n     # then any mixin-style \"acts_as_*\" and similar methods\n     acts_as_sortable\n     devise :database_authenticable, :registerable, :recoverable,\n            :validatable, :confirmable\n\n     # then field-type macros such as enums and associations\n     enum rating_system: %i[smilies stars]\n     has_many :library_entries\n\n     # then validation\n     validates :email, presence: true\n     validates name, presence: true\n\n     # and then callbacks\n     before_save :do_the_thing\n\n     # ... and finally the rest of the methods!\n   end\n   ```\n   \n## Contributors\n   \n[![](https://sourcerer.io/fame/wopian/hummingbird-me/kitsu-server/images/0)](https://sourcerer.io/fame/wopian/hummingbird-me/kitsu-server/links/0)[![](https://sourcerer.io/fame/wopian/hummingbird-me/kitsu-server/images/1)](https://sourcerer.io/fame/wopian/hummingbird-me/kitsu-server/links/1)[![](https://sourcerer.io/fame/wopian/hummingbird-me/kitsu-server/images/2)](https://sourcerer.io/fame/wopian/hummingbird-me/kitsu-server/links/2)[![](https://sourcerer.io/fame/wopian/hummingbird-me/kitsu-server/images/3)](https://sourcerer.io/fame/wopian/hummingbird-me/kitsu-server/links/3)[![](https://sourcerer.io/fame/wopian/hummingbird-me/kitsu-server/images/4)](https://sourcerer.io/fame/wopian/hummingbird-me/kitsu-server/links/4)[![](https://sourcerer.io/fame/wopian/hummingbird-me/kitsu-server/images/5)](https://sourcerer.io/fame/wopian/hummingbird-me/kitsu-server/links/5)[![](https://sourcerer.io/fame/wopian/hummingbird-me/kitsu-server/images/6)](https://sourcerer.io/fame/wopian/hummingbird-me/kitsu-server/links/6)[![](https://sourcerer.io/fame/wopian/hummingbird-me/kitsu-server/images/7)](https://sourcerer.io/fame/wopian/hummingbird-me/kitsu-server/links/7)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhummingbird-me%2Fkitsu-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhummingbird-me%2Fkitsu-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhummingbird-me%2Fkitsu-server/lists"}