impressionist2 1.5.1

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.
Files changed (146) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +13 -0
  3. data/.rspec +1 -0
  4. data/.travis.yml +26 -0
  5. data/CHANGELOG.rdoc +82 -0
  6. data/Gemfile +26 -0
  7. data/LICENSE.txt +20 -0
  8. data/README.md +250 -0
  9. data/Rakefile +34 -0
  10. data/app/controllers/impressionist_controller.rb +146 -0
  11. data/app/models/impression.rb +2 -0
  12. data/app/models/impressionist/bots.rb +1468 -0
  13. data/app/models/impressionist/impressionable.rb +62 -0
  14. data/gemfiles/rails32.gemfile +30 -0
  15. data/gemfiles/rails40.gemfile +30 -0
  16. data/gemfiles/rails50.gemfile +30 -0
  17. data/impressionist2.gemspec +23 -0
  18. data/lib/generators/active_record/impressionist_generator.rb +22 -0
  19. data/lib/generators/active_record/templates/create_impressions_table.rb +32 -0
  20. data/lib/generators/impressionist_generator.rb +13 -0
  21. data/lib/generators/mongo_mapper/impressionist_generator.rb +8 -0
  22. data/lib/generators/mongoid/impressionist_generator.rb +8 -0
  23. data/lib/generators/templates/impression.rb +8 -0
  24. data/lib/impressionist/bots.rb +21 -0
  25. data/lib/impressionist/controllers/mongoid/impressionist_controller.rb +10 -0
  26. data/lib/impressionist/counter_cache.rb +73 -0
  27. data/lib/impressionist/engine.rb +30 -0
  28. data/lib/impressionist/is_impressionable.rb +23 -0
  29. data/lib/impressionist/load.rb +11 -0
  30. data/lib/impressionist/models/active_record/impression.rb +14 -0
  31. data/lib/impressionist/models/active_record/impressionist/impressionable.rb +12 -0
  32. data/lib/impressionist/models/mongo_mapper/impression.rb +18 -0
  33. data/lib/impressionist/models/mongo_mapper/impressionist/impressionable.rb +21 -0
  34. data/lib/impressionist/models/mongoid/impression.rb +25 -0
  35. data/lib/impressionist/models/mongoid/impressionist/impressionable.rb +28 -0
  36. data/lib/impressionist/rails_toggle.rb +26 -0
  37. data/lib/impressionist/setup_association.rb +49 -0
  38. data/lib/impressionist/update_counters.rb +69 -0
  39. data/lib/impressionist/version.rb +3 -0
  40. data/lib/impressionist.rb +12 -0
  41. data/logo.png +0 -0
  42. data/tests/README +11 -0
  43. data/tests/spec/minitest_helper.rb +4 -0
  44. data/tests/spec/rails_toggle_spec.rb +38 -0
  45. data/tests/spec/setup_association_spec.rb +56 -0
  46. data/tests/test_app/.gitignore +18 -0
  47. data/tests/test_app/.rspec +1 -0
  48. data/tests/test_app/Gemfile +51 -0
  49. data/tests/test_app/README +256 -0
  50. data/tests/test_app/README.rdoc +261 -0
  51. data/tests/test_app/Rakefile +7 -0
  52. data/tests/test_app/app/assets/images/rails.png +0 -0
  53. data/tests/test_app/app/assets/javascripts/application.js +13 -0
  54. data/tests/test_app/app/assets/stylesheets/application.css +13 -0
  55. data/tests/test_app/app/controllers/application_controller.rb +8 -0
  56. data/tests/test_app/app/controllers/articles_controller.rb +18 -0
  57. data/tests/test_app/app/controllers/dummy_controller.rb +8 -0
  58. data/tests/test_app/app/controllers/posts_controller.rb +23 -0
  59. data/tests/test_app/app/controllers/profiles_controller.rb +14 -0
  60. data/tests/test_app/app/controllers/widgets_controller.rb +12 -0
  61. data/tests/test_app/app/helpers/application_helper.rb +2 -0
  62. data/tests/test_app/app/mailers/.gitkeep +0 -0
  63. data/tests/test_app/app/models/.gitkeep +0 -0
  64. data/tests/test_app/app/models/article.rb +3 -0
  65. data/tests/test_app/app/models/dummy.rb +7 -0
  66. data/tests/test_app/app/models/post.rb +3 -0
  67. data/tests/test_app/app/models/profile.rb +6 -0
  68. data/tests/test_app/app/models/user.rb +3 -0
  69. data/tests/test_app/app/models/widget.rb +3 -0
  70. data/tests/test_app/app/views/articles/index.html.erb +1 -0
  71. data/tests/test_app/app/views/articles/show.html.erb +1 -0
  72. data/tests/test_app/app/views/dummy/index.html.erb +0 -0
  73. data/tests/test_app/app/views/layouts/application.html.erb +14 -0
  74. data/tests/test_app/app/views/posts/edit.html.erb +0 -0
  75. data/tests/test_app/app/views/posts/index.html.erb +0 -0
  76. data/tests/test_app/app/views/posts/show.html.erb +0 -0
  77. data/tests/test_app/app/views/profiles/show.html.erb +3 -0
  78. data/tests/test_app/app/views/widgets/index.html.erb +0 -0
  79. data/tests/test_app/app/views/widgets/new.html.erb +0 -0
  80. data/tests/test_app/app/views/widgets/show.html.erb +0 -0
  81. data/tests/test_app/config/application.rb +59 -0
  82. data/tests/test_app/config/boot.rb +6 -0
  83. data/tests/test_app/config/cucumber.yml +8 -0
  84. data/tests/test_app/config/database.yml +30 -0
  85. data/tests/test_app/config/environment.rb +5 -0
  86. data/tests/test_app/config/environments/development.rb +37 -0
  87. data/tests/test_app/config/environments/pg_test.rb +35 -0
  88. data/tests/test_app/config/environments/production.rb +67 -0
  89. data/tests/test_app/config/environments/test.rb +37 -0
  90. data/tests/test_app/config/initializers/backtrace_silencers.rb +7 -0
  91. data/tests/test_app/config/initializers/impression.rb +8 -0
  92. data/tests/test_app/config/initializers/inflections.rb +15 -0
  93. data/tests/test_app/config/initializers/mime_types.rb +5 -0
  94. data/tests/test_app/config/initializers/secret_token.rb +7 -0
  95. data/tests/test_app/config/initializers/session_store.rb +8 -0
  96. data/tests/test_app/config/initializers/wrap_parameters.rb +14 -0
  97. data/tests/test_app/config/locales/en.yml +5 -0
  98. data/tests/test_app/config/routes.rb +4 -0
  99. data/tests/test_app/config.ru +4 -0
  100. data/tests/test_app/db/migrate/20110201153144_create_articles.rb +13 -0
  101. data/tests/test_app/db/migrate/20110210205028_create_posts.rb +13 -0
  102. data/tests/test_app/db/migrate/20111127184039_create_widgets.rb +15 -0
  103. data/tests/test_app/db/migrate/20130719024021_create_impressions_table.rb +32 -0
  104. data/tests/test_app/db/migrate/20150207135825_create_profiles.rb +10 -0
  105. data/tests/test_app/db/migrate/20150207140310_create_friendly_id_slugs.rb +18 -0
  106. data/tests/test_app/db/schema.rb +80 -0
  107. data/tests/test_app/db/seeds.rb +7 -0
  108. data/tests/test_app/lib/assets/.gitkeep +0 -0
  109. data/tests/test_app/lib/tasks/.gitkeep +0 -0
  110. data/tests/test_app/lib/tasks/cucumber.rake +53 -0
  111. data/tests/test_app/log/.gitkeep +0 -0
  112. data/tests/test_app/public/404.html +26 -0
  113. data/tests/test_app/public/422.html +26 -0
  114. data/tests/test_app/public/500.html +25 -0
  115. data/tests/test_app/public/favicon.ico +0 -0
  116. data/tests/test_app/public/images/rails.png +0 -0
  117. data/tests/test_app/public/index.html +241 -0
  118. data/tests/test_app/public/javascripts/application.js +2 -0
  119. data/tests/test_app/public/javascripts/controls.js +965 -0
  120. data/tests/test_app/public/javascripts/dragdrop.js +974 -0
  121. data/tests/test_app/public/javascripts/effects.js +1123 -0
  122. data/tests/test_app/public/javascripts/prototype.js +6001 -0
  123. data/tests/test_app/public/javascripts/rails.js +175 -0
  124. data/tests/test_app/public/robots.txt +5 -0
  125. data/tests/test_app/public/stylesheets/.gitkeep +0 -0
  126. data/tests/test_app/script/cucumber +10 -0
  127. data/tests/test_app/script/rails +6 -0
  128. data/tests/test_app/spec/controllers/articles_controller_spec.rb +76 -0
  129. data/tests/test_app/spec/controllers/dummy_controller_spec.rb +11 -0
  130. data/tests/test_app/spec/controllers/impressionist_uniqueness_spec.rb +396 -0
  131. data/tests/test_app/spec/controllers/posts_controller_spec.rb +28 -0
  132. data/tests/test_app/spec/controllers/widgets_controller_spec.rb +91 -0
  133. data/tests/test_app/spec/fixtures/articles.yml +3 -0
  134. data/tests/test_app/spec/fixtures/impressions.yml +43 -0
  135. data/tests/test_app/spec/fixtures/posts.yml +3 -0
  136. data/tests/test_app/spec/fixtures/profiles.yml +4 -0
  137. data/tests/test_app/spec/fixtures/widgets.yml +4 -0
  138. data/tests/test_app/spec/initializers/initializers_spec.rb +20 -0
  139. data/tests/test_app/spec/models/bots_spec.rb +27 -0
  140. data/tests/test_app/spec/models/counter_caching_spec.rb +51 -0
  141. data/tests/test_app/spec/models/model_spec.rb +70 -0
  142. data/tests/test_app/spec/rails_generators/rails_generators_spec.rb +23 -0
  143. data/tests/test_app/spec/spec_helper.rb +43 -0
  144. data/upgrade_migrations/version_0_3_0.rb +27 -0
  145. data/upgrade_migrations/version_0_4_0.rb +9 -0
  146. metadata +314 -0
metadata ADDED
@@ -0,0 +1,314 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: impressionist2
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.5.1
5
+ platform: ruby
6
+ authors:
7
+ - johnmcaliley
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-08-24 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: nokogiri
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.6'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.6'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.0'
41
+ description: Log impressions from controller actions or from a model
42
+ email: john.mcaliley@gmail.com
43
+ executables: []
44
+ extensions: []
45
+ extra_rdoc_files: []
46
+ files:
47
+ - ".gitignore"
48
+ - ".rspec"
49
+ - ".travis.yml"
50
+ - CHANGELOG.rdoc
51
+ - Gemfile
52
+ - LICENSE.txt
53
+ - README.md
54
+ - Rakefile
55
+ - app/controllers/impressionist_controller.rb
56
+ - app/models/impression.rb
57
+ - app/models/impressionist/bots.rb
58
+ - app/models/impressionist/impressionable.rb
59
+ - gemfiles/rails32.gemfile
60
+ - gemfiles/rails40.gemfile
61
+ - gemfiles/rails50.gemfile
62
+ - impressionist2.gemspec
63
+ - lib/generators/active_record/impressionist_generator.rb
64
+ - lib/generators/active_record/templates/create_impressions_table.rb
65
+ - lib/generators/impressionist_generator.rb
66
+ - lib/generators/mongo_mapper/impressionist_generator.rb
67
+ - lib/generators/mongoid/impressionist_generator.rb
68
+ - lib/generators/templates/impression.rb
69
+ - lib/impressionist.rb
70
+ - lib/impressionist/bots.rb
71
+ - lib/impressionist/controllers/mongoid/impressionist_controller.rb
72
+ - lib/impressionist/counter_cache.rb
73
+ - lib/impressionist/engine.rb
74
+ - lib/impressionist/is_impressionable.rb
75
+ - lib/impressionist/load.rb
76
+ - lib/impressionist/models/active_record/impression.rb
77
+ - lib/impressionist/models/active_record/impressionist/impressionable.rb
78
+ - lib/impressionist/models/mongo_mapper/impression.rb
79
+ - lib/impressionist/models/mongo_mapper/impressionist/impressionable.rb
80
+ - lib/impressionist/models/mongoid/impression.rb
81
+ - lib/impressionist/models/mongoid/impressionist/impressionable.rb
82
+ - lib/impressionist/rails_toggle.rb
83
+ - lib/impressionist/setup_association.rb
84
+ - lib/impressionist/update_counters.rb
85
+ - lib/impressionist/version.rb
86
+ - logo.png
87
+ - tests/README
88
+ - tests/spec/minitest_helper.rb
89
+ - tests/spec/rails_toggle_spec.rb
90
+ - tests/spec/setup_association_spec.rb
91
+ - tests/test_app/.gitignore
92
+ - tests/test_app/.rspec
93
+ - tests/test_app/Gemfile
94
+ - tests/test_app/README
95
+ - tests/test_app/README.rdoc
96
+ - tests/test_app/Rakefile
97
+ - tests/test_app/app/assets/images/rails.png
98
+ - tests/test_app/app/assets/javascripts/application.js
99
+ - tests/test_app/app/assets/stylesheets/application.css
100
+ - tests/test_app/app/controllers/application_controller.rb
101
+ - tests/test_app/app/controllers/articles_controller.rb
102
+ - tests/test_app/app/controllers/dummy_controller.rb
103
+ - tests/test_app/app/controllers/posts_controller.rb
104
+ - tests/test_app/app/controllers/profiles_controller.rb
105
+ - tests/test_app/app/controllers/widgets_controller.rb
106
+ - tests/test_app/app/helpers/application_helper.rb
107
+ - tests/test_app/app/mailers/.gitkeep
108
+ - tests/test_app/app/models/.gitkeep
109
+ - tests/test_app/app/models/article.rb
110
+ - tests/test_app/app/models/dummy.rb
111
+ - tests/test_app/app/models/post.rb
112
+ - tests/test_app/app/models/profile.rb
113
+ - tests/test_app/app/models/user.rb
114
+ - tests/test_app/app/models/widget.rb
115
+ - tests/test_app/app/views/articles/index.html.erb
116
+ - tests/test_app/app/views/articles/show.html.erb
117
+ - tests/test_app/app/views/dummy/index.html.erb
118
+ - tests/test_app/app/views/layouts/application.html.erb
119
+ - tests/test_app/app/views/posts/edit.html.erb
120
+ - tests/test_app/app/views/posts/index.html.erb
121
+ - tests/test_app/app/views/posts/show.html.erb
122
+ - tests/test_app/app/views/profiles/show.html.erb
123
+ - tests/test_app/app/views/widgets/index.html.erb
124
+ - tests/test_app/app/views/widgets/new.html.erb
125
+ - tests/test_app/app/views/widgets/show.html.erb
126
+ - tests/test_app/config.ru
127
+ - tests/test_app/config/application.rb
128
+ - tests/test_app/config/boot.rb
129
+ - tests/test_app/config/cucumber.yml
130
+ - tests/test_app/config/database.yml
131
+ - tests/test_app/config/environment.rb
132
+ - tests/test_app/config/environments/development.rb
133
+ - tests/test_app/config/environments/pg_test.rb
134
+ - tests/test_app/config/environments/production.rb
135
+ - tests/test_app/config/environments/test.rb
136
+ - tests/test_app/config/initializers/backtrace_silencers.rb
137
+ - tests/test_app/config/initializers/impression.rb
138
+ - tests/test_app/config/initializers/inflections.rb
139
+ - tests/test_app/config/initializers/mime_types.rb
140
+ - tests/test_app/config/initializers/secret_token.rb
141
+ - tests/test_app/config/initializers/session_store.rb
142
+ - tests/test_app/config/initializers/wrap_parameters.rb
143
+ - tests/test_app/config/locales/en.yml
144
+ - tests/test_app/config/routes.rb
145
+ - tests/test_app/db/migrate/20110201153144_create_articles.rb
146
+ - tests/test_app/db/migrate/20110210205028_create_posts.rb
147
+ - tests/test_app/db/migrate/20111127184039_create_widgets.rb
148
+ - tests/test_app/db/migrate/20130719024021_create_impressions_table.rb
149
+ - tests/test_app/db/migrate/20150207135825_create_profiles.rb
150
+ - tests/test_app/db/migrate/20150207140310_create_friendly_id_slugs.rb
151
+ - tests/test_app/db/schema.rb
152
+ - tests/test_app/db/seeds.rb
153
+ - tests/test_app/lib/assets/.gitkeep
154
+ - tests/test_app/lib/tasks/.gitkeep
155
+ - tests/test_app/lib/tasks/cucumber.rake
156
+ - tests/test_app/log/.gitkeep
157
+ - tests/test_app/public/404.html
158
+ - tests/test_app/public/422.html
159
+ - tests/test_app/public/500.html
160
+ - tests/test_app/public/favicon.ico
161
+ - tests/test_app/public/images/rails.png
162
+ - tests/test_app/public/index.html
163
+ - tests/test_app/public/javascripts/application.js
164
+ - tests/test_app/public/javascripts/controls.js
165
+ - tests/test_app/public/javascripts/dragdrop.js
166
+ - tests/test_app/public/javascripts/effects.js
167
+ - tests/test_app/public/javascripts/prototype.js
168
+ - tests/test_app/public/javascripts/rails.js
169
+ - tests/test_app/public/robots.txt
170
+ - tests/test_app/public/stylesheets/.gitkeep
171
+ - tests/test_app/script/cucumber
172
+ - tests/test_app/script/rails
173
+ - tests/test_app/spec/controllers/articles_controller_spec.rb
174
+ - tests/test_app/spec/controllers/dummy_controller_spec.rb
175
+ - tests/test_app/spec/controllers/impressionist_uniqueness_spec.rb
176
+ - tests/test_app/spec/controllers/posts_controller_spec.rb
177
+ - tests/test_app/spec/controllers/widgets_controller_spec.rb
178
+ - tests/test_app/spec/fixtures/articles.yml
179
+ - tests/test_app/spec/fixtures/impressions.yml
180
+ - tests/test_app/spec/fixtures/posts.yml
181
+ - tests/test_app/spec/fixtures/profiles.yml
182
+ - tests/test_app/spec/fixtures/widgets.yml
183
+ - tests/test_app/spec/initializers/initializers_spec.rb
184
+ - tests/test_app/spec/models/bots_spec.rb
185
+ - tests/test_app/spec/models/counter_caching_spec.rb
186
+ - tests/test_app/spec/models/model_spec.rb
187
+ - tests/test_app/spec/rails_generators/rails_generators_spec.rb
188
+ - tests/test_app/spec/spec_helper.rb
189
+ - upgrade_migrations/version_0_3_0.rb
190
+ - upgrade_migrations/version_0_4_0.rb
191
+ homepage: http://github.com/charlotte-ruby/impressionist
192
+ licenses:
193
+ - MIT
194
+ metadata: {}
195
+ post_install_message:
196
+ rdoc_options: []
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
+ required_rubygems_version: !ruby/object:Gem::Requirement
205
+ requirements:
206
+ - - ">="
207
+ - !ruby/object:Gem::Version
208
+ version: 1.3.6
209
+ requirements: []
210
+ rubyforge_project:
211
+ rubygems_version: 2.5.1
212
+ signing_key:
213
+ specification_version: 4
214
+ summary: Easy way to log impressions
215
+ test_files:
216
+ - tests/spec/minitest_helper.rb
217
+ - tests/spec/rails_toggle_spec.rb
218
+ - tests/spec/setup_association_spec.rb
219
+ - tests/test_app/Gemfile
220
+ - tests/test_app/README
221
+ - tests/test_app/README.rdoc
222
+ - tests/test_app/Rakefile
223
+ - tests/test_app/app/assets/images/rails.png
224
+ - tests/test_app/app/assets/javascripts/application.js
225
+ - tests/test_app/app/assets/stylesheets/application.css
226
+ - tests/test_app/app/controllers/application_controller.rb
227
+ - tests/test_app/app/controllers/articles_controller.rb
228
+ - tests/test_app/app/controllers/dummy_controller.rb
229
+ - tests/test_app/app/controllers/posts_controller.rb
230
+ - tests/test_app/app/controllers/profiles_controller.rb
231
+ - tests/test_app/app/controllers/widgets_controller.rb
232
+ - tests/test_app/app/helpers/application_helper.rb
233
+ - tests/test_app/app/mailers/.gitkeep
234
+ - tests/test_app/app/models/.gitkeep
235
+ - tests/test_app/app/models/article.rb
236
+ - tests/test_app/app/models/dummy.rb
237
+ - tests/test_app/app/models/post.rb
238
+ - tests/test_app/app/models/profile.rb
239
+ - tests/test_app/app/models/user.rb
240
+ - tests/test_app/app/models/widget.rb
241
+ - tests/test_app/app/views/articles/index.html.erb
242
+ - tests/test_app/app/views/articles/show.html.erb
243
+ - tests/test_app/app/views/dummy/index.html.erb
244
+ - tests/test_app/app/views/layouts/application.html.erb
245
+ - tests/test_app/app/views/posts/edit.html.erb
246
+ - tests/test_app/app/views/posts/index.html.erb
247
+ - tests/test_app/app/views/posts/show.html.erb
248
+ - tests/test_app/app/views/profiles/show.html.erb
249
+ - tests/test_app/app/views/widgets/index.html.erb
250
+ - tests/test_app/app/views/widgets/new.html.erb
251
+ - tests/test_app/app/views/widgets/show.html.erb
252
+ - tests/test_app/config.ru
253
+ - tests/test_app/config/application.rb
254
+ - tests/test_app/config/boot.rb
255
+ - tests/test_app/config/cucumber.yml
256
+ - tests/test_app/config/database.yml
257
+ - tests/test_app/config/environment.rb
258
+ - tests/test_app/config/environments/development.rb
259
+ - tests/test_app/config/environments/pg_test.rb
260
+ - tests/test_app/config/environments/production.rb
261
+ - tests/test_app/config/environments/test.rb
262
+ - tests/test_app/config/initializers/backtrace_silencers.rb
263
+ - tests/test_app/config/initializers/impression.rb
264
+ - tests/test_app/config/initializers/inflections.rb
265
+ - tests/test_app/config/initializers/mime_types.rb
266
+ - tests/test_app/config/initializers/secret_token.rb
267
+ - tests/test_app/config/initializers/session_store.rb
268
+ - tests/test_app/config/initializers/wrap_parameters.rb
269
+ - tests/test_app/config/locales/en.yml
270
+ - tests/test_app/config/routes.rb
271
+ - tests/test_app/db/migrate/20110201153144_create_articles.rb
272
+ - tests/test_app/db/migrate/20110210205028_create_posts.rb
273
+ - tests/test_app/db/migrate/20111127184039_create_widgets.rb
274
+ - tests/test_app/db/migrate/20130719024021_create_impressions_table.rb
275
+ - tests/test_app/db/migrate/20150207135825_create_profiles.rb
276
+ - tests/test_app/db/migrate/20150207140310_create_friendly_id_slugs.rb
277
+ - tests/test_app/db/schema.rb
278
+ - tests/test_app/db/seeds.rb
279
+ - tests/test_app/lib/assets/.gitkeep
280
+ - tests/test_app/lib/tasks/.gitkeep
281
+ - tests/test_app/lib/tasks/cucumber.rake
282
+ - tests/test_app/log/.gitkeep
283
+ - tests/test_app/public/404.html
284
+ - tests/test_app/public/422.html
285
+ - tests/test_app/public/500.html
286
+ - tests/test_app/public/favicon.ico
287
+ - tests/test_app/public/images/rails.png
288
+ - tests/test_app/public/index.html
289
+ - tests/test_app/public/javascripts/application.js
290
+ - tests/test_app/public/javascripts/controls.js
291
+ - tests/test_app/public/javascripts/dragdrop.js
292
+ - tests/test_app/public/javascripts/effects.js
293
+ - tests/test_app/public/javascripts/prototype.js
294
+ - tests/test_app/public/javascripts/rails.js
295
+ - tests/test_app/public/robots.txt
296
+ - tests/test_app/public/stylesheets/.gitkeep
297
+ - tests/test_app/script/cucumber
298
+ - tests/test_app/script/rails
299
+ - tests/test_app/spec/controllers/articles_controller_spec.rb
300
+ - tests/test_app/spec/controllers/dummy_controller_spec.rb
301
+ - tests/test_app/spec/controllers/impressionist_uniqueness_spec.rb
302
+ - tests/test_app/spec/controllers/posts_controller_spec.rb
303
+ - tests/test_app/spec/controllers/widgets_controller_spec.rb
304
+ - tests/test_app/spec/fixtures/articles.yml
305
+ - tests/test_app/spec/fixtures/impressions.yml
306
+ - tests/test_app/spec/fixtures/posts.yml
307
+ - tests/test_app/spec/fixtures/profiles.yml
308
+ - tests/test_app/spec/fixtures/widgets.yml
309
+ - tests/test_app/spec/initializers/initializers_spec.rb
310
+ - tests/test_app/spec/models/bots_spec.rb
311
+ - tests/test_app/spec/models/counter_caching_spec.rb
312
+ - tests/test_app/spec/models/model_spec.rb
313
+ - tests/test_app/spec/rails_generators/rails_generators_spec.rb
314
+ - tests/test_app/spec/spec_helper.rb