mdurl-rb 1.0.0.3 → 1.0.5

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -3
  3. data/lib/mdurl-rb/version.rb +1 -1
  4. metadata +21 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2603c6c8889dcb583ac0d890e104794fa3aab7cc
4
- data.tar.gz: b5b294a2aff198bb6236b470cd118caa7198fc91
3
+ metadata.gz: 12153e85af6fa65c3936f960193e6b1e4ee1daff
4
+ data.tar.gz: 416c3957379d244793483f825323292e8e9f9dd9
5
5
  SHA512:
6
- metadata.gz: a64d811eb4364669f607e121f59456f8be5a9646858b678be838f8f40c8ba4111c1de15d89372e92cdaa87fde053a13aa17883ba5aeeb9707a90437ba5e71a48
7
- data.tar.gz: 0a894850e135ce81b6f68dbeffb988fe9fc25851f7585731361a2c45e7c352014602f97320ee0d87896252ac3be0c95d6670aa8edcf9be73484ad77a60c68e64
6
+ metadata.gz: 854e36b26cbd305dfff999d07e35369ac0fda71ead1507564280100db401ee0a700a898b798cde1b8284817495a64195f3b80b2d70ec7de81cb3d2d2e836708d
7
+ data.tar.gz: a9496136e83b04473104cb1b19bf239ea1638eaa69131e2e0ab693c621db85f9e8afa83cf35c504b06b35c0e04beb8fb08a06504473583a9dedd8485a8fd6f12
data/README.md CHANGED
@@ -1,10 +1,13 @@
1
- # mdurl
1
+ # mdurl-rb
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/mdurl-rb.svg)](http://badge.fury.io/rb/mdurl-rb)
4
+ [![Build Status](https://travis-ci.org/digitalmoksha/mdurl-rb.svg?branch=master)](https://travis-ci.org/digitalmoksha/mdurl-rb)
4
5
 
5
- URL utilities for [motion-markdown-it](https://github.com/digitalmoksha/motion-markdown-it) parser, for both Ruby and RubyMotion
6
+ This gem is a port of the [mdurl javascript package](https://github.com/markdown-it/mdurl) by Vitaly Puzrin and Alex Kocharin, that is used for the [markdown-it](https://github.com/markdown-it/markdown-it) package. Currently synced with mdurl 1.0.5
7
+
8
+ ---
6
9
 
7
- This gem is a port of the [mdurl javascript package](https://github.com/markdown-it/mdurl) by Vitaly Puzrin and Alex Kocharin, that is used for the [markdown-it](https://github.com/markdown-it/markdown-it) package
10
+ URL utilities for [motion-markdown-it](https://github.com/digitalmoksha/motion-markdown-it) parser, for both Ruby and RubyMotion
8
11
 
9
12
  ## API
10
13
 
@@ -1,5 +1,5 @@
1
1
  module MDUrl
2
2
 
3
- VERSION = '1.0.0.3'
3
+ VERSION = '1.0.5'
4
4
 
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mdurl-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.3
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brett Walker
@@ -10,8 +10,22 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2015-03-27 00:00:00.000000000 Z
14
- dependencies: []
13
+ date: 2018-04-01 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: bacon-expect
17
+ requirement: !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - "~>"
20
+ - !ruby/object:Gem::Version
21
+ version: '1.0'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - "~>"
27
+ - !ruby/object:Gem::Version
28
+ version: '1.0'
15
29
  description: Ruby version of MDUrl for motion-markdown-it for use with Ruby and RubyMotion
16
30
  email: github@digitalmoksha.com
17
31
  executables: []
@@ -52,14 +66,14 @@ required_rubygems_version: !ruby/object:Gem::Requirement
52
66
  version: '0'
53
67
  requirements: []
54
68
  rubyforge_project:
55
- rubygems_version: 2.4.5
69
+ rubygems_version: 2.6.8
56
70
  signing_key:
57
71
  specification_version: 4
58
72
  summary: MDUrl for motion-markdown-it in Ruby
59
73
  test_files:
60
- - spec/mdurl-rb/decode_spec.rb
74
+ - spec/spec_helper.rb
61
75
  - spec/mdurl-rb/encode_spec.rb
62
- - spec/mdurl-rb/fixtures/url_spec.rb
63
76
  - spec/mdurl-rb/format_spec.rb
64
77
  - spec/mdurl-rb/parse_spec.rb
65
- - spec/spec_helper.rb
78
+ - spec/mdurl-rb/fixtures/url_spec.rb
79
+ - spec/mdurl-rb/decode_spec.rb