-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloggera.gemspec
More file actions
25 lines (21 loc) · 1.13 KB
/
loggera.gemspec
File metadata and controls
25 lines (21 loc) · 1.13 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
require_relative "lib/loggera/version"
Gem::Specification.new do |spec|
spec.name = "loggera"
spec.version = Loggera::VERSION
spec.authors = ["Matias Carpintini"]
spec.email = ["carpintinimatias@gmail.com"]
spec.homepage = "https://github.com/matiascarpintini/loggera"
spec.summary = "Simple, efficient Rails engine to handle errors on production through a client-friendly UI."
spec.description = "Simple, efficient Rails engine to handle errors on production through a client-friendly UI."
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/matiascarpintini/loggera"
spec.metadata["changelog_uri"] = "https://github.com/matiascarpintini/loggera/CHANGELOG.md"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
spec.add_dependency "rails", ">= 7.0.3.1"
spec.add_dependency "pagy", "~> 5.10", ">= 5.10.1"
spec.add_dependency "tailwindcss-rails", "~> 2.0", ">= 2.0.13"
spec.add_dependency "importmap-rails", "~> 1.1", ">= 1.1.5"
end