mbrao 1.2.1 → 1.2.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.
- checksums.yaml +4 -4
- data/.travis-gemfile +1 -1
- data/Gemfile +1 -1
- data/README.md +1 -1
- data/Rakefile +1 -1
- data/doc/ActionView/Template/Handlers/MbraoTemplate.html +1 -1
- data/doc/ActionView/Template/Handlers.html +1 -1
- data/doc/HTML/Pipeline/KramdownFilter.html +1 -1
- data/doc/HTML/Pipeline.html +1 -1
- data/doc/HTML.html +1 -1
- data/doc/Mbrao/Author.html +1 -1
- data/doc/Mbrao/Content.html +1 -1
- data/doc/Mbrao/ContentPublicInterface.html +1 -1
- data/doc/Mbrao/Exceptions/InvalidDate.html +1 -1
- data/doc/Mbrao/Exceptions/InvalidMetadata.html +1 -1
- data/doc/Mbrao/Exceptions/Parsing.html +1 -1
- data/doc/Mbrao/Exceptions/Rendering.html +1 -1
- data/doc/Mbrao/Exceptions/UnavailableLocalization.html +1 -1
- data/doc/Mbrao/Exceptions/Unimplemented.html +1 -1
- data/doc/Mbrao/Exceptions/UnknownEngine.html +1 -1
- data/doc/Mbrao/Exceptions.html +1 -1
- data/doc/Mbrao/Parser.html +1 -1
- data/doc/Mbrao/ParsingEngines/Base.html +1 -1
- data/doc/Mbrao/ParsingEngines/PlainText.html +1 -1
- data/doc/Mbrao/ParsingEngines.html +1 -1
- data/doc/Mbrao/PublicInterface/ClassMethods.html +1 -1
- data/doc/Mbrao/PublicInterface.html +1 -1
- data/doc/Mbrao/RenderingEngines/Base.html +1 -1
- data/doc/Mbrao/RenderingEngines/HtmlPipeline.html +1 -1
- data/doc/Mbrao/RenderingEngines.html +1 -1
- data/doc/Mbrao/Validations/ClassMethods.html +1 -1
- data/doc/Mbrao/Validations.html +1 -1
- data/doc/Mbrao/Version.html +2 -2
- data/doc/Mbrao.html +2 -2
- data/doc/_index.html +1 -1
- data/doc/file.README.html +2 -2
- data/doc/index.html +2 -2
- data/doc/top-level-namespace.html +1 -1
- data/lib/mbrao/author.rb +1 -1
- data/lib/mbrao/content.rb +1 -1
- data/lib/mbrao/exceptions.rb +1 -1
- data/lib/mbrao/integrations/rails.rb +2 -2
- data/lib/mbrao/parser.rb +1 -1
- data/lib/mbrao/parsing_engines/base.rb +1 -1
- data/lib/mbrao/parsing_engines/plain_text.rb +1 -1
- data/lib/mbrao/rendering_engines/base.rb +1 -1
- data/lib/mbrao/rendering_engines/html_pipeline.rb +1 -1
- data/lib/mbrao/version.rb +2 -2
- data/lib/mbrao.rb +1 -1
- data/mbrao.gemspec +2 -2
- data/spec/coverage_helper.rb +1 -1
- data/spec/mbrao/author_spec.rb +1 -1
- data/spec/mbrao/content_spec.rb +1 -1
- data/spec/mbrao/integrations/rails_spec.rb +1 -1
- data/spec/mbrao/parser_spec.rb +1 -1
- data/spec/mbrao/parsing_engines/base_spec.rb +1 -1
- data/spec/mbrao/parsing_engines/plain_text_spec.rb +1 -1
- data/spec/mbrao/rendering_engines/base_spec.rb +1 -1
- data/spec/mbrao/rendering_engines/html_pipeline_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 73e19fbae7328d2c9ea671c8d1ea01c1241f81e6
|
|
4
|
+
data.tar.gz: d78f4f8f212e7eaf739ac726ac8ceabe98b64aa5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9947029dc36bbeb08e2196e1b7293c0e116f158db28352522f62b1438b708b2b44e1b592c9ba0f0bcb6fbc2939a9eb95d381922736e3d9430e8da4dfe3a20e22
|
|
7
|
+
data.tar.gz: 2ba02fea13275a52e5034976de64335459929d9612c949f6207e809034acdf02e44d8143921857f3da04358b8289ff30ab780357f697ea063e7d5c694e427ab7
|
data/.travis-gemfile
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
data/Gemfile
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
data/README.md
CHANGED
|
@@ -58,6 +58,6 @@ You can customize the rendering engine used by including the `engine` metadata.
|
|
|
58
58
|
|
|
59
59
|
## Copyright
|
|
60
60
|
|
|
61
|
-
Copyright (C) 2013 and above Shogun (
|
|
61
|
+
Copyright (C) 2013 and above Shogun (shogun@cowtech.it).
|
|
62
62
|
|
|
63
63
|
Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
data/Rakefile
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
|
@@ -559,7 +559,7 @@
|
|
|
559
559
|
</div>
|
|
560
560
|
|
|
561
561
|
<div id="footer">
|
|
562
|
-
Generated on
|
|
562
|
+
Generated on Sun Aug 18 16:37:01 2013 by
|
|
563
563
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
564
564
|
0.8.7 (ruby-2.0.0).
|
|
565
565
|
</div>
|
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
</div>
|
|
117
117
|
|
|
118
118
|
<div id="footer">
|
|
119
|
-
Generated on
|
|
119
|
+
Generated on Sun Aug 18 16:37:00 2013 by
|
|
120
120
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
121
121
|
0.8.7 (ruby-2.0.0).
|
|
122
122
|
</div>
|
|
@@ -345,7 +345,7 @@
|
|
|
345
345
|
</div>
|
|
346
346
|
|
|
347
347
|
<div id="footer">
|
|
348
|
-
Generated on
|
|
348
|
+
Generated on Sun Aug 18 16:37:01 2013 by
|
|
349
349
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
350
350
|
0.8.7 (ruby-2.0.0).
|
|
351
351
|
</div>
|
data/doc/HTML/Pipeline.html
CHANGED
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
</div>
|
|
132
132
|
|
|
133
133
|
<div id="footer">
|
|
134
|
-
Generated on
|
|
134
|
+
Generated on Sun Aug 18 16:37:01 2013 by
|
|
135
135
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
136
136
|
0.8.7 (ruby-2.0.0).
|
|
137
137
|
</div>
|
data/doc/HTML.html
CHANGED
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
</div>
|
|
117
117
|
|
|
118
118
|
<div id="footer">
|
|
119
|
-
Generated on
|
|
119
|
+
Generated on Sun Aug 18 16:37:00 2013 by
|
|
120
120
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
121
121
|
0.8.7 (ruby-2.0.0).
|
|
122
122
|
</div>
|
data/doc/Mbrao/Author.html
CHANGED
|
@@ -1393,7 +1393,7 @@
|
|
|
1393
1393
|
</div>
|
|
1394
1394
|
|
|
1395
1395
|
<div id="footer">
|
|
1396
|
-
Generated on
|
|
1396
|
+
Generated on Sun Aug 18 16:37:00 2013 by
|
|
1397
1397
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
1398
1398
|
0.8.7 (ruby-2.0.0).
|
|
1399
1399
|
</div>
|
data/doc/Mbrao/Content.html
CHANGED
|
@@ -4734,7 +4734,7 @@
|
|
|
4734
4734
|
</div>
|
|
4735
4735
|
|
|
4736
4736
|
<div id="footer">
|
|
4737
|
-
Generated on
|
|
4737
|
+
Generated on Sun Aug 18 16:37:01 2013 by
|
|
4738
4738
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
4739
4739
|
0.8.7 (ruby-2.0.0).
|
|
4740
4740
|
</div>
|
|
@@ -649,7 +649,7 @@
|
|
|
649
649
|
</div>
|
|
650
650
|
|
|
651
651
|
<div id="footer">
|
|
652
|
-
Generated on
|
|
652
|
+
Generated on Sun Aug 18 16:37:00 2013 by
|
|
653
653
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
654
654
|
0.8.7 (ruby-2.0.0).
|
|
655
655
|
</div>
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
</div>
|
|
125
125
|
|
|
126
126
|
<div id="footer">
|
|
127
|
-
Generated on
|
|
127
|
+
Generated on Sun Aug 18 16:37:01 2013 by
|
|
128
128
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
129
129
|
0.8.7 (ruby-2.0.0).
|
|
130
130
|
</div>
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
</div>
|
|
125
125
|
|
|
126
126
|
<div id="footer">
|
|
127
|
-
Generated on
|
|
127
|
+
Generated on Sun Aug 18 16:37:01 2013 by
|
|
128
128
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
129
129
|
0.8.7 (ruby-2.0.0).
|
|
130
130
|
</div>
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
</div>
|
|
125
125
|
|
|
126
126
|
<div id="footer">
|
|
127
|
-
Generated on
|
|
127
|
+
Generated on Sun Aug 18 16:37:01 2013 by
|
|
128
128
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
129
129
|
0.8.7 (ruby-2.0.0).
|
|
130
130
|
</div>
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
</div>
|
|
125
125
|
|
|
126
126
|
<div id="footer">
|
|
127
|
-
Generated on
|
|
127
|
+
Generated on Sun Aug 18 16:37:01 2013 by
|
|
128
128
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
129
129
|
0.8.7 (ruby-2.0.0).
|
|
130
130
|
</div>
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
</div>
|
|
125
125
|
|
|
126
126
|
<div id="footer">
|
|
127
|
-
Generated on
|
|
127
|
+
Generated on Sun Aug 18 16:37:01 2013 by
|
|
128
128
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
129
129
|
0.8.7 (ruby-2.0.0).
|
|
130
130
|
</div>
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
</div>
|
|
125
125
|
|
|
126
126
|
<div id="footer">
|
|
127
|
-
Generated on
|
|
127
|
+
Generated on Sun Aug 18 16:37:01 2013 by
|
|
128
128
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
129
129
|
0.8.7 (ruby-2.0.0).
|
|
130
130
|
</div>
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
</div>
|
|
125
125
|
|
|
126
126
|
<div id="footer">
|
|
127
|
-
Generated on
|
|
127
|
+
Generated on Sun Aug 18 16:37:01 2013 by
|
|
128
128
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
129
129
|
0.8.7 (ruby-2.0.0).
|
|
130
130
|
</div>
|
data/doc/Mbrao/Exceptions.html
CHANGED
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
</div>
|
|
117
117
|
|
|
118
118
|
<div id="footer">
|
|
119
|
-
Generated on
|
|
119
|
+
Generated on Sun Aug 18 16:37:00 2013 by
|
|
120
120
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
121
121
|
0.8.7 (ruby-2.0.0).
|
|
122
122
|
</div>
|
data/doc/Mbrao/Parser.html
CHANGED
|
@@ -409,7 +409,7 @@
|
|
|
409
409
|
</div>
|
|
410
410
|
|
|
411
411
|
<div id="footer">
|
|
412
|
-
Generated on
|
|
412
|
+
Generated on Sun Aug 18 16:37:00 2013 by
|
|
413
413
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
414
414
|
0.8.7 (ruby-2.0.0).
|
|
415
415
|
</div>
|
|
@@ -649,7 +649,7 @@
|
|
|
649
649
|
</div>
|
|
650
650
|
|
|
651
651
|
<div id="footer">
|
|
652
|
-
Generated on
|
|
652
|
+
Generated on Sun Aug 18 16:37:01 2013 by
|
|
653
653
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
654
654
|
0.8.7 (ruby-2.0.0).
|
|
655
655
|
</div>
|
|
@@ -562,7 +562,7 @@
|
|
|
562
562
|
</div>
|
|
563
563
|
|
|
564
564
|
<div id="footer">
|
|
565
|
-
Generated on
|
|
565
|
+
Generated on Sun Aug 18 16:37:01 2013 by
|
|
566
566
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
567
567
|
0.8.7 (ruby-2.0.0).
|
|
568
568
|
</div>
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
</div>
|
|
119
119
|
|
|
120
120
|
<div id="footer">
|
|
121
|
-
Generated on
|
|
121
|
+
Generated on Sun Aug 18 16:37:00 2013 by
|
|
122
122
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
123
123
|
0.8.7 (ruby-2.0.0).
|
|
124
124
|
</div>
|
|
@@ -1413,7 +1413,7 @@
|
|
|
1413
1413
|
</div>
|
|
1414
1414
|
|
|
1415
1415
|
<div id="footer">
|
|
1416
|
-
Generated on
|
|
1416
|
+
Generated on Sun Aug 18 16:37:00 2013 by
|
|
1417
1417
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
1418
1418
|
0.8.7 (ruby-2.0.0).
|
|
1419
1419
|
</div>
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
</div>
|
|
126
126
|
|
|
127
127
|
<div id="footer">
|
|
128
|
-
Generated on
|
|
128
|
+
Generated on Sun Aug 18 16:37:00 2013 by
|
|
129
129
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
130
130
|
0.8.7 (ruby-2.0.0).
|
|
131
131
|
</div>
|
|
@@ -271,7 +271,7 @@
|
|
|
271
271
|
</div>
|
|
272
272
|
|
|
273
273
|
<div id="footer">
|
|
274
|
-
Generated on
|
|
274
|
+
Generated on Sun Aug 18 16:37:01 2013 by
|
|
275
275
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
276
276
|
0.8.7 (ruby-2.0.0).
|
|
277
277
|
</div>
|
|
@@ -864,7 +864,7 @@
|
|
|
864
864
|
</div>
|
|
865
865
|
|
|
866
866
|
<div id="footer">
|
|
867
|
-
Generated on
|
|
867
|
+
Generated on Sun Aug 18 16:37:01 2013 by
|
|
868
868
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
869
869
|
0.8.7 (ruby-2.0.0).
|
|
870
870
|
</div>
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
</div>
|
|
119
119
|
|
|
120
120
|
<div id="footer">
|
|
121
|
-
Generated on
|
|
121
|
+
Generated on Sun Aug 18 16:37:00 2013 by
|
|
122
122
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
123
123
|
0.8.7 (ruby-2.0.0).
|
|
124
124
|
</div>
|
|
@@ -345,7 +345,7 @@
|
|
|
345
345
|
</div>
|
|
346
346
|
|
|
347
347
|
<div id="footer">
|
|
348
|
-
Generated on
|
|
348
|
+
Generated on Sun Aug 18 16:37:00 2013 by
|
|
349
349
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
350
350
|
0.8.7 (ruby-2.0.0).
|
|
351
351
|
</div>
|
data/doc/Mbrao/Validations.html
CHANGED
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
</div>
|
|
126
126
|
|
|
127
127
|
<div id="footer">
|
|
128
|
-
Generated on
|
|
128
|
+
Generated on Sun Aug 18 16:37:00 2013 by
|
|
129
129
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
130
130
|
0.8.7 (ruby-2.0.0).
|
|
131
131
|
</div>
|
data/doc/Mbrao/Version.html
CHANGED
|
@@ -149,7 +149,7 @@
|
|
|
149
149
|
|
|
150
150
|
</div>
|
|
151
151
|
</dt>
|
|
152
|
-
<dd><pre class="code"><span class='int'>
|
|
152
|
+
<dd><pre class="code"><span class='int'>2</span></pre></dd>
|
|
153
153
|
|
|
154
154
|
<dt id="STRING-constant" class="">STRING =
|
|
155
155
|
<div class="docstring">
|
|
@@ -180,7 +180,7 @@
|
|
|
180
180
|
</div>
|
|
181
181
|
|
|
182
182
|
<div id="footer">
|
|
183
|
-
Generated on
|
|
183
|
+
Generated on Sun Aug 18 16:37:00 2013 by
|
|
184
184
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
185
185
|
0.8.7 (ruby-2.0.0).
|
|
186
186
|
</div>
|
data/doc/Mbrao.html
CHANGED
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
|
|
89
89
|
<h2>Overview</h2><div class="docstring">
|
|
90
90
|
<div class="discussion">
|
|
91
|
-
<p>This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun
|
|
91
|
+
<p>This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <a href="mailto:shogun@cowtech.it">shogun@cowtech.it</a>.
|
|
92
92
|
Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.</p>
|
|
93
93
|
|
|
94
94
|
|
|
@@ -121,7 +121,7 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
|
|
|
121
121
|
</div>
|
|
122
122
|
|
|
123
123
|
<div id="footer">
|
|
124
|
-
Generated on
|
|
124
|
+
Generated on Sun Aug 18 16:37:00 2013 by
|
|
125
125
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
126
126
|
0.8.7 (ruby-2.0.0).
|
|
127
127
|
</div>
|
data/doc/_index.html
CHANGED
|
@@ -386,7 +386,7 @@
|
|
|
386
386
|
</div>
|
|
387
387
|
|
|
388
388
|
<div id="footer">
|
|
389
|
-
Generated on
|
|
389
|
+
Generated on Sun Aug 18 16:37:00 2013 by
|
|
390
390
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
391
391
|
0.8.7 (ruby-2.0.0).
|
|
392
392
|
</div>
|
data/doc/file.README.html
CHANGED
|
@@ -123,13 +123,13 @@ Mbrao::Parser.render(content)
|
|
|
123
123
|
|
|
124
124
|
<h2 id="copyright">Copyright</h2>
|
|
125
125
|
|
|
126
|
-
<p>Copyright (C) 2013 and above Shogun (
|
|
126
|
+
<p>Copyright (C) 2013 and above Shogun (shogun@cowtech.it).</p>
|
|
127
127
|
|
|
128
128
|
<p>Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.</p>
|
|
129
129
|
</div></div>
|
|
130
130
|
|
|
131
131
|
<div id="footer">
|
|
132
|
-
Generated on
|
|
132
|
+
Generated on Sun Aug 18 16:37:00 2013 by
|
|
133
133
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
134
134
|
0.8.7 (ruby-2.0.0).
|
|
135
135
|
</div>
|
data/doc/index.html
CHANGED
|
@@ -123,13 +123,13 @@ Mbrao::Parser.render(content)
|
|
|
123
123
|
|
|
124
124
|
<h2 id="copyright">Copyright</h2>
|
|
125
125
|
|
|
126
|
-
<p>Copyright (C) 2013 and above Shogun (
|
|
126
|
+
<p>Copyright (C) 2013 and above Shogun (shogun@cowtech.it).</p>
|
|
127
127
|
|
|
128
128
|
<p>Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.</p>
|
|
129
129
|
</div></div>
|
|
130
130
|
|
|
131
131
|
<div id="footer">
|
|
132
|
-
Generated on
|
|
132
|
+
Generated on Sun Aug 18 16:37:00 2013 by
|
|
133
133
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
134
134
|
0.8.7 (ruby-2.0.0).
|
|
135
135
|
</div>
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
</div>
|
|
104
104
|
|
|
105
105
|
<div id="footer">
|
|
106
|
-
Generated on
|
|
106
|
+
Generated on Sun Aug 18 16:37:00 2013 by
|
|
107
107
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
108
108
|
0.8.7 (ruby-2.0.0).
|
|
109
109
|
</div>
|
data/lib/mbrao/author.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
data/lib/mbrao/content.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
data/lib/mbrao/exceptions.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
|
@@ -48,4 +48,4 @@ module ActionView::Template::Handlers
|
|
|
48
48
|
end
|
|
49
49
|
end
|
|
50
50
|
|
|
51
|
-
ActionView::Template.register_template_handler
|
|
51
|
+
ActionView::Template.register_template_handler("emt", ActionView::Template::Handlers::MbraoTemplate.instance) if defined?(ActionView) && defined?(Rails) && Rails.version =~ /^[34]/
|
data/lib/mbrao/parser.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
data/lib/mbrao/version.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
|
@@ -17,7 +17,7 @@ module Mbrao
|
|
|
17
17
|
MINOR = 2
|
|
18
18
|
|
|
19
19
|
# The patch version.
|
|
20
|
-
PATCH =
|
|
20
|
+
PATCH = 2
|
|
21
21
|
|
|
22
22
|
# The current version of mbrao.
|
|
23
23
|
STRING = [MAJOR, MINOR, PATCH].compact.join(".")
|
data/lib/mbrao.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
data/mbrao.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
|
@@ -15,7 +15,7 @@ Gem::Specification.new do |gem|
|
|
|
15
15
|
gem.rubyforge_project = "mbrao"
|
|
16
16
|
|
|
17
17
|
gem.authors = ["Shogun"]
|
|
18
|
-
gem.email = ["
|
|
18
|
+
gem.email = ["shogun@cowtech.it"]
|
|
19
19
|
|
|
20
20
|
gem.files = `git ls-files`.split($\)
|
|
21
21
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
data/spec/coverage_helper.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
data/spec/mbrao/author_spec.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
data/spec/mbrao/content_spec.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
data/spec/mbrao/parser_spec.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
data/spec/spec_helper.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mbrao
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shogun
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-08-
|
|
11
|
+
date: 2013-08-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: lazier
|
|
@@ -68,7 +68,7 @@ dependencies:
|
|
|
68
68
|
version: 1.1.0
|
|
69
69
|
description: A content parser and renderer with embedded metadata support.
|
|
70
70
|
email:
|
|
71
|
-
-
|
|
71
|
+
- shogun@cowtech.it
|
|
72
72
|
executables: []
|
|
73
73
|
extensions: []
|
|
74
74
|
extra_rdoc_files: []
|