-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathatomic_admin.gemspec
More file actions
22 lines (18 loc) · 910 Bytes
/
atomic_admin.gemspec
File metadata and controls
22 lines (18 loc) · 910 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/atomic_admin/version"
Gem::Specification.new do |spec|
spec.name = "atomic_admin"
spec.version = AtomicAdmin::VERSION
spec.authors = ["Nick Benoit"]
spec.email = ["nick.benoit@atomicjolt.com"]
spec.homepage = "https://github.com/atomicjolt/atomic_admin/"
spec.summary = "Engine to provide apis that power the atomic jolt admin app"
spec.description = "Engine to provide apis that power the atomic jolt admin app"
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/atomicjolt/atomic_admin/"
spec.metadata["changelog_uri"] = "https://github.com/atomicjolt/atomic_admin/"
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", "< 9.0"
end