-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathhtml2md.gemspec
More file actions
24 lines (21 loc) · 814 Bytes
/
html2md.gemspec
File metadata and controls
24 lines (21 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
$LOAD_PATH.unshift 'lib'
#require "html2md/version"
Gem::Specification.new do |s|
s.name = "html2md"
s.version = '0.1.3'
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = "A library for converting basic html to markdown"
s.homepage = "https://github.com/pmorton/html2md"
s.email = "geeksitk@gmail.com"
s.authors = [ "Paul Morton" ]
s.has_rdoc = false
s.files = %w( README.md Rakefile LICENSE.md )
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("bin/**/*")
s.files += Dir.glob("man/**/*")
s.files += Dir.glob("features/**/*")
# s.executables = %w( #{name} )
s.description = <<desc
Converts Basic HTML to markdown
desc
end