-
Notifications
You must be signed in to change notification settings - Fork 0
/
cohousing.gemspec
27 lines (20 loc) · 947 Bytes
/
cohousing.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
# frozen_string_literal: true
require_relative "lib/cohousing/version"
Gem::Specification.new do |spec|
spec.name = "cohousing"
spec.version = Cohousing::VERSION
spec.authors = ["Adam Rice"]
spec.email = ["development@hashnotadam.com"]
spec.homepage = "https://github.com/HashNotAdam/cohousing"
spec.summary = "A security-first approach to tenanting a Ruby on Rails application"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.1.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/HashNotAdam/cohousing"
spec.metadata["changelog_uri"] = "https://github.com/HashNotAdam/cohousing/CHANGELOG.md"
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
spec.add_dependency "rails", ">= 6.1.0"
end