friendly_postgres 0.4.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (129) hide show
  1. data/.document +2 -0
  2. data/.gitignore +26 -0
  3. data/APACHE-LICENSE +202 -0
  4. data/CHANGELOG.md +19 -0
  5. data/CONTRIBUTORS.md +7 -0
  6. data/LICENSE +20 -0
  7. data/README.md +265 -0
  8. data/Rakefile +68 -0
  9. data/TODO.md +5 -0
  10. data/VERSION +1 -0
  11. data/examples/friendly.yml +7 -0
  12. data/friendly.gemspec +232 -0
  13. data/lib/friendly.rb +54 -0
  14. data/lib/friendly/associations.rb +7 -0
  15. data/lib/friendly/associations/association.rb +34 -0
  16. data/lib/friendly/associations/set.rb +37 -0
  17. data/lib/friendly/attribute.rb +91 -0
  18. data/lib/friendly/boolean.rb +10 -0
  19. data/lib/friendly/cache.rb +24 -0
  20. data/lib/friendly/cache/by_id.rb +33 -0
  21. data/lib/friendly/config.rb +5 -0
  22. data/lib/friendly/data_store.rb +72 -0
  23. data/lib/friendly/document.rb +257 -0
  24. data/lib/friendly/document_table.rb +56 -0
  25. data/lib/friendly/index.rb +73 -0
  26. data/lib/friendly/memcached.rb +48 -0
  27. data/lib/friendly/named_scope.rb +17 -0
  28. data/lib/friendly/newrelic.rb +6 -0
  29. data/lib/friendly/query.rb +42 -0
  30. data/lib/friendly/scope.rb +100 -0
  31. data/lib/friendly/scope_proxy.rb +45 -0
  32. data/lib/friendly/sequel_monkey_patches.rb +34 -0
  33. data/lib/friendly/storage.rb +31 -0
  34. data/lib/friendly/storage_factory.rb +24 -0
  35. data/lib/friendly/storage_proxy.rb +103 -0
  36. data/lib/friendly/table.rb +15 -0
  37. data/lib/friendly/table_creator.rb +48 -0
  38. data/lib/friendly/time.rb +14 -0
  39. data/lib/friendly/translator.rb +32 -0
  40. data/lib/friendly/uuid.rb +148 -0
  41. data/rails/init.rb +3 -0
  42. data/spec/config.yml.example +7 -0
  43. data/spec/fakes/data_store_fake.rb +29 -0
  44. data/spec/fakes/database_fake.rb +12 -0
  45. data/spec/fakes/dataset_fake.rb +28 -0
  46. data/spec/fakes/document.rb +18 -0
  47. data/spec/fakes/serializer_fake.rb +12 -0
  48. data/spec/fakes/time_fake.rb +12 -0
  49. data/spec/integration/ad_hoc_scopes_spec.rb +42 -0
  50. data/spec/integration/basic_object_lifecycle_spec.rb +114 -0
  51. data/spec/integration/batch_insertion_spec.rb +29 -0
  52. data/spec/integration/convenience_api_spec.rb +25 -0
  53. data/spec/integration/count_spec.rb +12 -0
  54. data/spec/integration/default_value_spec.rb +15 -0
  55. data/spec/integration/find_via_cache_spec.rb +101 -0
  56. data/spec/integration/finder_spec.rb +64 -0
  57. data/spec/integration/has_many_spec.rb +18 -0
  58. data/spec/integration/index_spec.rb +57 -0
  59. data/spec/integration/named_scope_spec.rb +34 -0
  60. data/spec/integration/pagination_spec.rb +63 -0
  61. data/spec/integration/scope_chaining_spec.rb +22 -0
  62. data/spec/integration/table_creator_spec.rb +64 -0
  63. data/spec/integration/write_through_cache_spec.rb +53 -0
  64. data/spec/spec.opts +1 -0
  65. data/spec/spec_helper.rb +103 -0
  66. data/spec/unit/associations/association_spec.rb +57 -0
  67. data/spec/unit/associations/set_spec.rb +43 -0
  68. data/spec/unit/attribute_spec.rb +105 -0
  69. data/spec/unit/cache_by_id_spec.rb +102 -0
  70. data/spec/unit/cache_spec.rb +21 -0
  71. data/spec/unit/config_spec.rb +4 -0
  72. data/spec/unit/data_store_spec.rb +188 -0
  73. data/spec/unit/document_spec.rb +358 -0
  74. data/spec/unit/document_table_spec.rb +126 -0
  75. data/spec/unit/friendly_spec.rb +25 -0
  76. data/spec/unit/index_spec.rb +196 -0
  77. data/spec/unit/memcached_spec.rb +114 -0
  78. data/spec/unit/named_scope_spec.rb +16 -0
  79. data/spec/unit/query_spec.rb +104 -0
  80. data/spec/unit/scope_proxy_spec.rb +44 -0
  81. data/spec/unit/scope_spec.rb +113 -0
  82. data/spec/unit/storage_factory_spec.rb +59 -0
  83. data/spec/unit/storage_proxy_spec.rb +218 -0
  84. data/spec/unit/translator_spec.rb +96 -0
  85. data/website/index.html +210 -0
  86. data/website/scripts/clipboard.swf +0 -0
  87. data/website/scripts/shBrushAS3.js +61 -0
  88. data/website/scripts/shBrushBash.js +66 -0
  89. data/website/scripts/shBrushCSharp.js +67 -0
  90. data/website/scripts/shBrushColdFusion.js +102 -0
  91. data/website/scripts/shBrushCpp.js +99 -0
  92. data/website/scripts/shBrushCss.js +93 -0
  93. data/website/scripts/shBrushDelphi.js +57 -0
  94. data/website/scripts/shBrushDiff.js +43 -0
  95. data/website/scripts/shBrushErlang.js +54 -0
  96. data/website/scripts/shBrushGroovy.js +69 -0
  97. data/website/scripts/shBrushJScript.js +52 -0
  98. data/website/scripts/shBrushJava.js +59 -0
  99. data/website/scripts/shBrushJavaFX.js +60 -0
  100. data/website/scripts/shBrushPerl.js +74 -0
  101. data/website/scripts/shBrushPhp.js +91 -0
  102. data/website/scripts/shBrushPlain.js +35 -0
  103. data/website/scripts/shBrushPowerShell.js +76 -0
  104. data/website/scripts/shBrushPython.js +66 -0
  105. data/website/scripts/shBrushRuby.js +57 -0
  106. data/website/scripts/shBrushScala.js +53 -0
  107. data/website/scripts/shBrushSql.js +68 -0
  108. data/website/scripts/shBrushVb.js +58 -0
  109. data/website/scripts/shBrushXml.js +71 -0
  110. data/website/scripts/shCore.js +30 -0
  111. data/website/scripts/shLegacy.js +30 -0
  112. data/website/styles/friendly.css +103 -0
  113. data/website/styles/help.png +0 -0
  114. data/website/styles/ie.css +35 -0
  115. data/website/styles/magnifier.png +0 -0
  116. data/website/styles/page_white_code.png +0 -0
  117. data/website/styles/page_white_copy.png +0 -0
  118. data/website/styles/print.css +29 -0
  119. data/website/styles/printer.png +0 -0
  120. data/website/styles/screen.css +257 -0
  121. data/website/styles/shCore.css +330 -0
  122. data/website/styles/shThemeDefault.css +173 -0
  123. data/website/styles/shThemeDjango.css +176 -0
  124. data/website/styles/shThemeEclipse.css +190 -0
  125. data/website/styles/shThemeEmacs.css +175 -0
  126. data/website/styles/shThemeFadeToGrey.css +177 -0
  127. data/website/styles/shThemeMidnight.css +175 -0
  128. data/website/styles/shThemeRDark.css +175 -0
  129. metadata +302 -0
@@ -0,0 +1,173 @@
1
+ /**
2
+ * SyntaxHighlighter
3
+ * http://alexgorbatchev.com/
4
+ *
5
+ * SyntaxHighlighter is donationware. If you are using it, please donate.
6
+ * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate
7
+ *
8
+ * @version
9
+ * 2.1.364 (October 15 2009)
10
+ *
11
+ * @copyright
12
+ * Copyright (C) 2004-2009 Alex Gorbatchev.
13
+ *
14
+ * @license
15
+ * This file is part of SyntaxHighlighter.
16
+ *
17
+ * SyntaxHighlighter is free software: you can redistribute it and/or modify
18
+ * it under the terms of the GNU Lesser General Public License as published by
19
+ * the Free Software Foundation, either version 3 of the License, or
20
+ * (at your option) any later version.
21
+ *
22
+ * SyntaxHighlighter is distributed in the hope that it will be useful,
23
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
24
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25
+ * GNU General Public License for more details.
26
+ *
27
+ * You should have received a copy of the GNU General Public License
28
+ * along with SyntaxHighlighter. If not, see <http://www.gnu.org/copyleft/lesser.html>.
29
+ */
30
+ /************************************
31
+ * Default Syntax Highlighter theme.
32
+ *
33
+ * Interface elements.
34
+ ************************************/
35
+
36
+ .syntaxhighlighter
37
+ {
38
+ background-color: #fff !important;
39
+ }
40
+
41
+ /* Highlighed line number */
42
+ .syntaxhighlighter .line.highlighted .number
43
+ {
44
+ color: black !important;
45
+ }
46
+
47
+ /* Highlighed line */
48
+ .syntaxhighlighter .line.highlighted.alt1,
49
+ .syntaxhighlighter .line.highlighted.alt2
50
+ {
51
+ background-color: #e0e0e0 !important;
52
+ }
53
+
54
+ /* Gutter line numbers */
55
+ .syntaxhighlighter .line .number
56
+ {
57
+ color: #afafaf !important;
58
+ }
59
+
60
+ /* Add border to the lines */
61
+ .syntaxhighlighter .line .content
62
+ {
63
+ border-left: 3px solid #6CE26C !important;
64
+ color: #000 !important;
65
+ }
66
+
67
+ .syntaxhighlighter.printing .line .content
68
+ {
69
+ border: 0 !important;
70
+ }
71
+
72
+ /* First line */
73
+ .syntaxhighlighter .line.alt1
74
+ {
75
+ background-color: #fff !important;
76
+ }
77
+
78
+ /* Second line */
79
+ .syntaxhighlighter .line.alt2
80
+ {
81
+ background-color: #F8F8F8 !important;
82
+ }
83
+
84
+ .syntaxhighlighter .toolbar
85
+ {
86
+ background-color: #F8F8F8 !important;
87
+ border: #E7E5DC solid 1px !important;
88
+ }
89
+
90
+ .syntaxhighlighter .toolbar a
91
+ {
92
+ color: #a0a0a0 !important;
93
+ }
94
+
95
+ .syntaxhighlighter .toolbar a:hover
96
+ {
97
+ color: red !important;
98
+ }
99
+
100
+ /************************************
101
+ * Actual syntax highlighter colors.
102
+ ************************************/
103
+ .syntaxhighlighter .plain,
104
+ .syntaxhighlighter .plain a
105
+ {
106
+ color: #000 !important;
107
+ }
108
+
109
+ .syntaxhighlighter .comments,
110
+ .syntaxhighlighter .comments a
111
+ {
112
+ color: #008200 !important;
113
+ }
114
+
115
+ .syntaxhighlighter .string,
116
+ .syntaxhighlighter .string a
117
+ {
118
+ color: blue !important;
119
+ }
120
+
121
+ .syntaxhighlighter .keyword
122
+ {
123
+ color: #069 !important;
124
+ font-weight: bold !important;
125
+ }
126
+
127
+ .syntaxhighlighter .preprocessor
128
+ {
129
+ color: gray !important;
130
+ }
131
+
132
+ .syntaxhighlighter .variable
133
+ {
134
+ color: #a70 !important;
135
+ }
136
+
137
+ .syntaxhighlighter .value
138
+ {
139
+ color: #090 !important;
140
+ }
141
+
142
+ .syntaxhighlighter .functions
143
+ {
144
+ color: #ff1493 !important;
145
+ }
146
+
147
+ .syntaxhighlighter .constants
148
+ {
149
+ color: #0066CC !important;
150
+ }
151
+
152
+ .syntaxhighlighter .script
153
+ {
154
+ background-color: yellow !important;
155
+ }
156
+
157
+ .syntaxhighlighter .color1,
158
+ .syntaxhighlighter .color1 a
159
+ {
160
+ color: #808080 !important;
161
+ }
162
+
163
+ .syntaxhighlighter .color2,
164
+ .syntaxhighlighter .color2 a
165
+ {
166
+ color: #ff1493 !important;
167
+ }
168
+
169
+ .syntaxhighlighter .color3,
170
+ .syntaxhighlighter .color3 a
171
+ {
172
+ color: red !important;
173
+ }
@@ -0,0 +1,176 @@
1
+ /**
2
+ * SyntaxHighlighter
3
+ * http://alexgorbatchev.com/
4
+ *
5
+ * SyntaxHighlighter is donationware. If you are using it, please donate.
6
+ * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate
7
+ *
8
+ * @version
9
+ * 2.1.364 (October 15 2009)
10
+ *
11
+ * @copyright
12
+ * Copyright (C) 2004-2009 Alex Gorbatchev.
13
+ *
14
+ * @license
15
+ * This file is part of SyntaxHighlighter.
16
+ *
17
+ * SyntaxHighlighter is free software: you can redistribute it and/or modify
18
+ * it under the terms of the GNU Lesser General Public License as published by
19
+ * the Free Software Foundation, either version 3 of the License, or
20
+ * (at your option) any later version.
21
+ *
22
+ * SyntaxHighlighter is distributed in the hope that it will be useful,
23
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
24
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25
+ * GNU General Public License for more details.
26
+ *
27
+ * You should have received a copy of the GNU General Public License
28
+ * along with SyntaxHighlighter. If not, see <http://www.gnu.org/copyleft/lesser.html>.
29
+ */
30
+ /**
31
+ * Django SyntaxHighlighter theme
32
+ */
33
+
34
+ /************************************
35
+ * Interface elements.
36
+ ************************************/
37
+
38
+ .syntaxhighlighter
39
+ {
40
+ background-color: #0B2F20 !important;
41
+ }
42
+
43
+ /* Gutter line numbers */
44
+ .syntaxhighlighter .line .number
45
+ {
46
+ color: #497958 !important;
47
+ }
48
+
49
+ /* Add border to the lines */
50
+ .syntaxhighlighter .line .content
51
+ {
52
+ border-left: 3px solid #41A83E !important;
53
+ color: #B9BDB6 !important;
54
+ }
55
+
56
+ .syntaxhighlighter.printing .line .content
57
+ {
58
+ border: 0 !important;
59
+ }
60
+
61
+ /* First line */
62
+ .syntaxhighlighter .line.alt1
63
+ {
64
+ }
65
+
66
+ /* Second line */
67
+ .syntaxhighlighter .line.alt2
68
+ {
69
+ background-color: #0a2b1d !important;
70
+ }
71
+
72
+ /* Highlighed line number */
73
+ .syntaxhighlighter .line.highlighted .number
74
+ {
75
+ background-color: #336442 !important;
76
+ color: #fff !important;
77
+ }
78
+
79
+ /* Highlighed line */
80
+ .syntaxhighlighter .line.highlighted.alt1,
81
+ .syntaxhighlighter .line.highlighted.alt2
82
+ {
83
+ background-color: #336442 !important;
84
+ }
85
+
86
+ .syntaxhighlighter .toolbar
87
+ {
88
+ background-color: #245032 !important;
89
+ border: #0B2F20 solid 1px !important;
90
+ }
91
+
92
+ .syntaxhighlighter .toolbar a
93
+ {
94
+ color: #C4B14A !important;
95
+ }
96
+
97
+ .syntaxhighlighter .toolbar a:hover
98
+ {
99
+ color: #FFE862 !important;
100
+ }
101
+
102
+ /************************************
103
+ * Actual syntax highlighter colors.
104
+ ************************************/
105
+ .syntaxhighlighter .plain,
106
+ .syntaxhighlighter .plain a
107
+ {
108
+ color: #F8F8F8 !important;
109
+ }
110
+
111
+ .syntaxhighlighter .comments,
112
+ .syntaxhighlighter .comments a
113
+ {
114
+ color: #336442 !important;
115
+ font-style: italic !important;
116
+ }
117
+
118
+ .syntaxhighlighter .string,
119
+ .syntaxhighlighter .string a
120
+ {
121
+ color: #9DF39F !important;
122
+ }
123
+
124
+ .syntaxhighlighter .keyword
125
+ {
126
+ color: #96DD3B !important;
127
+ font-weight: bold !important;
128
+ }
129
+
130
+ .syntaxhighlighter .preprocessor
131
+ {
132
+ color: #91BB9E !important;
133
+ }
134
+
135
+ .syntaxhighlighter .variable
136
+ {
137
+ color: #FFAA3E !important;
138
+ }
139
+
140
+ .syntaxhighlighter .value
141
+ {
142
+ color: #F7E741 !important;
143
+ }
144
+
145
+ .syntaxhighlighter .functions
146
+ {
147
+ color: #FFAA3E !important;
148
+ }
149
+
150
+ .syntaxhighlighter .constants
151
+ {
152
+ color: #E0E8FF !important;
153
+ }
154
+
155
+ .syntaxhighlighter .script
156
+ {
157
+ background-color: #497958 !important;
158
+ }
159
+
160
+ .syntaxhighlighter .color1,
161
+ .syntaxhighlighter .color1 a
162
+ {
163
+ color: #EB939A !important;
164
+ }
165
+
166
+ .syntaxhighlighter .color2,
167
+ .syntaxhighlighter .color2 a
168
+ {
169
+ color: #91BB9E !important;
170
+ }
171
+
172
+ .syntaxhighlighter .color3,
173
+ .syntaxhighlighter .color3 a
174
+ {
175
+ color: #EDEF7D !important;
176
+ }
@@ -0,0 +1,190 @@
1
+ /**
2
+ * SyntaxHighlighter
3
+ * http://alexgorbatchev.com/
4
+ *
5
+ * SyntaxHighlighter is donationware. If you are using it, please donate.
6
+ * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate
7
+ *
8
+ * @version
9
+ * 2.1.364 (October 15 2009)
10
+ *
11
+ * @copyright
12
+ * Copyright (C) 2004-2009 Alex Gorbatchev.
13
+ *
14
+ * @license
15
+ * This file is part of SyntaxHighlighter.
16
+ *
17
+ * SyntaxHighlighter is free software: you can redistribute it and/or modify
18
+ * it under the terms of the GNU Lesser General Public License as published by
19
+ * the Free Software Foundation, either version 3 of the License, or
20
+ * (at your option) any later version.
21
+ *
22
+ * SyntaxHighlighter is distributed in the hope that it will be useful,
23
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
24
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25
+ * GNU General Public License for more details.
26
+ *
27
+ * You should have received a copy of the GNU General Public License
28
+ * along with SyntaxHighlighter. If not, see <http://www.gnu.org/copyleft/lesser.html>.
29
+ */
30
+ /**
31
+ * Eclipse IDE SyntaxHighlighter color theme
32
+ * (C) Code-House
33
+ * http://blog.code-house.org/2009/10/xml-i-adnotacje-kod-ogolnego-przeznaczenia-i-jpa/
34
+ */
35
+
36
+ .syntaxhighlighter
37
+ {
38
+ background-color: #fff !important;
39
+ }
40
+
41
+ /* Highlighed line number */
42
+ .syntaxhighlighter .line.highlighted .number
43
+ {
44
+ background-color: #c3defe !important;
45
+ }
46
+
47
+ /* Highlighed line */
48
+ .syntaxhighlighter .line.highlighted.alt1,
49
+ .syntaxhighlighter .line.highlighted.alt2
50
+ {
51
+ background-color: #c3defe !important;
52
+ }
53
+
54
+ /* Gutter line numbers */
55
+ .syntaxhighlighter .line .number
56
+ {
57
+ color: #787878 !important;
58
+ background-color: #fff !important;
59
+ }
60
+
61
+ /* Add border to the lines */
62
+ .syntaxhighlighter .line .content
63
+ {
64
+ border-left: 1px solid #d4d0c8 !important;
65
+ color: #000 !important;
66
+ }
67
+
68
+ .syntaxhighlighter.printing .line .content
69
+ {
70
+ border: 0 !important;
71
+ }
72
+
73
+ /* First line */
74
+ .syntaxhighlighter .line.alt1
75
+ {
76
+ background-color: #fff !important;
77
+ }
78
+
79
+ /* Second line */
80
+ .syntaxhighlighter .line.alt2
81
+ {
82
+ background-color: #fff !important;
83
+ }
84
+
85
+ .syntaxhighlighter .toolbar
86
+ {
87
+ background-color: #F8F8F8 !important;
88
+ border: #E7E5DC solid 1px !important;
89
+ }
90
+
91
+ .syntaxhighlighter .toolbar a
92
+ {
93
+ color: #a0a0a0 !important;
94
+ }
95
+
96
+ .syntaxhighlighter .toolbar a:hover
97
+ {
98
+ color: red !important;
99
+ }
100
+
101
+ /************************************
102
+ * Actual syntax highlighter colors.
103
+ ************************************/
104
+ .syntaxhighlighter .plain,
105
+ .syntaxhighlighter .plain a
106
+ {
107
+ color: #000 !important;
108
+ }
109
+
110
+ .syntaxhighlighter .comments,
111
+ .syntaxhighlighter .comments a
112
+ {
113
+ color: #3f5fbf !important;
114
+ }
115
+
116
+ .syntaxhighlighter .string,
117
+ .syntaxhighlighter .string a
118
+ {
119
+ color: #2a00ff !important;
120
+ }
121
+
122
+ .syntaxhighlighter .keyword
123
+ {
124
+ color: #7f0055 !important;
125
+ font-weight: bold !important;
126
+ }
127
+
128
+ .syntaxhighlighter .preprocessor
129
+ {
130
+ color: #646464 !important;
131
+ }
132
+
133
+ .syntaxhighlighter .variable
134
+ {
135
+ color: #a70 !important;
136
+ }
137
+
138
+ .syntaxhighlighter .value
139
+ {
140
+ color: #090 !important;
141
+ }
142
+
143
+ .syntaxhighlighter .functions
144
+ {
145
+ color: #ff1493 !important;
146
+ }
147
+
148
+ .syntaxhighlighter .constants
149
+ {
150
+ color: #0066CC !important;
151
+ }
152
+
153
+ .syntaxhighlighter .script
154
+ {
155
+ background-color: yellow !important;
156
+ }
157
+
158
+ .syntaxhighlighter .color1,
159
+ .syntaxhighlighter .color1 a
160
+ {
161
+ color: #808080 !important;
162
+ }
163
+
164
+ .syntaxhighlighter .color2,
165
+ .syntaxhighlighter .color2 a
166
+ {
167
+ color: #ff1493 !important;
168
+ }
169
+
170
+ .syntaxhighlighter .color3,
171
+ .syntaxhighlighter .color3 a
172
+ {
173
+ color: red !important;
174
+ }
175
+
176
+
177
+ .xml .keyword {
178
+ color: #3f7f7f !important;
179
+ font-weight: normal !important;
180
+ }
181
+
182
+ .xml .color1,
183
+ .xml .color1 a{
184
+ color: #7f007f !important;
185
+ }
186
+
187
+ .xml .string {
188
+ font-style: italic !important;
189
+ color: #2a00ff !important;
190
+ }