bb-ruby 1.2.0 → 1.2.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 70b197a69b0f2ef22f95e3c56e14803d2794a1c6
4
- data.tar.gz: 01d37bf9261b35ebed4ce3df663554faa82bd1bc
3
+ metadata.gz: 4207bab9e5a5c740e63a0f43d3da16675cd258dc
4
+ data.tar.gz: fda3306ba81053247d2163b88d2f24ac9075e5d8
5
5
  SHA512:
6
- metadata.gz: cf742cda44a7789f8f2d467ff4549b555312c0b59c546fe82e80eb4d8bc3e63b22d2b01899a3fe5138a11d00312467e0ac8632d0d44bd959bd5cf109b7addbdd
7
- data.tar.gz: 0ba32520f906667ade9e77b9f73d59c3d3b94b8019994f153ec8b428193f73d96aebed8c05d233d99c6018b99f64e6ad462220336fb568c04033c056071b070b
6
+ metadata.gz: 7a79c9a15abaf3fae16931af4c87977f1b9bb4b785b1ff503d46190a99bda73ec73d12041d422ff874362fd3f8db2588f991524887eab17d7b070db26dfb1d1e
7
+ data.tar.gz: 6201c71878a6a239526b03100bbdc52126e71c4c735e3ffd68b3aa80fac817ecdef1fad4bb6c1e649dc5f3797fb173c857a6b444e65149c6f8a1e495739323e2
data/.gitignore CHANGED
@@ -9,3 +9,5 @@ script
9
9
  .DS_Store
10
10
  *.gem
11
11
  vendor/
12
+ Gemfile.lock
13
+ .ruby-version
@@ -1,7 +1,8 @@
1
+ sudo: false
1
2
  language: ruby
2
3
  rvm:
3
- - 2.2.3
4
- - 2.1.0
4
+ - 2.3.0
5
+ - 2.2.4
6
+ - 2.1.8
5
7
  - 2.0.0
6
8
  - 1.9.3
7
- - 1.8.7
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ == 1.2.1 2016-03-21
2
+
3
+ * Fix bug with nested url / center tags
4
+
1
5
  == 1.2.0 2016-01-11
2
6
 
3
7
  * Update embed code for Vimeo and YouTube
data/Gemfile CHANGED
@@ -2,7 +2,3 @@ source 'https://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in bb-ruby.gemspec
4
4
  gemspec
5
-
6
- group :development do
7
- gem 'rake'
8
- end
@@ -17,4 +17,10 @@ Gem::Specification.new do |gem|
17
17
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
18
18
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
19
19
  gem.require_paths = ["lib"]
20
+
21
+ gem.add_development_dependency "rake"
22
+
23
+ if RUBY_VERSION >= "2.2.0"
24
+ gem.add_development_dependency "test-unit"
25
+ end
20
26
  end
@@ -145,13 +145,13 @@ module BBRuby
145
145
  'Maybe try looking on [url]http://google.com[/url]',
146
146
  :link],
147
147
  'Link (Automatic)' => [
148
- %r{(\A|\s)(https?://[^\s<]+)},
148
+ %r{(\A|\s)(https?://[^\s<\[]+)},
149
149
  ' <a href="\2">\2</a>',
150
150
  'Hyperlink (automatic)',
151
151
  'Maybe try looking on http://www.google.com',
152
152
  :link],
153
153
  'Link (Automatic without leading http(s))' => [
154
- /(\A|\s)(www\.[^\s<]+)/,
154
+ /(\A|\s)(www\.[^\s<\[]+)/,
155
155
  ' <a href="http://\2">\2</a>',
156
156
  'Hyperlink (automatic without leading http(s))',
157
157
  'Maybe try looking on www.google.com',
@@ -1,3 +1,3 @@
1
1
  module BBRuby
2
- VERSION = '1.2.0'
2
+ VERSION = '1.2.1'
3
3
  end
@@ -349,4 +349,7 @@ class TestBBRuby < Test::Unit::TestCase
349
349
  assert_equal 'One<br />Two<br />Three lines!', 'One[br]Two[br]Three lines!'.bbcode_to_html
350
350
  end
351
351
 
352
+ def test_center_with_url
353
+ assert_equal '<div style="text-align: center;">hello <a href="http://www.test.com">www.test.com</a></div>', '[center]hello www.test.com[/center]'.bbcode_to_html
354
+ end
352
355
  end
metadata CHANGED
@@ -1,15 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bb-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Craig P. Jolicoeur
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-01-11 00:00:00.000000000 Z
12
- dependencies: []
11
+ date: 2016-03-21 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: test-unit
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
13
41
  description: BBCode for Ruby
14
42
  email:
15
43
  - cpjolicoeur@gmail.com
@@ -21,7 +49,6 @@ files:
21
49
  - ".travis.yml"
22
50
  - CHANGELOG
23
51
  - Gemfile
24
- - Gemfile.lock
25
52
  - LICENSE
26
53
  - README.md
27
54
  - Rakefile
@@ -50,7 +77,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
50
77
  version: '0'
51
78
  requirements: []
52
79
  rubyforge_project:
53
- rubygems_version: 2.4.5.1
80
+ rubygems_version: 2.5.1
54
81
  signing_key:
55
82
  specification_version: 4
56
83
  summary: BBRuby is a BBCode implementation for Ruby. It will convert strings with
@@ -1,16 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- bb-ruby (1.1.0)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- rake (10.1.0)
10
-
11
- PLATFORMS
12
- ruby
13
-
14
- DEPENDENCIES
15
- bb-ruby!
16
- rake