-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractical.gemspec
More file actions
37 lines (31 loc) · 1.34 KB
/
practical.gemspec
File metadata and controls
37 lines (31 loc) · 1.34 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
# frozen_string_literal: true
require_relative "lib/practical/version"
Gem::Specification.new do |spec|
spec.name = "practical"
spec.version = Practical::VERSION
spec.authors = ["Thomas Cannon"]
spec.email = ["tcannon00@gmail.com"]
spec.summary = "The Practical Framework"
spec.description = "The Ruby code for the Practical Framework"
spec.homepage = "https://github.com/practical-computer/practical"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/practical-computer/practical"
spec.metadata["changelog_uri"] = "https://github.com/practical-computer/practical/CHANGELOG.md"
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "Rakefile", "README.md"]
end
spec.add_dependency "rails", ">= 8.0.2"
spec.add_dependency "view_component"
spec.add_dependency "loaf"
spec.add_dependency "pagy", ">= 43.0"
spec.add_dependency "honeybadger"
spec.add_dependency "semantic_logger"
spec.add_dependency "devise-passkeys"
spec.add_dependency "shrine"
spec.add_dependency "oaken"
spec.add_dependency "action_policy"
end