-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathadministrate.gemspec
More file actions
28 lines (23 loc) · 1.06 KB
/
administrate.gemspec
File metadata and controls
28 lines (23 loc) · 1.06 KB
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
$:.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"]
s.email = ["nick@nickcharlton.net"]
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", "< 9.0"
s.add_dependency "actionview", ">= 6.0", "< 9.0"
s.add_dependency "activerecord", ">= 6.0", "< 9.0"
s.add_dependency "kaminari", "~> 1.2.2"
s.description = <<~DESCRIPTION
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