oorb 0.2.1 → 0.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.
@@ -0,0 +1,112 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6
+ <title>
7
+ Top Level Namespace
8
+
9
+ &mdash; Documentation by YARD 0.8.7.6
10
+
11
+ </title>
12
+
13
+ <link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
14
+
15
+ <link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
16
+
17
+ <script type="text/javascript" charset="utf-8">
18
+ hasFrames = window.top.frames.main ? true : false;
19
+ relpath = '';
20
+ framesUrl = "frames.html#!top-level-namespace.html";
21
+ </script>
22
+
23
+
24
+ <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
25
+
26
+ <script type="text/javascript" charset="utf-8" src="js/app.js"></script>
27
+
28
+
29
+ </head>
30
+ <body>
31
+ <div id="header">
32
+ <div id="menu">
33
+
34
+ <a href="_index.html">Index</a> &raquo;
35
+
36
+
37
+ <span class="title">Top Level Namespace</span>
38
+
39
+
40
+ <div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
41
+ </div>
42
+
43
+ <div id="search">
44
+
45
+ <a class="full_list_link" id="class_list_link"
46
+ href="class_list.html">
47
+ Class List
48
+ </a>
49
+
50
+ <a class="full_list_link" id="method_list_link"
51
+ href="method_list.html">
52
+ Method List
53
+ </a>
54
+
55
+ <a class="full_list_link" id="file_list_link"
56
+ href="file_list.html">
57
+ File List
58
+ </a>
59
+
60
+ </div>
61
+ <div class="clear"></div>
62
+ </div>
63
+
64
+ <iframe id="search_frame"></iframe>
65
+
66
+ <div id="content"><h1>Top Level Namespace
67
+
68
+
69
+
70
+ </h1>
71
+
72
+ <dl class="box">
73
+
74
+
75
+
76
+
77
+
78
+
79
+
80
+
81
+ </dl>
82
+ <div class="clear"></div>
83
+
84
+ <h2>Defined Under Namespace</h2>
85
+ <p class="children">
86
+
87
+
88
+
89
+
90
+ <strong class="classes">Classes:</strong> <span class='object_link'><a href="OORB.html" title="OORB (class)">OORB</a></span>
91
+
92
+
93
+ </p>
94
+
95
+
96
+
97
+
98
+
99
+
100
+
101
+
102
+
103
+ </div>
104
+
105
+ <div id="footer">
106
+ Generated on Sat Jun 11 11:35:54 2016 by
107
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
108
+ 0.8.7.6 (ruby-2.3.1).
109
+ </div>
110
+
111
+ </body>
112
+ </html>
data/lib/oorb.rb CHANGED
@@ -44,13 +44,13 @@ class OORB
44
44
  end
45
45
 
46
46
  ##
47
- # Combines whitespace characters to make " " into " "
47
+ # Collapses mutliple consecutive whitespace characters into a single whitespace character
48
48
  def combine_whitespace(string)
49
49
  string.gsub(/\s+/, "\s")
50
50
  end
51
51
 
52
52
  ##
53
- # Builds a group match from an input letter
53
+ # Builds a group match from an input letter.
54
54
  # Raises an argument error if the letter isn't from the LETTERS hash
55
55
  def build_collection(character)
56
56
  unless LETTERS[character]
@@ -61,7 +61,7 @@ class OORB
61
61
  end
62
62
 
63
63
  ##
64
- # Escapes a single-character string and makes \s optional \\s?
64
+ # Escapes a single-character string and makes whitespace characters optional
65
65
  def escape(character)
66
66
  if character.length > 1
67
67
  raise ArgumentError, "Argument must be a single character string"
data/lib/oorb/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Oorb
2
- VERSION = "0.2.1"
2
+ VERSION = "0.2.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oorb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Calvyn82
@@ -62,6 +62,7 @@ extra_rdoc_files: []
62
62
  files:
63
63
  - ".gitignore"
64
64
  - ".travis.yml"
65
+ - ".yardopts"
65
66
  - CODE_OF_CONDUCT.md
66
67
  - Gemfile
67
68
  - Gemfile.lock
@@ -73,6 +74,24 @@ files:
73
74
  - bin/oorb
74
75
  - bin/rake
75
76
  - bin/setup
77
+ - doc/OORB.html
78
+ - doc/Oorb.html
79
+ - doc/_index.html
80
+ - doc/class_list.html
81
+ - doc/css/common.css
82
+ - doc/css/full_list.css
83
+ - doc/css/style.css
84
+ - doc/file.CODE_OF_CONDUCT.html
85
+ - doc/file.LICENSE.html
86
+ - doc/file.README.html
87
+ - doc/file_list.html
88
+ - doc/frames.html
89
+ - doc/index.html
90
+ - doc/js/app.js
91
+ - doc/js/full_list.js
92
+ - doc/js/jquery.js
93
+ - doc/method_list.html
94
+ - doc/top-level-namespace.html
76
95
  - lib/oorb.rb
77
96
  - lib/oorb/version.rb
78
97
  - oorb.gemspec