-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkapa.gemspec
35 lines (32 loc) · 1.42 KB
/
kapa.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
30
31
32
33
34
35
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "kapa/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "kapa"
s.version = Kapa::VERSION
s.authors = ["College of Education, University of Hawaii at Manoa"]
s.email = ["sishelp@hawaii.edu"]
s.homepage = "https://coe.hawaii.edu"
s.summary = "Office Records Engine"
s.description = "KAPA provides consolidated information tools to organize office records including personal information, electronic documents, calendars, tasks, messaging/notifications, etc.... Tools are distributed as Rails Engine so that developers can easily customize designs and functions to fit your organizational needs."
s.files = Dir["{app,config,db,lib}/**/*"] + ["LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["test/**/*"]
s.add_dependency 'rails', '~> 7.0.0'
s.add_dependency 'mysql2'
s.add_dependency 'authlogic'
s.add_dependency 'scrypt'
s.add_dependency 'american_date'
s.add_dependency 'paperclip'
s.add_dependency 'fastercsv'
s.add_dependency 'net-ldap'
s.add_dependency 'hashids'
s.add_dependency 'will_paginate'
s.add_dependency 'will_paginate-bootstrap'
s.add_dependency 'uglifier'
s.add_dependency 'sass-rails'
s.add_dependency 'sprockets', '~> 3.7.0'
s.add_dependency 'wicked_pdf'
s.add_dependency 'liquid'
s.add_dependency 'rails-csv-fixtures'
end