ferblape-query_memcached 2.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.
- data/.gitignore +2 -0
- data/MIT-LICENSE +20 -0
- data/README.markdown +87 -0
- data/RUNNING_TESTS +18 -0
- data/Rakefile +37 -0
- data/TODO +6 -0
- data/init.rb +3 -0
- data/lib/extensions/lock.rb +31 -0
- data/lib/query_memcached.rb +191 -0
- data/test/query_memcached_test.rb +26 -0
- data/test/testing_app/README +1 -0
- data/test/testing_app/Rakefile +8 -0
- data/test/testing_app/app/controllers/application.rb +15 -0
- data/test/testing_app/app/helpers/application_helper.rb +3 -0
- data/test/testing_app/app/models/author.rb +133 -0
- data/test/testing_app/app/models/auto_id.rb +4 -0
- data/test/testing_app/app/models/binary.rb +2 -0
- data/test/testing_app/app/models/book.rb +4 -0
- data/test/testing_app/app/models/categorization.rb +5 -0
- data/test/testing_app/app/models/category.rb +29 -0
- data/test/testing_app/app/models/citation.rb +6 -0
- data/test/testing_app/app/models/club.rb +7 -0
- data/test/testing_app/app/models/column_name.rb +3 -0
- data/test/testing_app/app/models/comment.rb +25 -0
- data/test/testing_app/app/models/company.rb +123 -0
- data/test/testing_app/app/models/company_in_module.rb +61 -0
- data/test/testing_app/app/models/computer.rb +4 -0
- data/test/testing_app/app/models/contact.rb +16 -0
- data/test/testing_app/app/models/course.rb +3 -0
- data/test/testing_app/app/models/customer.rb +55 -0
- data/test/testing_app/app/models/default.rb +2 -0
- data/test/testing_app/app/models/developer.rb +76 -0
- data/test/testing_app/app/models/edge.rb +5 -0
- data/test/testing_app/app/models/entrant.rb +3 -0
- data/test/testing_app/app/models/guid.rb +2 -0
- data/test/testing_app/app/models/item.rb +7 -0
- data/test/testing_app/app/models/job.rb +5 -0
- data/test/testing_app/app/models/joke.rb +3 -0
- data/test/testing_app/app/models/keyboard.rb +3 -0
- data/test/testing_app/app/models/legacy_thing.rb +3 -0
- data/test/testing_app/app/models/matey.rb +4 -0
- data/test/testing_app/app/models/member.rb +9 -0
- data/test/testing_app/app/models/membership.rb +9 -0
- data/test/testing_app/app/models/minimalistic.rb +2 -0
- data/test/testing_app/app/models/mixed_case_monkey.rb +3 -0
- data/test/testing_app/app/models/movie.rb +5 -0
- data/test/testing_app/app/models/order.rb +4 -0
- data/test/testing_app/app/models/owner.rb +4 -0
- data/test/testing_app/app/models/parrot.rb +13 -0
- data/test/testing_app/app/models/person.rb +10 -0
- data/test/testing_app/app/models/pet.rb +4 -0
- data/test/testing_app/app/models/pirate.rb +9 -0
- data/test/testing_app/app/models/post.rb +80 -0
- data/test/testing_app/app/models/price_estimate.rb +3 -0
- data/test/testing_app/app/models/project.rb +29 -0
- data/test/testing_app/app/models/reader.rb +4 -0
- data/test/testing_app/app/models/reference.rb +4 -0
- data/test/testing_app/app/models/reply.rb +39 -0
- data/test/testing_app/app/models/ship.rb +3 -0
- data/test/testing_app/app/models/sponsor.rb +4 -0
- data/test/testing_app/app/models/subject.rb +4 -0
- data/test/testing_app/app/models/subscriber.rb +8 -0
- data/test/testing_app/app/models/subscription.rb +4 -0
- data/test/testing_app/app/models/tag.rb +7 -0
- data/test/testing_app/app/models/tagging.rb +10 -0
- data/test/testing_app/app/models/task.rb +2 -0
- data/test/testing_app/app/models/topic.rb +65 -0
- data/test/testing_app/app/models/treasure.rb +6 -0
- data/test/testing_app/app/models/vertex.rb +9 -0
- data/test/testing_app/app/models/warehouse_thing.rb +5 -0
- data/test/testing_app/config/boot.rb +109 -0
- data/test/testing_app/config/database.yml +11 -0
- data/test/testing_app/config/environment.rb +19 -0
- data/test/testing_app/config/environments/development.rb +0 -0
- data/test/testing_app/config/environments/production.rb +0 -0
- data/test/testing_app/config/environments/test.rb +0 -0
- data/test/testing_app/config/initializers/inflections.rb +10 -0
- data/test/testing_app/config/initializers/mime_types.rb +5 -0
- data/test/testing_app/config/initializers/new_rails_defaults.rb +15 -0
- data/test/testing_app/config/routes.rb +41 -0
- data/test/testing_app/db/schema.rb +443 -0
- data/test/testing_app/script/about +3 -0
- data/test/testing_app/script/console +3 -0
- data/test/testing_app/script/dbconsole +3 -0
- data/test/testing_app/script/destroy +3 -0
- data/test/testing_app/script/generate +3 -0
- data/test/testing_app/script/performance/benchmarker +3 -0
- data/test/testing_app/script/performance/profiler +3 -0
- data/test/testing_app/script/performance/request +3 -0
- data/test/testing_app/script/plugin +3 -0
- data/test/testing_app/script/process/inspector +3 -0
- data/test/testing_app/script/process/reaper +3 -0
- data/test/testing_app/script/process/spawner +3 -0
- data/test/testing_app/script/runner +3 -0
- data/test/testing_app/script/server +3 -0
- data/test/testing_app/test/fixtures/accounts.yml +28 -0
- data/test/testing_app/test/fixtures/all/developers.yml +0 -0
- data/test/testing_app/test/fixtures/all/people.csv +0 -0
- data/test/testing_app/test/fixtures/all/tasks.yml +0 -0
- data/test/testing_app/test/fixtures/author_addresses.yml +5 -0
- data/test/testing_app/test/fixtures/author_favorites.yml +4 -0
- data/test/testing_app/test/fixtures/authors.yml +9 -0
- data/test/testing_app/test/fixtures/binaries.yml +132 -0
- data/test/testing_app/test/fixtures/books.yml +7 -0
- data/test/testing_app/test/fixtures/categories.yml +14 -0
- data/test/testing_app/test/fixtures/categories/special_categories.yml +9 -0
- data/test/testing_app/test/fixtures/categories/subsubdir/arbitrary_filename.yml +4 -0
- data/test/testing_app/test/fixtures/categories_posts.yml +23 -0
- data/test/testing_app/test/fixtures/categorizations.yml +17 -0
- data/test/testing_app/test/fixtures/clubs.yml +6 -0
- data/test/testing_app/test/fixtures/comments.yml +59 -0
- data/test/testing_app/test/fixtures/companies.yml +55 -0
- data/test/testing_app/test/fixtures/computers.yml +4 -0
- data/test/testing_app/test/fixtures/courses.yml +7 -0
- data/test/testing_app/test/fixtures/customers.yml +17 -0
- data/test/testing_app/test/fixtures/developers.yml +21 -0
- data/test/testing_app/test/fixtures/developers_projects.yml +17 -0
- data/test/testing_app/test/fixtures/edges.yml +6 -0
- data/test/testing_app/test/fixtures/entrants.yml +14 -0
- data/test/testing_app/test/fixtures/fk_test_has_fk.yml +3 -0
- data/test/testing_app/test/fixtures/fk_test_has_pk.yml +2 -0
- data/test/testing_app/test/fixtures/funny_jokes.yml +10 -0
- data/test/testing_app/test/fixtures/items.yml +4 -0
- data/test/testing_app/test/fixtures/jobs.yml +7 -0
- data/test/testing_app/test/fixtures/legacy_things.yml +3 -0
- data/test/testing_app/test/fixtures/mateys.yml +4 -0
- data/test/testing_app/test/fixtures/members.yml +4 -0
- data/test/testing_app/test/fixtures/memberships.yml +20 -0
- data/test/testing_app/test/fixtures/minimalistics.yml +2 -0
- data/test/testing_app/test/fixtures/mixed_case_monkeys.yml +6 -0
- data/test/testing_app/test/fixtures/mixins.yml +29 -0
- data/test/testing_app/test/fixtures/movies.yml +7 -0
- data/test/testing_app/test/fixtures/naked/csv/accounts.csv +1 -0
- data/test/testing_app/test/fixtures/naked/yml/accounts.yml +1 -0
- data/test/testing_app/test/fixtures/naked/yml/companies.yml +1 -0
- data/test/testing_app/test/fixtures/naked/yml/courses.yml +1 -0
- data/test/testing_app/test/fixtures/owners.yml +7 -0
- data/test/testing_app/test/fixtures/parrots.yml +27 -0
- data/test/testing_app/test/fixtures/parrots_pirates.yml +7 -0
- data/test/testing_app/test/fixtures/people.yml +6 -0
- data/test/testing_app/test/fixtures/pets.yml +14 -0
- data/test/testing_app/test/fixtures/pirates.yml +9 -0
- data/test/testing_app/test/fixtures/posts.yml +49 -0
- data/test/testing_app/test/fixtures/price_estimates.yml +7 -0
- data/test/testing_app/test/fixtures/projects.yml +7 -0
- data/test/testing_app/test/fixtures/readers.yml +9 -0
- data/test/testing_app/test/fixtures/references.yml +17 -0
- data/test/testing_app/test/fixtures/reserved_words/distinct.yml +5 -0
- data/test/testing_app/test/fixtures/reserved_words/distincts_selects.yml +11 -0
- data/test/testing_app/test/fixtures/reserved_words/group.yml +14 -0
- data/test/testing_app/test/fixtures/reserved_words/select.yml +8 -0
- data/test/testing_app/test/fixtures/reserved_words/values.yml +7 -0
- data/test/testing_app/test/fixtures/ships.yml +5 -0
- data/test/testing_app/test/fixtures/sponsors.yml +9 -0
- data/test/testing_app/test/fixtures/subscribers.yml +7 -0
- data/test/testing_app/test/fixtures/subscriptions.yml +12 -0
- data/test/testing_app/test/fixtures/taggings.yml +28 -0
- data/test/testing_app/test/fixtures/tags.yml +7 -0
- data/test/testing_app/test/fixtures/tasks.yml +7 -0
- data/test/testing_app/test/fixtures/topics.yml +42 -0
- data/test/testing_app/test/fixtures/treasures.yml +10 -0
- data/test/testing_app/test/fixtures/vertices.yml +4 -0
- data/test/testing_app/test/fixtures/warehouse-things.yml +3 -0
- data/test/testing_app/test/test_helper.rb +131 -0
- data/test/testing_app/test/unit/query_cache_test.rb +180 -0
- metadata +289 -0
metadata
ADDED
@@ -0,0 +1,289 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ferblape-query_memcached
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.2.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Fernando Blat
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-07-27 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description:
|
17
|
+
email:
|
18
|
+
- ferblape@gmail.com
|
19
|
+
executables: []
|
20
|
+
|
21
|
+
extensions: []
|
22
|
+
|
23
|
+
extra_rdoc_files:
|
24
|
+
- README.markdown
|
25
|
+
files:
|
26
|
+
- .gitignore
|
27
|
+
- MIT-LICENSE
|
28
|
+
- README.markdown
|
29
|
+
- RUNNING_TESTS
|
30
|
+
- Rakefile
|
31
|
+
- TODO
|
32
|
+
- init.rb
|
33
|
+
- lib/extensions/lock.rb
|
34
|
+
- lib/query_memcached.rb
|
35
|
+
- test/query_memcached_test.rb
|
36
|
+
- test/testing_app/README
|
37
|
+
- test/testing_app/Rakefile
|
38
|
+
- test/testing_app/app/controllers/application.rb
|
39
|
+
- test/testing_app/app/helpers/application_helper.rb
|
40
|
+
- test/testing_app/app/models/author.rb
|
41
|
+
- test/testing_app/app/models/auto_id.rb
|
42
|
+
- test/testing_app/app/models/binary.rb
|
43
|
+
- test/testing_app/app/models/book.rb
|
44
|
+
- test/testing_app/app/models/categorization.rb
|
45
|
+
- test/testing_app/app/models/category.rb
|
46
|
+
- test/testing_app/app/models/citation.rb
|
47
|
+
- test/testing_app/app/models/club.rb
|
48
|
+
- test/testing_app/app/models/column_name.rb
|
49
|
+
- test/testing_app/app/models/comment.rb
|
50
|
+
- test/testing_app/app/models/company.rb
|
51
|
+
- test/testing_app/app/models/company_in_module.rb
|
52
|
+
- test/testing_app/app/models/computer.rb
|
53
|
+
- test/testing_app/app/models/contact.rb
|
54
|
+
- test/testing_app/app/models/course.rb
|
55
|
+
- test/testing_app/app/models/customer.rb
|
56
|
+
- test/testing_app/app/models/default.rb
|
57
|
+
- test/testing_app/app/models/developer.rb
|
58
|
+
- test/testing_app/app/models/edge.rb
|
59
|
+
- test/testing_app/app/models/entrant.rb
|
60
|
+
- test/testing_app/app/models/guid.rb
|
61
|
+
- test/testing_app/app/models/item.rb
|
62
|
+
- test/testing_app/app/models/job.rb
|
63
|
+
- test/testing_app/app/models/joke.rb
|
64
|
+
- test/testing_app/app/models/keyboard.rb
|
65
|
+
- test/testing_app/app/models/legacy_thing.rb
|
66
|
+
- test/testing_app/app/models/matey.rb
|
67
|
+
- test/testing_app/app/models/member.rb
|
68
|
+
- test/testing_app/app/models/membership.rb
|
69
|
+
- test/testing_app/app/models/minimalistic.rb
|
70
|
+
- test/testing_app/app/models/mixed_case_monkey.rb
|
71
|
+
- test/testing_app/app/models/movie.rb
|
72
|
+
- test/testing_app/app/models/order.rb
|
73
|
+
- test/testing_app/app/models/owner.rb
|
74
|
+
- test/testing_app/app/models/parrot.rb
|
75
|
+
- test/testing_app/app/models/person.rb
|
76
|
+
- test/testing_app/app/models/pet.rb
|
77
|
+
- test/testing_app/app/models/pirate.rb
|
78
|
+
- test/testing_app/app/models/post.rb
|
79
|
+
- test/testing_app/app/models/price_estimate.rb
|
80
|
+
- test/testing_app/app/models/project.rb
|
81
|
+
- test/testing_app/app/models/reader.rb
|
82
|
+
- test/testing_app/app/models/reference.rb
|
83
|
+
- test/testing_app/app/models/reply.rb
|
84
|
+
- test/testing_app/app/models/ship.rb
|
85
|
+
- test/testing_app/app/models/sponsor.rb
|
86
|
+
- test/testing_app/app/models/subject.rb
|
87
|
+
- test/testing_app/app/models/subscriber.rb
|
88
|
+
- test/testing_app/app/models/subscription.rb
|
89
|
+
- test/testing_app/app/models/tag.rb
|
90
|
+
- test/testing_app/app/models/tagging.rb
|
91
|
+
- test/testing_app/app/models/task.rb
|
92
|
+
- test/testing_app/app/models/topic.rb
|
93
|
+
- test/testing_app/app/models/treasure.rb
|
94
|
+
- test/testing_app/app/models/vertex.rb
|
95
|
+
- test/testing_app/app/models/warehouse_thing.rb
|
96
|
+
- test/testing_app/config/boot.rb
|
97
|
+
- test/testing_app/config/database.yml
|
98
|
+
- test/testing_app/config/environment.rb
|
99
|
+
- test/testing_app/config/environments/development.rb
|
100
|
+
- test/testing_app/config/environments/production.rb
|
101
|
+
- test/testing_app/config/environments/test.rb
|
102
|
+
- test/testing_app/config/initializers/inflections.rb
|
103
|
+
- test/testing_app/config/initializers/mime_types.rb
|
104
|
+
- test/testing_app/config/initializers/new_rails_defaults.rb
|
105
|
+
- test/testing_app/config/routes.rb
|
106
|
+
- test/testing_app/db/schema.rb
|
107
|
+
- test/testing_app/script/about
|
108
|
+
- test/testing_app/script/console
|
109
|
+
- test/testing_app/script/dbconsole
|
110
|
+
- test/testing_app/script/destroy
|
111
|
+
- test/testing_app/script/generate
|
112
|
+
- test/testing_app/script/performance/benchmarker
|
113
|
+
- test/testing_app/script/performance/profiler
|
114
|
+
- test/testing_app/script/performance/request
|
115
|
+
- test/testing_app/script/plugin
|
116
|
+
- test/testing_app/script/process/inspector
|
117
|
+
- test/testing_app/script/process/reaper
|
118
|
+
- test/testing_app/script/process/spawner
|
119
|
+
- test/testing_app/script/runner
|
120
|
+
- test/testing_app/script/server
|
121
|
+
- test/testing_app/test/fixtures/accounts.yml
|
122
|
+
- test/testing_app/test/fixtures/all/developers.yml
|
123
|
+
- test/testing_app/test/fixtures/all/people.csv
|
124
|
+
- test/testing_app/test/fixtures/all/tasks.yml
|
125
|
+
- test/testing_app/test/fixtures/author_addresses.yml
|
126
|
+
- test/testing_app/test/fixtures/author_favorites.yml
|
127
|
+
- test/testing_app/test/fixtures/authors.yml
|
128
|
+
- test/testing_app/test/fixtures/binaries.yml
|
129
|
+
- test/testing_app/test/fixtures/books.yml
|
130
|
+
- test/testing_app/test/fixtures/categories.yml
|
131
|
+
- test/testing_app/test/fixtures/categories/special_categories.yml
|
132
|
+
- test/testing_app/test/fixtures/categories/subsubdir/arbitrary_filename.yml
|
133
|
+
- test/testing_app/test/fixtures/categories_posts.yml
|
134
|
+
- test/testing_app/test/fixtures/categorizations.yml
|
135
|
+
- test/testing_app/test/fixtures/clubs.yml
|
136
|
+
- test/testing_app/test/fixtures/comments.yml
|
137
|
+
- test/testing_app/test/fixtures/companies.yml
|
138
|
+
- test/testing_app/test/fixtures/computers.yml
|
139
|
+
- test/testing_app/test/fixtures/courses.yml
|
140
|
+
- test/testing_app/test/fixtures/customers.yml
|
141
|
+
- test/testing_app/test/fixtures/developers.yml
|
142
|
+
- test/testing_app/test/fixtures/developers_projects.yml
|
143
|
+
- test/testing_app/test/fixtures/edges.yml
|
144
|
+
- test/testing_app/test/fixtures/entrants.yml
|
145
|
+
- test/testing_app/test/fixtures/fk_test_has_fk.yml
|
146
|
+
- test/testing_app/test/fixtures/fk_test_has_pk.yml
|
147
|
+
- test/testing_app/test/fixtures/funny_jokes.yml
|
148
|
+
- test/testing_app/test/fixtures/items.yml
|
149
|
+
- test/testing_app/test/fixtures/jobs.yml
|
150
|
+
- test/testing_app/test/fixtures/legacy_things.yml
|
151
|
+
- test/testing_app/test/fixtures/mateys.yml
|
152
|
+
- test/testing_app/test/fixtures/members.yml
|
153
|
+
- test/testing_app/test/fixtures/memberships.yml
|
154
|
+
- test/testing_app/test/fixtures/minimalistics.yml
|
155
|
+
- test/testing_app/test/fixtures/mixed_case_monkeys.yml
|
156
|
+
- test/testing_app/test/fixtures/mixins.yml
|
157
|
+
- test/testing_app/test/fixtures/movies.yml
|
158
|
+
- test/testing_app/test/fixtures/naked/csv/accounts.csv
|
159
|
+
- test/testing_app/test/fixtures/naked/yml/accounts.yml
|
160
|
+
- test/testing_app/test/fixtures/naked/yml/companies.yml
|
161
|
+
- test/testing_app/test/fixtures/naked/yml/courses.yml
|
162
|
+
- test/testing_app/test/fixtures/owners.yml
|
163
|
+
- test/testing_app/test/fixtures/parrots.yml
|
164
|
+
- test/testing_app/test/fixtures/parrots_pirates.yml
|
165
|
+
- test/testing_app/test/fixtures/people.yml
|
166
|
+
- test/testing_app/test/fixtures/pets.yml
|
167
|
+
- test/testing_app/test/fixtures/pirates.yml
|
168
|
+
- test/testing_app/test/fixtures/posts.yml
|
169
|
+
- test/testing_app/test/fixtures/price_estimates.yml
|
170
|
+
- test/testing_app/test/fixtures/projects.yml
|
171
|
+
- test/testing_app/test/fixtures/readers.yml
|
172
|
+
- test/testing_app/test/fixtures/references.yml
|
173
|
+
- test/testing_app/test/fixtures/reserved_words/distinct.yml
|
174
|
+
- test/testing_app/test/fixtures/reserved_words/distincts_selects.yml
|
175
|
+
- test/testing_app/test/fixtures/reserved_words/group.yml
|
176
|
+
- test/testing_app/test/fixtures/reserved_words/select.yml
|
177
|
+
- test/testing_app/test/fixtures/reserved_words/values.yml
|
178
|
+
- test/testing_app/test/fixtures/ships.yml
|
179
|
+
- test/testing_app/test/fixtures/sponsors.yml
|
180
|
+
- test/testing_app/test/fixtures/subscribers.yml
|
181
|
+
- test/testing_app/test/fixtures/subscriptions.yml
|
182
|
+
- test/testing_app/test/fixtures/taggings.yml
|
183
|
+
- test/testing_app/test/fixtures/tags.yml
|
184
|
+
- test/testing_app/test/fixtures/tasks.yml
|
185
|
+
- test/testing_app/test/fixtures/topics.yml
|
186
|
+
- test/testing_app/test/fixtures/treasures.yml
|
187
|
+
- test/testing_app/test/fixtures/vertices.yml
|
188
|
+
- test/testing_app/test/fixtures/warehouse-things.yml
|
189
|
+
- test/testing_app/test/test_helper.rb
|
190
|
+
- test/testing_app/test/unit/query_cache_test.rb
|
191
|
+
has_rdoc: true
|
192
|
+
homepage: http://github.com/ferblape/query_memcached
|
193
|
+
licenses:
|
194
|
+
post_install_message:
|
195
|
+
rdoc_options:
|
196
|
+
- --charset=UTF-8
|
197
|
+
require_paths:
|
198
|
+
- lib
|
199
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
200
|
+
requirements:
|
201
|
+
- - ">="
|
202
|
+
- !ruby/object:Gem::Version
|
203
|
+
version: "0"
|
204
|
+
version:
|
205
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
206
|
+
requirements:
|
207
|
+
- - ">="
|
208
|
+
- !ruby/object:Gem::Version
|
209
|
+
version: "0"
|
210
|
+
version:
|
211
|
+
requirements: []
|
212
|
+
|
213
|
+
rubyforge_project:
|
214
|
+
rubygems_version: 1.3.5
|
215
|
+
signing_key:
|
216
|
+
specification_version: 2
|
217
|
+
summary: A replacement for ActiveRecord query_cache that a adds a Memcache layer for persistence of the query's cache
|
218
|
+
test_files:
|
219
|
+
- test/query_memcached_test.rb
|
220
|
+
- test/testing_app/app/controllers/application.rb
|
221
|
+
- test/testing_app/app/helpers/application_helper.rb
|
222
|
+
- test/testing_app/app/models/author.rb
|
223
|
+
- test/testing_app/app/models/auto_id.rb
|
224
|
+
- test/testing_app/app/models/binary.rb
|
225
|
+
- test/testing_app/app/models/book.rb
|
226
|
+
- test/testing_app/app/models/categorization.rb
|
227
|
+
- test/testing_app/app/models/category.rb
|
228
|
+
- test/testing_app/app/models/citation.rb
|
229
|
+
- test/testing_app/app/models/club.rb
|
230
|
+
- test/testing_app/app/models/column_name.rb
|
231
|
+
- test/testing_app/app/models/comment.rb
|
232
|
+
- test/testing_app/app/models/company.rb
|
233
|
+
- test/testing_app/app/models/company_in_module.rb
|
234
|
+
- test/testing_app/app/models/computer.rb
|
235
|
+
- test/testing_app/app/models/contact.rb
|
236
|
+
- test/testing_app/app/models/course.rb
|
237
|
+
- test/testing_app/app/models/customer.rb
|
238
|
+
- test/testing_app/app/models/default.rb
|
239
|
+
- test/testing_app/app/models/developer.rb
|
240
|
+
- test/testing_app/app/models/edge.rb
|
241
|
+
- test/testing_app/app/models/entrant.rb
|
242
|
+
- test/testing_app/app/models/guid.rb
|
243
|
+
- test/testing_app/app/models/item.rb
|
244
|
+
- test/testing_app/app/models/job.rb
|
245
|
+
- test/testing_app/app/models/joke.rb
|
246
|
+
- test/testing_app/app/models/keyboard.rb
|
247
|
+
- test/testing_app/app/models/legacy_thing.rb
|
248
|
+
- test/testing_app/app/models/matey.rb
|
249
|
+
- test/testing_app/app/models/member.rb
|
250
|
+
- test/testing_app/app/models/membership.rb
|
251
|
+
- test/testing_app/app/models/minimalistic.rb
|
252
|
+
- test/testing_app/app/models/mixed_case_monkey.rb
|
253
|
+
- test/testing_app/app/models/movie.rb
|
254
|
+
- test/testing_app/app/models/order.rb
|
255
|
+
- test/testing_app/app/models/owner.rb
|
256
|
+
- test/testing_app/app/models/parrot.rb
|
257
|
+
- test/testing_app/app/models/person.rb
|
258
|
+
- test/testing_app/app/models/pet.rb
|
259
|
+
- test/testing_app/app/models/pirate.rb
|
260
|
+
- test/testing_app/app/models/post.rb
|
261
|
+
- test/testing_app/app/models/price_estimate.rb
|
262
|
+
- test/testing_app/app/models/project.rb
|
263
|
+
- test/testing_app/app/models/reader.rb
|
264
|
+
- test/testing_app/app/models/reference.rb
|
265
|
+
- test/testing_app/app/models/reply.rb
|
266
|
+
- test/testing_app/app/models/ship.rb
|
267
|
+
- test/testing_app/app/models/sponsor.rb
|
268
|
+
- test/testing_app/app/models/subject.rb
|
269
|
+
- test/testing_app/app/models/subscriber.rb
|
270
|
+
- test/testing_app/app/models/subscription.rb
|
271
|
+
- test/testing_app/app/models/tag.rb
|
272
|
+
- test/testing_app/app/models/tagging.rb
|
273
|
+
- test/testing_app/app/models/task.rb
|
274
|
+
- test/testing_app/app/models/topic.rb
|
275
|
+
- test/testing_app/app/models/treasure.rb
|
276
|
+
- test/testing_app/app/models/vertex.rb
|
277
|
+
- test/testing_app/app/models/warehouse_thing.rb
|
278
|
+
- test/testing_app/config/boot.rb
|
279
|
+
- test/testing_app/config/environment.rb
|
280
|
+
- test/testing_app/config/environments/development.rb
|
281
|
+
- test/testing_app/config/environments/production.rb
|
282
|
+
- test/testing_app/config/environments/test.rb
|
283
|
+
- test/testing_app/config/initializers/inflections.rb
|
284
|
+
- test/testing_app/config/initializers/mime_types.rb
|
285
|
+
- test/testing_app/config/initializers/new_rails_defaults.rb
|
286
|
+
- test/testing_app/config/routes.rb
|
287
|
+
- test/testing_app/db/schema.rb
|
288
|
+
- test/testing_app/test/test_helper.rb
|
289
|
+
- test/testing_app/test/unit/query_cache_test.rb
|