forked from bracken/wordpress2cc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wordpress2cc.gemspec
31 lines (27 loc) · 1.23 KB
/
wordpress2cc.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/wordpress2cc/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Bracken Mosbacker"]
gem.email = ["[email protected]"]
gem.description = %q{Migrates Wordpress backups to IMS Common Cartridge package}
gem.summary = %q{Migrates Wordpress backups to IMS Common Cartridge package}
gem.homepage = "https://github.com/bracken/wordpress2cc"
gem.add_runtime_dependency "rubyzip"
gem.add_runtime_dependency "happymapper"
gem.add_runtime_dependency "builder"
gem.add_runtime_dependency "thor"
gem.add_runtime_dependency "nokogiri"
gem.add_runtime_dependency "rdiscount"
gem.add_runtime_dependency "moodle2cc"
gem.add_development_dependency "rake"
gem.add_development_dependency "minitest"
gem.add_development_dependency "guard"
gem.add_development_dependency "guard-bundler"
gem.add_development_dependency "guard-minitest"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "wordpress2cc"
gem.require_paths = ["lib"]
gem.version = Wordpress2CC::VERSION
end