-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathood_appkit.gemspec
29 lines (24 loc) · 1.19 KB
/
ood_appkit.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
28
29
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "ood_appkit/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "ood_appkit"
s.version = OodAppkit::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Eric Franz", "Jeremy Nicklas"]
s.email = ["efranz@osc.edu", "jnicklas@osc.edu"]
s.summary = "Open OnDemand gem to help build OOD apps and interface with other OOD apps."
s.description = "Provides an interface to working with other Open OnDemand (OOD) apps. It provides a dataroot for OOD apps to write data to and common assets and helper objects for providing branding and documentation within the apps."
s.homepage = "https://github.com/OSC/ood_appkit"
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "LICENSE.txt", "Rakefile", "README.md"]
s.test_files = Dir["test/**/*"]
s.required_ruby_version = ">= 2.2.0"
s.add_dependency "rails", ">= 6.0.0"
s.add_dependency "ood_core", "~> 0.1"
s.add_dependency "addressable", "~> 2.4"
s.add_dependency "redcarpet", "~> 3.2"
s.add_dependency "lograge", "~>0.3"
s.add_development_dependency "sqlite3"
end