Sha256: 43125f24a5c2798c0c02f68c34d7342e7e5d715407a6292b1e5dd1ba7461ace0
Contents?: true
Size: 1.05 KB
Versions: 1
Compression:
Stored size: 1.05 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "caramelize/version" Gem::Specification.new do |s| s.name = "caramelize" s.version = Caramelize::VERSION s.platform = Gem::Platform::RUBY s.license = "MIT" s.authors = ["Daniel Senff"] s.email = ["mail@danielsenff.de"] s.homepage = "http://github.com/Dahie/caramelize" s.summary = %q{Flexible and modular wiki conversion tool} s.description = %q{By defining the connectors from the input wiki you can migrate any wiki to git-based Gollum wiki repositories.} s.bindir = 'bin' s.add_dependency('mysql2') s.add_dependency('cmdparse') s.add_dependency('ruby-progressbar') s.add_dependency('gollum-lib', '>= 1.0.0') # grit dependency implicit through gollum s.rubyforge_project = "caramelize" s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
caramelize-0.2.0 | caramelize.gemspec |