-
Notifications
You must be signed in to change notification settings - Fork 48
/
maglevcms.gemspec
57 lines (50 loc) · 1.84 KB
/
maglevcms.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
56
57
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
# Maintain your gem's version:
require 'maglev/version'
# rubocop:disable Metrics/BlockLength
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = 'maglevcms'
spec.version = Maglev::VERSION
spec.authors = ['Didier Lafforgue']
spec.email = ['[email protected]']
spec.homepage = 'https://www.maglev.dev/'
spec.summary = 'Website/page builder Ruby on Rails engine'
spec.description = <<-DOC
MaglevCMS integrates a powerful website/page builder with a polished UX/UI into your Ruby on Rails application, backed by a flexible and robust CMS engine.
DOC
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.0'
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
# to allow pushing to a single host or delete this section to allow pushing to any host.
# if spec.respond_to?(:metadata)
# spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
# else
# raise "RubyGems 2.0 or newer is required to protect against " \
# "public gem pushes."
# end
spec.files = Dir[
'.babelrc',
'.eslintrc.js',
'.yarnrc.yml',
'{.yarn,app,config,db,lib}/**/*',
'bin/vite',
'package.json',
'yarn.lock',
'postcss.config.cjs',
'tailwind.config.js',
'vite.config.ts',
'MIT-LICENSE',
'Rakefile',
'README.md'
]
spec.add_dependency 'jbuilder', '~> 2.12.0'
spec.add_dependency 'kaminari', '~> 1.2.1'
spec.add_dependency 'maglev-injectable', '~> 2.1.1'
spec.add_dependency 'rails', '< 9', '>= 6'
spec.add_dependency 'vite_rails', '< 4', '>= 3'
spec.add_dependency 'vite_ruby', '>= 3.5'
spec.add_development_dependency 'pg', '~> 1.5.9'
end
# rubocop:enable Metrics/BlockLength