forked from mindset/scorm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
scorm.gemspec
19 lines (15 loc) · 923 Bytes
/
scorm.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Gem::Specification.new do |s|
s.name = 'scorm'
s.version = '1.0.4'
s.summary = 'Ruby library for reading, extracting and generating SCORM files.'
s.description = 'SCORM is a Ruby library for reading and extracting Shareable Content Object Reference Model (SCORM) files. SCORM is a standardized package format used mainly by e-learning software to help with the exchange of course material between systems in an interoperable way. This gem supports SCORM 1.2 and SCORM 2004.'
s.author = 'Niklas Holmgren'
s.email = '[email protected]'
s.homepage = 'http://github.com/mindset/scorm/'
s.files = Dir['README', 'LICENSE', 'bin/**/*', 'examples/**/*', 'skeleton/**/*', 'lib/**/{*,.[a-z]*}']
s.require_path = 'lib'
s.bindir = 'bin'
s.executables = ['scorm']
s.default_executable = 'scorm'
s.add_dependency('rubyzip', '~> 0.9.4')
end