{"id":27567707,"url":"https://github.com/sferik/rails_admin","last_synced_at":"2025-04-20T21:01:04.859Z","repository":{"id":999138,"uuid":"810796","full_name":"railsadminteam/rails_admin","owner":"railsadminteam","description":"RailsAdmin is a Rails engine that provides an easy-to-use interface for managing your data","archived":false,"fork":false,"pushed_at":"2025-03-09T08:42:49.000Z","size":20997,"stargazers_count":7925,"open_issues_count":197,"forks_count":2261,"subscribers_count":139,"default_branch":"master","last_synced_at":"2025-04-17T08:31:32.140Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/railsadminteam.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","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":"2010-08-01T17:01:00.000Z","updated_at":"2025-04-14T12:43:52.000Z","dependencies_parsed_at":"2023-07-11T14:17:41.231Z","dependency_job_id":"57b5e375-3f46-4b17-87f1-bd93c350bc70","html_url":"https://github.com/railsadminteam/rails_admin","commit_stats":{"total_commits":4158,"total_committers":517,"mean_commits":8.042553191489361,"dds":0.8075998075998077,"last_synced_commit":"06c9f5cf237fcae6898adde8e3e776bdc87f3e76"},"previous_names":["sferik/rails_admin"],"tags_count":74,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/railsadminteam%2Frails_admin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/railsadminteam%2Frails_admin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/railsadminteam%2Frails_admin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/railsadminteam%2Frails_admin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/railsadminteam","download_url":"https://codeload.github.com/railsadminteam/rails_admin/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249961531,"owners_count":21352091,"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":[],"created_at":"2025-04-20T21:00:50.943Z","updated_at":"2025-04-20T21:01:04.801Z","avatar_url":"https://github.com/railsadminteam.png","language":"Ruby","readme":"# RailsAdmin\n\n[![Gem Version](https://img.shields.io/gem/v/rails_admin.svg)][gem]\n[![Build Status](https://github.com/railsadminteam/rails_admin/actions/workflows/test.yml/badge.svg)][ghactions]\n[![Coverage Status](https://img.shields.io/coveralls/railsadminteam/rails_admin.svg)][coveralls]\n[![Code Climate](https://codeclimate.com/github/railsadminteam/rails_admin.svg)][codeclimate]\n[![SemVer](https://api.dependabot.com/badges/compatibility_score?dependency-name=rails_admin\u0026package-manager=bundler\u0026version-scheme=semver)][semver]\n\n[gem]: https://rubygems.org/gems/rails_admin\n[ghactions]: https://github.com/railsadminteam/rails_admin/actions/workflows/test.yml\n[coveralls]: https://coveralls.io/r/railsadminteam/rails_admin\n[codeclimate]: https://codeclimate.com/github/railsadminteam/rails_admin\n[semver]: https://dependabot.com/compatibility-score.html?dependency-name=rails_admin\u0026package-manager=bundler\u0026version-scheme=semver\n\nRailsAdmin is a Rails engine that provides an easy-to-use interface for managing your data.\n\n## Getting started\n\n- Check out [the docs][docs].\n- Try the [live demo][demo]. ([Source code][dummy_app])\n\n[demo]: https://rails-admin.fly.dev/admin/\n[dummy_app]: https://github.com/railsadminteam/rails_admin/tree/master/spec/dummy_app\n[docs]: https://github.com/railsadminteam/rails_admin/wiki\n\n## Features\n\n- CRUD any data with ease\n- Custom actions\n- Automatic form validation\n- Search and filtering\n- Export data to CSV/JSON/XML\n- Authentication (via [Devise](https://github.com/plataformatec/devise) or other)\n- Authorization (via [CanCanCan](https://github.com/CanCanCommunity/cancancan) or [Pundit](https://github.com/elabs/pundit))\n- User action history (via [PaperTrail](https://github.com/airblade/paper_trail))\n- Supported ORMs\n  - ActiveRecord\n  - Mongoid\n\n## Installation\n\n1. On your gemfile: `gem 'rails_admin', '~\u003e 3.0'`\n2. Run `bundle install`\n3. Run `rails g rails_admin:install`\n4. Provide a namespace for the routes when asked\n5. Start a server `rails s` and administer your data at [/admin](http://localhost:3000/admin). (if you chose default namespace: /admin)\n\n## Upgrading from 2.x\n\nDue to introduction of Webpack/Webpacker support, some additional dependency and configuration will be needed.\nRunning `rails g rails_admin:install` will suggest you some required changes, based on current setup of your app.\n\n## Configuration\n\n### Global\n\nIn `config/initializers/rails_admin.rb`:\n\n[Details](https://github.com/railsadminteam/rails_admin/wiki/Base-configuration)\n\nTo begin with, you may be interested in setting up [Devise](https://github.com/railsadminteam/rails_admin/wiki/Devise), [CanCanCan](https://github.com/railsadminteam/rails_admin/wiki/Cancancan) or [Papertrail](https://github.com/railsadminteam/rails_admin/wiki/Papertrail)!\n\n### Per model\n\n```ruby\nclass Ball \u003c ActiveRecord::Base\n  validates :name, presence: true\n  belongs_to :player\n\n  rails_admin do\n    configure :player do\n      label 'Owner of this ball: '\n    end\n  end\nend\n```\n\nDetails: [Models](https://github.com/railsadminteam/rails_admin/wiki/Models), [Groups](https://github.com/railsadminteam/rails_admin/wiki/Groups), [Fields](https://github.com/railsadminteam/rails_admin/wiki/Fields)\n\n## Support\n\nIf you have a question, please check this README, the wiki, and the [list of\nknown issues][troubleshoot].\n\n[troubleshoot]: https://github.com/railsadminteam/rails_admin/wiki/Troubleshoot\n\nIf you still have a question, you can ask the [official RailsAdmin mailing\nlist][list].\n\n[list]: http://groups.google.com/group/rails_admin\n\nIf you think you found a bug in RailsAdmin, you can [submit an issue](https://github.com/railsadminteam/rails_admin/issues/new).\n\n## Supported Ruby Versions\n\nThis library aims to support and is [tested against][ghactions] the following Ruby implementations:\n\n- Ruby 2.6\n- Ruby 2.7\n- Ruby 3.0\n- Ruby 3.1\n- Ruby 3.2\n- [JRuby][]\n\n[jruby]: http://jruby.org/\n","funding_links":[],"categories":["Ruby","Rails Plugins","Admin Panel","Admin Panels","Rails libraries","后台管理","Gems","Admin Interface"],"sub_categories":["Rails Admin Interfaces","Omniauth","Rails"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsferik%2Frails_admin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsferik%2Frails_admin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsferik%2Frails_admin/lists"}