-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivemodel-embedding.gemspec
More file actions
22 lines (17 loc) · 948 Bytes
/
activemodel-embedding.gemspec
File metadata and controls
22 lines (17 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require_relative "lib/active_model/embedding/version"
Gem::Specification.new do |spec|
spec.name = "activemodel-embedding"
spec.version = ActiveModel::Embedding::VERSION
spec.authors = ["mansakondo"]
spec.email = ["mansakondo22@gmail.com"]
spec.homepage = "https://github.com/mansakondo/activemodel-embedding"
spec.summary = "Embedded associations for your semi-structured data"
spec.description = "An ActiveModel extension to model your semi-structured data using embedded associations"
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "https://github.com/mansakondo/activemodel-embedding/blob/main/CHANGELOG.md"
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.required_ruby_version = ">= 2.5.0"
spec.add_dependency "rails", ">= 6.1.4"
end