-
Notifications
You must be signed in to change notification settings - Fork 15
/
moodle2cc.gemspec
34 lines (29 loc) · 1.41 KB
/
moodle2cc.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/moodle2cc/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Christopher Durtschi", "Kevin Carter", "Instructure"]
gem.description = %q{Migrates Moodle backup ZIP to IMS Common Cartridge package}
gem.summary = %q{Migrates Moodle backup ZIP to IMS Common Cartridge package}
gem.homepage = "https://github.com/instructure/moodle2cc"
gem.license = 'AGPLv3'
gem.add_runtime_dependency "rubyzip", '>=1.0.0'
gem.add_runtime_dependency "instructure-happymapper", '~> 0.5.10'
gem.add_runtime_dependency "builder"
gem.add_runtime_dependency "thor"
gem.add_runtime_dependency "nokogiri"
gem.add_runtime_dependency "rdiscount"
gem.add_development_dependency "rake"
gem.add_development_dependency "minitest"
gem.add_development_dependency "rspec", "~> 3.0"
gem.add_development_dependency "guard"
gem.add_development_dependency "guard-bundler"
gem.add_development_dependency "guard-minitest"
gem.add_development_dependency "guard-rspec"
gem.add_development_dependency "byebug"
gem.files = Dir["{bin,lib}/**/*"] + ["Rakefile"]
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.name = "moodle2cc"
gem.require_paths = ["lib"]
gem.version = Moodle2CC::VERSION
end