-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalchemy-solid_errors.gemspec
More file actions
43 lines (35 loc) · 1.83 KB
/
alchemy-solid_errors.gemspec
File metadata and controls
43 lines (35 loc) · 1.83 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
require_relative "lib/alchemy/solid_errors/version"
Gem::Specification.new do |spec|
spec.name = "alchemy-solid_errors"
spec.version = Alchemy::SolidErrors::VERSION
spec.authors = ["Sascha Karnatz"]
spec.email = ["68833+kulturbande@users.noreply.github.com"]
spec.homepage = "https://sitediver.com"
spec.summary = "A simple integration of Solid Errors into AlchemyCMS"
spec.description = "A simple integration of Solid Errors into AlchemyCMS that adds a dashboard for error tracking."
spec.license = "BSD-3-Clause"
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/sitediver/alchemy-solid_errors"
spec.metadata["changelog_uri"] = "https://github.com/sitediver/alchemy-solid_errors/CHANGELOG.md"
spec.required_ruby_version = ">= 3.3.0"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "LICENSE", "Rakefile", "README.md"]
end
spec.add_dependency "rails", ">= 7.2.0", "< 9.0"
spec.add_dependency "alchemy_cms", ">= 7.4.0", "< 9.0"
spec.add_dependency "solid_errors", ">= 0.7", "< 1.0"
spec.add_development_dependency "capybara", ["~> 3.0"]
spec.add_development_dependency "factory_bot_rails", ["~> 6.0"]
spec.add_development_dependency "puma", ["~> 6.0"]
spec.add_development_dependency "rspec-rails", ["~> 7.1"]
spec.add_development_dependency "selenium-webdriver", ["~> 4.29"]
spec.post_install_message = <<~MSG
-------------------------------------------------------------
Thank you for installing Alchemy Solid Errors.
-------------------------------------------------------------
Please make sure, that alchemy-solid_errors is placed
after Alchemy CMS in your Gemfile!
-------------------------------------------------------------
MSG
end