-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathatomic_lti.gemspec
More file actions
21 lines (17 loc) · 997 Bytes
/
atomic_lti.gemspec
File metadata and controls
21 lines (17 loc) · 997 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require_relative "lib/atomic_lti/version"
Gem::Specification.new do |spec|
spec.name = "atomic_lti"
spec.version = AtomicLti::VERSION
spec.authors = ["Matt Petro", "Justin Ball", "Nick Benoit"]
spec.email = ["matt.petro@atomicjolt.com", "justin.ball@atomicjolt.com", "nick.benoit@atomicjolt.com"]
spec.homepage = "https://github.com/atomicjolt/atomic_lti"
spec.summary = "AtomicLti implements the LTI Advantage specification."
spec.description = "AtomicLti implements the LTI Advantage specification. This gem does contain source code specific to other Atomic Jolt products"
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/atomicjolt/atomic_lti"
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.add_dependency "pg", "~> 1.3"
spec.add_dependency "rails", ">= 7.1", "< 9.0"
spec.add_development_dependency "ostruct"
end