string_markdown 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.md CHANGED
@@ -22,10 +22,6 @@ Or install it yourself as:
22
22
  text = <<MARKDOWN
23
23
  # level1 header
24
24
  ## level2 header
25
- ```
26
- block code
27
- ```
28
-
29
25
  * list
30
26
  * list
31
27
 
@@ -36,7 +32,7 @@ text.to_md
36
32
  ```
37
33
 
38
34
  ```
39
- <h1>level1 header</h1>\n\n<h2>level2 header</h2>\n<div class=\"highlight\"><pre><span class=\"n\">block</span> <span class=\"n\">code</span>\n</pre>\n</div>\n\n<ul>\n<li>list</li>\n<li>list</li>\n</ul>\n\n<p><a href=\"http://example.com\">http://example.com</a></p>\n
35
+ <h1>level1 header</h1>\n\n<h2>level2 header</h2>\n</div>\n\n<ul>\n<li>list</li>\n<li>list</li>\n</ul>\n\n<p><a href=\"http://example.com\">http://example.com</a></p>\n
40
36
  ```
41
37
 
42
38
  ## Contributing
@@ -1,3 +1,3 @@
1
1
  module StringMarkdown
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -6,7 +6,7 @@ Gem::Specification.new do |gem|
6
6
  gem.email = ["koshikawa@ppworks.jp"]
7
7
  gem.description = %q{Add String#to_md support}
8
8
  gem.summary = %q{Add String#to_md}
9
- gem.homepage = "https://github.com/ppworks/string-markdown"
9
+ gem.homepage = "https://github.com/ppworks/string_markdown"
10
10
 
11
11
  gem.files = `git ls-files`.split($\)
12
12
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: string_markdown
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -77,7 +77,7 @@ files:
77
77
  - spec/extention/string_spec.rb
78
78
  - spec/spec_helper.rb
79
79
  - string_markdown.gemspec
80
- homepage: https://github.com/ppworks/string-markdown
80
+ homepage: https://github.com/ppworks/string_markdown
81
81
  licenses: []
82
82
  post_install_message:
83
83
  rdoc_options: []