Skip to content

Commit df148b0

Browse files
committed
Gemified library as repositext-kramdown
1 parent 31695db commit df148b0

File tree

4 files changed

+51
-1
lines changed

4 files changed

+51
-1
lines changed

.ruby-gemset

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
at-kramdown
1+
repositext-kramdown

Gemfile

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
source 'http://rubygems.org'
2+
3+
gemspec

license.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2013 Imazen
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of
6+
this software and associated documentation files (the "Software"), to deal in
7+
the Software without restriction, including without limitation the rights to
8+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9+
the Software, and to permit persons to whom the Software is furnished to do so,
10+
subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

repositext-kramdown.gemspec

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# -*- encoding: utf-8 -*-
2+
$:.push File.expand_path("../lib", __FILE__)
3+
4+
Gem::Specification.new do |s|
5+
s.name = "repositext-kramdown"
6+
s.version = '0.0.1'
7+
s.platform = Gem::Platform::RUBY
8+
s.authors = ["Nathanael Jones"]
9+
s.email = ["[email protected]"]
10+
s.homepage = "http://github.com/imazen/repositext-kramdown"
11+
s.summary = %q{Customized parser/converter for repositext}
12+
s.description = ""
13+
14+
s.files = `git ls-files`.split("\n")
15+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
16+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
17+
s.require_paths = ["lib"]
18+
19+
s.add_dependency('kramdown')
20+
s.add_dependency('nokogiri')
21+
s.add_dependency('rubyzip')
22+
23+
# Test libraries
24+
s.add_development_dependency('rake')
25+
s.add_development_dependency('minitest')
26+
s.add_development_dependency('minitest-spec-expect')
27+
end

0 commit comments

Comments
 (0)