forked from thoughtbot/administrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
administrate.gemspec
35 lines (28 loc) · 1.31 KB
/
administrate.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
$:.push File.expand_path("../lib", __FILE__)
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.homepage = "https://administrate-demo.herokuapp.com/"
s.summary = "A Rails engine for creating super-flexible admin dashboards"
s.license = "MIT"
s.files = Dir["{app,lib,docs}/**/*", "config/locales/**/*", "LICENSE", "Rakefile"]
s.add_dependency "actionpack", ">= 6.0", "< 8.0"
s.add_dependency "actionview", ">= 6.0", "< 8.0"
s.add_dependency "activerecord", ">= 6.0", "< 8.0"
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:
- No DSLs (domain-specific languages)
- 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.
DESCRIPTION
end