forked from motor-admin/motor-admin-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
motor-admin.gemspec
55 lines (46 loc) · 1.71 KB
/
motor-admin.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# frozen_string_literal: true
require_relative 'lib/motor/version'
Gem::Specification.new do |spec|
spec.name = 'motor-admin'
spec.version = Motor::VERSION
spec.authors = ['Pete Matsyburka']
spec.email = ['[email protected]']
spec.summary = 'Low-code Admin panel and Business intelligence'
spec.license = 'AGPL-3.0'
spec.metadata = {
'bug_tracker_uri' => 'https://github.com/motor-admin/motor-admin-rails/issues',
'homepage_uri' => 'https://www.getmotoradmin.com',
'source_code_uri' => 'https://github.com/motor-admin/motor-admin-rails',
'documentation_uri' => 'https://github.com/motor-admin/motor-admin-rails/tree/master/guides',
'rubygems_mfa_required' => 'true'
}
spec.files = Dir[
'{app,config,lib}/**/*',
'ui/dist/images/*.png',
'ui/dist/icons/*.gz',
'ui/dist/fonts/*.woff2',
'ui/dist/*.{gz,json}',
'LICENSE',
'Rakefile',
'README.md'
]
spec.required_ruby_version = '>= 2.6'
spec.add_dependency 'ar_lazy_preload', '~> 1.0'
spec.add_dependency 'audited', '~> 5.0'
spec.add_dependency 'cancancan', '~> 3.0'
spec.add_dependency 'fugit', '~> 1.0'
spec.add_dependency 'rails', '>= 5.2'
spec.post_install_message = "
==================
Run `rails g motor:install && rake db:migrate`
to configure and start using Motor Admin
Run `rails g motor:upgrade && rake db:migrate`
to perform data migration and enable the latest features
==================
"
spec.description = <<~TEXT
Motor Admin allows to create a flexible admin panel with writing less code.
All customizations to the admin panel can be made directly in the UI without
the need of writing any configurations code.
TEXT
end