ruby-bbcode-to-md 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -26,10 +26,23 @@ Then run
26
26
  bundle install
27
27
  ```
28
28
 
29
- And the gem is available in you application
29
+ And the gem is available in your application
30
30
 
31
31
  _Note: Do not forget to restart your server!_
32
32
 
33
+ ## Development
34
+ ### Known issues
35
+
36
+ - The parser doesn't handle nested quotes correctly.
37
+
38
+ ### Testing
39
+ Run
40
+ ```
41
+ bundle install
42
+ bundle exec rake test
43
+ ```
44
+ in the source directory to run the unit tests. Edit ruby_bbcode_test.rb to add tests.
45
+
33
46
  ## Acknowledgements
34
47
 
35
48
  Code is based on BBcode to HTML gem by Maarten Bezemer: http://github.com/veger/ruby-bbcode.git
@@ -1,12 +1,12 @@
1
1
  require 'active_support/core_ext/array/conversions'
2
2
 
3
3
  require 'tags/tags'
4
- require 'ruby-bbcode/debugging'
5
- require 'ruby-bbcode/tag_info'
6
- require 'ruby-bbcode/tag_sifter'
7
- require 'ruby-bbcode/tag_node'
8
- require 'ruby-bbcode/tag_collection'
9
- require 'ruby-bbcode/bbtree'
4
+ require 'ruby-bbcode-to-md/debugging'
5
+ require 'ruby-bbcode-to-md/tag_info'
6
+ require 'ruby-bbcode-to-md/tag_sifter'
7
+ require 'ruby-bbcode-to-md/tag_node'
8
+ require 'ruby-bbcode-to-md/tag_collection'
9
+ require 'ruby-bbcode-to-md/bbtree'
10
10
 
11
11
 
12
12
  module RubyBBCode
File without changes
File without changes
File without changes
File without changes
@@ -1,3 +1,3 @@
1
1
  module RubyBbcode
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-bbcode-to-md
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:
@@ -68,15 +68,15 @@ executables: []
68
68
  extensions: []
69
69
  extra_rdoc_files: []
70
70
  files:
71
+ - lib/ruby-bbcode-to-md.rb
71
72
  - lib/tags/tags.rb
72
- - lib/ruby-bbcode.rb
73
- - lib/ruby-bbcode/tag_node.rb
74
- - lib/ruby-bbcode/tag_info.rb
75
- - lib/ruby-bbcode/bbtree.rb
76
- - lib/ruby-bbcode/tag_collection.rb
77
- - lib/ruby-bbcode/version.rb
78
- - lib/ruby-bbcode/debugging.rb
79
- - lib/ruby-bbcode/tag_sifter.rb
73
+ - lib/ruby-bbcode-to-md/tag_node.rb
74
+ - lib/ruby-bbcode-to-md/tag_info.rb
75
+ - lib/ruby-bbcode-to-md/bbtree.rb
76
+ - lib/ruby-bbcode-to-md/tag_collection.rb
77
+ - lib/ruby-bbcode-to-md/version.rb
78
+ - lib/ruby-bbcode-to-md/debugging.rb
79
+ - lib/ruby-bbcode-to-md/tag_sifter.rb
80
80
  - MIT-LICENSE
81
81
  - Rakefile
82
82
  - README.md
@@ -108,7 +108,7 @@ rubyforge_project:
108
108
  rubygems_version: 1.8.23
109
109
  signing_key:
110
110
  specification_version: 3
111
- summary: ruby-bbcode-to-md-0.0.1
111
+ summary: ruby-bbcode-to-md-0.0.2
112
112
  test_files:
113
113
  - test/ruby_bbcode_test.rb
114
114
  - test/test_helper.rb