-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstrata.gemspec
More file actions
28 lines (22 loc) · 1.1 KB
/
strata.gemspec
File metadata and controls
28 lines (22 loc) · 1.1 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
# frozen_string_literal: true
require_relative "lib/strata/version"
Gem::Specification.new do |spec|
spec.name = "strata"
spec.version = Strata::VERSION
spec.authors = [ "Nava PBC" ]
spec.email = [ "strata@navapbc.com" ]
spec.homepage = "https://github.com/navapbc/strata-sdk-rails"
spec.summary = "Strata SDK for Rails"
spec.description = "Strata SDK for building government digital services with Rails."
spec.metadata["allowed_push_host"] = "https://example.com"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/navapbc/strata-sdk-rails"
spec.metadata["changelog_uri"] = "https://github.com/navapbc/strata-sdk-rails/commits/main/"
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.2.2.2"
spec.add_dependency "pundit", ">= 2.5.0"
spec.add_dependency "validates_timeliness", ">= 7.0.0" # Update to 8.0.0 when upgrading to Rails 8.0
spec.add_dependency "view_component", ">= 4.0.2"
end