-
Notifications
You must be signed in to change notification settings - Fork 44
/
markdown2confluence.gemspec
30 lines (24 loc) · 1.11 KB
/
markdown2confluence.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
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/markdown2confluence/version", __FILE__)
Gem::Specification.new do |s|
s.name = "markdown2confluence"
s.version = Markdown2Confluence::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Patrick Debois"]
s.email = ["patrick.debois@jedi.be"]
s.homepage = "http://github.com/jedi4ever/markdown2confluence/"
s.summary = %q{Convert Markdown to confluence wiki style}
s.description = %q{Based on Kramdown, a convert object .to_confluence}
s.required_rubygems_version = ">= 1.3.6"
s.required_ruby_version = '>= 1.9.3'
s.rubyforge_project = "markdown2confluence"
s.add_dependency "kramdown"
s.add_dependency "nokogiri"
s.add_development_dependency('rake', "~> 0.9.2")
s.add_development_dependency('activesupport', '>= 3.0.0')
s.add_development_dependency('turn')
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
s.test_files = s.files.select { |path| path =~ /^test\/test_.*\.rb/ }
end