-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In #2505, we stopped saying that Administrate doesn't have a DSL, but that pointed to some other things which are outdated in the README and Gemspec. This goes further with the rephrasing to remove some weasle words, comparisons to other frameworks (which made more sense when it was first released) and try to improve the vision we're pitching for Administrate now and into the future.
- Loading branch information
1 parent
20503b6
commit d7ba355
Showing
2 changed files
with
17 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,8 @@ require "administrate/version" | |
Gem::Specification.new do |s| | ||
s.name = "administrate" | ||
s.version = Administrate::VERSION | ||
s.authors = ["Nick Charlton", "Grayson Wright"] | ||
s.email = ["[email protected]", "[email protected]"] | ||
s.authors = ["Nick Charlton"] | ||
s.email = ["[email protected]"] | ||
s.homepage = "https://administrate-demo.herokuapp.com/" | ||
s.summary = "A Rails engine for creating super-flexible admin dashboards" | ||
s.license = "MIT" | ||
|
@@ -19,18 +19,10 @@ Gem::Specification.new do |s| | |
s.add_dependency "kaminari", "~> 1.2.2" | ||
|
||
s.description = <<~DESCRIPTION | ||
Administrate is heavily inspired by projects like Rails Admin and ActiveAdmin, | ||
but aims to provide a better user experience for site admins, | ||
and to be easier for developers to customize. | ||
To do that, we're following a few simple rules: | ||
- Stay as close to standard Rails as possible, keeping the | ||
Administrate-specific code as small as practical, | ||
- Support the simplest use cases, | ||
and let the user override defaults with standard tools | ||
such as plain Rails controllers and views. | ||
- Break up the library into core components and plugins, | ||
so each component stays small and easy to maintain. | ||
Administrate is a library for Rails that generates admin dashboards. These | ||
give users clean interfaces that allow them to create, edit, search, and | ||
delete records for any model in the application. Administrate aims to | ||
provide the best user experience, and doing as much work as possible for | ||
you, whilst also being flexible to customise. | ||
DESCRIPTION | ||
end |