formattedstring 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (59) hide show
  1. data/README +5 -0
  2. data/Rakefile +1 -1
  3. data/doc/classes/Enumerable.html +146 -0
  4. data/doc/classes/Enumerable.src/M000029.html +21 -0
  5. data/doc/classes/Enumerable.src/M000030.html +34 -0
  6. data/doc/classes/FormattedString.html +119 -0
  7. data/doc/classes/FormattedString/Formats.html +121 -0
  8. data/doc/classes/FormattedString/Formats/Json.html +159 -0
  9. data/doc/classes/FormattedString/Formats/Json.src/M000006.html +18 -0
  10. data/doc/classes/FormattedString/Formats/Json.src/M000007.html +18 -0
  11. data/doc/classes/FormattedString/Formats/Xml.html +159 -0
  12. data/doc/classes/FormattedString/Formats/Xml.src/M000004.html +18 -0
  13. data/doc/classes/FormattedString/Formats/Xml.src/M000005.html +52 -0
  14. data/doc/classes/FormattedString/Formats/Yaml.html +131 -0
  15. data/doc/classes/FormattedString/Formats/Yaml.src/M000008.html +18 -0
  16. data/doc/classes/Inflector.html +516 -0
  17. data/doc/classes/Inflector.src/M000009.html +22 -0
  18. data/doc/classes/Inflector.src/M000010.html +25 -0
  19. data/doc/classes/Inflector.src/M000011.html +25 -0
  20. data/doc/classes/Inflector.src/M000012.html +22 -0
  21. data/doc/classes/Inflector.src/M000013.html +18 -0
  22. data/doc/classes/Inflector.src/M000014.html +22 -0
  23. data/doc/classes/Inflector.src/M000015.html +18 -0
  24. data/doc/classes/Inflector.src/M000016.html +18 -0
  25. data/doc/classes/Inflector.src/M000017.html +18 -0
  26. data/doc/classes/Inflector.src/M000018.html +18 -0
  27. data/doc/classes/Inflector.src/M000019.html +19 -0
  28. data/doc/classes/Inflector.src/M000020.html +18 -0
  29. data/doc/classes/Inflector.src/M000021.html +22 -0
  30. data/doc/classes/Inflector.src/M000022.html +27 -0
  31. data/doc/classes/Inflector/Inflections.html +321 -0
  32. data/doc/classes/Inflector/Inflections.src/M000023.html +18 -0
  33. data/doc/classes/Inflector/Inflections.src/M000024.html +18 -0
  34. data/doc/classes/Inflector/Inflections.src/M000025.html +18 -0
  35. data/doc/classes/Inflector/Inflections.src/M000026.html +26 -0
  36. data/doc/classes/Inflector/Inflections.src/M000027.html +18 -0
  37. data/doc/classes/Inflector/Inflections.src/M000028.html +23 -0
  38. data/doc/classes/String.html +191 -0
  39. data/doc/classes/String.src/M000001.html +18 -0
  40. data/doc/classes/String.src/M000002.html +20 -0
  41. data/doc/classes/String.src/M000003.html +19 -0
  42. data/doc/created.rid +1 -0
  43. data/doc/files/LICENSE.html +129 -0
  44. data/doc/files/README.html +201 -0
  45. data/doc/files/lib/formatted_string/formats/json_rb.html +108 -0
  46. data/doc/files/lib/formatted_string/formats/xml_rb.html +119 -0
  47. data/doc/files/lib/formatted_string/formats/yaml_rb.html +101 -0
  48. data/doc/files/lib/formatted_string_rb.html +108 -0
  49. data/doc/files/lib/inflections_rb.html +101 -0
  50. data/doc/files/lib/inflector_rb.html +108 -0
  51. data/doc/fr_class_index.html +35 -0
  52. data/doc/fr_file_index.html +34 -0
  53. data/doc/fr_method_index.html +56 -0
  54. data/doc/index.html +24 -0
  55. data/doc/rdoc-style.css +208 -0
  56. data/lib/formatted_string/formats/json.rb +20 -0
  57. data/lib/formatted_string/formats/xml.rb +8 -5
  58. data/lib/formatted_string/formats/yaml.rb +9 -0
  59. metadata +72 -2
@@ -0,0 +1,108 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!DOCTYPE html
3
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
+
6
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
+ <head>
8
+ <title>File: formatted_string.rb</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
+ <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
+ <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
12
+ <script type="text/javascript">
13
+ // <![CDATA[
14
+
15
+ function popupCode( url ) {
16
+ window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
17
+ }
18
+
19
+ function toggleCode( id ) {
20
+ if ( document.getElementById )
21
+ elem = document.getElementById( id );
22
+ else if ( document.all )
23
+ elem = eval( "document.all." + id );
24
+ else
25
+ return false;
26
+
27
+ elemStyle = elem.style;
28
+
29
+ if ( elemStyle.display != "block" ) {
30
+ elemStyle.display = "block"
31
+ } else {
32
+ elemStyle.display = "none"
33
+ }
34
+
35
+ return true;
36
+ }
37
+
38
+ // Make codeblocks hidden by default
39
+ document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
40
+
41
+ // ]]>
42
+ </script>
43
+
44
+ </head>
45
+ <body>
46
+
47
+
48
+
49
+ <div id="fileHeader">
50
+ <h1>formatted_string.rb</h1>
51
+ <table class="header-table">
52
+ <tr class="top-aligned-row">
53
+ <td><strong>Path:</strong></td>
54
+ <td>lib/formatted_string.rb
55
+ </td>
56
+ </tr>
57
+ <tr class="top-aligned-row">
58
+ <td><strong>Last Update:</strong></td>
59
+ <td>Mon Mar 17 13:50:51 -0400 2008</td>
60
+ </tr>
61
+ </table>
62
+ </div>
63
+ <!-- banner header -->
64
+
65
+ <div id="bodyContent">
66
+
67
+
68
+
69
+ <div id="contextContent">
70
+
71
+
72
+ <div id="requires-list">
73
+ <h3 class="section-bar">Required files</h3>
74
+
75
+ <div class="name-list">
76
+ inflector&nbsp;&nbsp;
77
+ </div>
78
+ </div>
79
+
80
+ </div>
81
+
82
+
83
+ </div>
84
+
85
+
86
+ <!-- if includes -->
87
+
88
+ <div id="section">
89
+
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+ <!-- if method_list -->
98
+
99
+
100
+ </div>
101
+
102
+
103
+ <div id="validator-badges">
104
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
105
+ </div>
106
+
107
+ </body>
108
+ </html>
@@ -0,0 +1,101 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!DOCTYPE html
3
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
+
6
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
+ <head>
8
+ <title>File: inflections.rb</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
+ <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
+ <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
12
+ <script type="text/javascript">
13
+ // <![CDATA[
14
+
15
+ function popupCode( url ) {
16
+ window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
17
+ }
18
+
19
+ function toggleCode( id ) {
20
+ if ( document.getElementById )
21
+ elem = document.getElementById( id );
22
+ else if ( document.all )
23
+ elem = eval( "document.all." + id );
24
+ else
25
+ return false;
26
+
27
+ elemStyle = elem.style;
28
+
29
+ if ( elemStyle.display != "block" ) {
30
+ elemStyle.display = "block"
31
+ } else {
32
+ elemStyle.display = "none"
33
+ }
34
+
35
+ return true;
36
+ }
37
+
38
+ // Make codeblocks hidden by default
39
+ document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
40
+
41
+ // ]]>
42
+ </script>
43
+
44
+ </head>
45
+ <body>
46
+
47
+
48
+
49
+ <div id="fileHeader">
50
+ <h1>inflections.rb</h1>
51
+ <table class="header-table">
52
+ <tr class="top-aligned-row">
53
+ <td><strong>Path:</strong></td>
54
+ <td>lib/inflections.rb
55
+ </td>
56
+ </tr>
57
+ <tr class="top-aligned-row">
58
+ <td><strong>Last Update:</strong></td>
59
+ <td>Mon Mar 17 13:44:12 -0400 2008</td>
60
+ </tr>
61
+ </table>
62
+ </div>
63
+ <!-- banner header -->
64
+
65
+ <div id="bodyContent">
66
+
67
+
68
+
69
+ <div id="contextContent">
70
+
71
+
72
+
73
+ </div>
74
+
75
+
76
+ </div>
77
+
78
+
79
+ <!-- if includes -->
80
+
81
+ <div id="section">
82
+
83
+
84
+
85
+
86
+
87
+
88
+
89
+
90
+ <!-- if method_list -->
91
+
92
+
93
+ </div>
94
+
95
+
96
+ <div id="validator-badges">
97
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
98
+ </div>
99
+
100
+ </body>
101
+ </html>
@@ -0,0 +1,108 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!DOCTYPE html
3
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
+
6
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
+ <head>
8
+ <title>File: inflector.rb</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
+ <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
+ <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
12
+ <script type="text/javascript">
13
+ // <![CDATA[
14
+
15
+ function popupCode( url ) {
16
+ window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
17
+ }
18
+
19
+ function toggleCode( id ) {
20
+ if ( document.getElementById )
21
+ elem = document.getElementById( id );
22
+ else if ( document.all )
23
+ elem = eval( "document.all." + id );
24
+ else
25
+ return false;
26
+
27
+ elemStyle = elem.style;
28
+
29
+ if ( elemStyle.display != "block" ) {
30
+ elemStyle.display = "block"
31
+ } else {
32
+ elemStyle.display = "none"
33
+ }
34
+
35
+ return true;
36
+ }
37
+
38
+ // Make codeblocks hidden by default
39
+ document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
40
+
41
+ // ]]>
42
+ </script>
43
+
44
+ </head>
45
+ <body>
46
+
47
+
48
+
49
+ <div id="fileHeader">
50
+ <h1>inflector.rb</h1>
51
+ <table class="header-table">
52
+ <tr class="top-aligned-row">
53
+ <td><strong>Path:</strong></td>
54
+ <td>lib/inflector.rb
55
+ </td>
56
+ </tr>
57
+ <tr class="top-aligned-row">
58
+ <td><strong>Last Update:</strong></td>
59
+ <td>Mon Mar 17 13:43:58 -0400 2008</td>
60
+ </tr>
61
+ </table>
62
+ </div>
63
+ <!-- banner header -->
64
+
65
+ <div id="bodyContent">
66
+
67
+
68
+
69
+ <div id="contextContent">
70
+
71
+
72
+ <div id="requires-list">
73
+ <h3 class="section-bar">Required files</h3>
74
+
75
+ <div class="name-list">
76
+ singleton&nbsp;&nbsp;
77
+ </div>
78
+ </div>
79
+
80
+ </div>
81
+
82
+
83
+ </div>
84
+
85
+
86
+ <!-- if includes -->
87
+
88
+ <div id="section">
89
+
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+ <!-- if method_list -->
98
+
99
+
100
+ </div>
101
+
102
+
103
+ <div id="validator-badges">
104
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
105
+ </div>
106
+
107
+ </body>
108
+ </html>
@@ -0,0 +1,35 @@
1
+
2
+ <?xml version="1.0" encoding="iso-8859-1"?>
3
+ <!DOCTYPE html
4
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
5
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6
+
7
+ <!--
8
+
9
+ Classes
10
+
11
+ -->
12
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
13
+ <head>
14
+ <title>Classes</title>
15
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
16
+ <link rel="stylesheet" href="rdoc-style.css" type="text/css" />
17
+ <base target="docwin" />
18
+ </head>
19
+ <body>
20
+ <div id="index">
21
+ <h1 class="section-bar">Classes</h1>
22
+ <div id="index-entries">
23
+ <a href="classes/Enumerable.html">Enumerable</a><br />
24
+ <a href="classes/FormattedString.html">FormattedString</a><br />
25
+ <a href="classes/FormattedString/Formats.html">FormattedString::Formats</a><br />
26
+ <a href="classes/FormattedString/Formats/Json.html">FormattedString::Formats::Json</a><br />
27
+ <a href="classes/FormattedString/Formats/Xml.html">FormattedString::Formats::Xml</a><br />
28
+ <a href="classes/FormattedString/Formats/Yaml.html">FormattedString::Formats::Yaml</a><br />
29
+ <a href="classes/Inflector.html">Inflector</a><br />
30
+ <a href="classes/Inflector/Inflections.html">Inflector::Inflections</a><br />
31
+ <a href="classes/String.html">String</a><br />
32
+ </div>
33
+ </div>
34
+ </body>
35
+ </html>
@@ -0,0 +1,34 @@
1
+
2
+ <?xml version="1.0" encoding="iso-8859-1"?>
3
+ <!DOCTYPE html
4
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
5
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6
+
7
+ <!--
8
+
9
+ Files
10
+
11
+ -->
12
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
13
+ <head>
14
+ <title>Files</title>
15
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
16
+ <link rel="stylesheet" href="rdoc-style.css" type="text/css" />
17
+ <base target="docwin" />
18
+ </head>
19
+ <body>
20
+ <div id="index">
21
+ <h1 class="section-bar">Files</h1>
22
+ <div id="index-entries">
23
+ <a href="files/LICENSE.html">LICENSE</a><br />
24
+ <a href="files/README.html">README</a><br />
25
+ <a href="files/lib/formatted_string_rb.html">lib/formatted_string.rb</a><br />
26
+ <a href="files/lib/formatted_string/formats/json_rb.html">lib/formatted_string/formats/json.rb</a><br />
27
+ <a href="files/lib/formatted_string/formats/xml_rb.html">lib/formatted_string/formats/xml.rb</a><br />
28
+ <a href="files/lib/formatted_string/formats/yaml_rb.html">lib/formatted_string/formats/yaml.rb</a><br />
29
+ <a href="files/lib/inflections_rb.html">lib/inflections.rb</a><br />
30
+ <a href="files/lib/inflector_rb.html">lib/inflector.rb</a><br />
31
+ </div>
32
+ </div>
33
+ </body>
34
+ </html>
@@ -0,0 +1,56 @@
1
+
2
+ <?xml version="1.0" encoding="iso-8859-1"?>
3
+ <!DOCTYPE html
4
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
5
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6
+
7
+ <!--
8
+
9
+ Methods
10
+
11
+ -->
12
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
13
+ <head>
14
+ <title>Methods</title>
15
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
16
+ <link rel="stylesheet" href="rdoc-style.css" type="text/css" />
17
+ <base target="docwin" />
18
+ </head>
19
+ <body>
20
+ <div id="index">
21
+ <h1 class="section-bar">Methods</h1>
22
+ <div id="index-entries">
23
+ <a href="classes/FormattedString/Formats/Json.html#M000006">=== (FormattedString::Formats::Json)</a><br />
24
+ <a href="classes/FormattedString/Formats/Xml.html#M000004">=== (FormattedString::Formats::Xml)</a><br />
25
+ <a href="classes/Inflector.html#M000012">camelize (Inflector)</a><br />
26
+ <a href="classes/Inflector.html#M000019">classify (Inflector)</a><br />
27
+ <a href="classes/Inflector/Inflections.html#M000028">clear (Inflector::Inflections)</a><br />
28
+ <a href="classes/Inflector.html#M000021">constantize (Inflector)</a><br />
29
+ <a href="classes/Enumerable.html#M000030">crawl (Enumerable)</a><br />
30
+ <a href="classes/Inflector.html#M000015">dasherize (Inflector)</a><br />
31
+ <a href="classes/Inflector.html#M000017">demodulize (Inflector)</a><br />
32
+ <a href="classes/Inflector.html#M000020">foreign_key (Inflector)</a><br />
33
+ <a href="classes/String.html#M000001">format (String)</a><br />
34
+ <a href="classes/String.html#M000002">format= (String)</a><br />
35
+ <a href="classes/String.html#M000003">formatted (String)</a><br />
36
+ <a href="classes/Enumerable.html#M000029">group_by (Enumerable)</a><br />
37
+ <a href="classes/Inflector.html#M000016">humanize (Inflector)</a><br />
38
+ <a href="classes/Inflector.html#M000009">inflections (Inflector)</a><br />
39
+ <a href="classes/Inflector/Inflections.html#M000026">irregular (Inflector::Inflections)</a><br />
40
+ <a href="classes/Inflector/Inflections.html#M000023">new (Inflector::Inflections)</a><br />
41
+ <a href="classes/Inflector.html#M000022">ordinalize (Inflector)</a><br />
42
+ <a href="classes/Inflector/Inflections.html#M000024">plural (Inflector::Inflections)</a><br />
43
+ <a href="classes/Inflector.html#M000010">pluralize (Inflector)</a><br />
44
+ <a href="classes/FormattedString/Formats/Yaml.html#M000008">save (FormattedString::Formats::Yaml)</a><br />
45
+ <a href="classes/Inflector/Inflections.html#M000025">singular (Inflector::Inflections)</a><br />
46
+ <a href="classes/Inflector.html#M000011">singularize (Inflector)</a><br />
47
+ <a href="classes/Inflector.html#M000018">tableize (Inflector)</a><br />
48
+ <a href="classes/Inflector.html#M000013">titleize (Inflector)</a><br />
49
+ <a href="classes/FormattedString/Formats/Xml.html#M000005">to_hash (FormattedString::Formats::Xml)</a><br />
50
+ <a href="classes/FormattedString/Formats/Json.html#M000007">to_hash (FormattedString::Formats::Json)</a><br />
51
+ <a href="classes/Inflector/Inflections.html#M000027">uncountable (Inflector::Inflections)</a><br />
52
+ <a href="classes/Inflector.html#M000014">underscore (Inflector)</a><br />
53
+ </div>
54
+ </div>
55
+ </body>
56
+ </html>