remote_partial 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +63 -0
- data/Rakefile +40 -0
- data/app/helpers/remote_partial/application_helper.rb +4 -0
- data/app/helpers/remote_partial/host_app_helper.rb +11 -0
- data/app/models/remote_partial/builder.rb +30 -0
- data/app/models/remote_partial/exceptions.rb +24 -0
- data/app/models/remote_partial/partial.rb +57 -0
- data/app/models/remote_partial/resource_manager.rb +66 -0
- data/config/routes.rb +2 -0
- data/db/migrate/20130702072157_create_remote_partial_partials.rb +12 -0
- data/lib/remote_partial/engine.rb +11 -0
- data/lib/remote_partial/version.rb +3 -0
- data/lib/remote_partial.rb +23 -0
- data/lib/tasks/remote_partial_tasks.rake +10 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/javascripts/demos.js +2 -0
- data/test/dummy/app/assets/javascripts/samples.js +2 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/assets/stylesheets/demos.css +4 -0
- data/test/dummy/app/assets/stylesheets/samples.css +4 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/controllers/demos_controller.rb +18 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/helpers/demos_helper.rb +2 -0
- data/test/dummy/app/helpers/samples_helper.rb +2 -0
- data/test/dummy/app/views/demos/_clock.html.erb +6 -0
- data/test/dummy/app/views/demos/_fixed.html.erb +3 -0
- data/test/dummy/app/views/demos/_ruby.html.erb +4 -0
- data/test/dummy/app/views/demos/index.html.erb +7 -0
- data/test/dummy/app/views/demos/show.html.erb +3 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/app/views/remote_partials/_clock.html.erb +1 -0
- data/test/dummy/app/views/remote_partials/_fixed.html.erb +2 -0
- data/test/dummy/app/views/remote_partials/_ruby.html.erb +11 -0
- data/test/dummy/app/views/remote_partials/_wcc.html.erb +810 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/remote_partial.rb +16 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +8 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20130703141929_create_remote_partial_partials.remote_partial.rb +13 -0
- data/test/dummy/db/schema.rb +26 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +4200 -0
- data/test/dummy/log/test.log +1397 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/test/functional/demos_controller_test.rb +20 -0
- data/test/dummy/test/unit/helpers/demos_helper_test.rb +13 -0
- data/test/dummy/test/unit/helpers/samples_helper_test.rb +4 -0
- data/test/dummy/tmp/cache/assets/BE9/0F0/sprockets%2Fb918d6cc641337193b96751002451244 +0 -0
- data/test/dummy/tmp/cache/assets/C2E/4E0/sprockets%2F5b29288e435665a224409e7d76530c95 +0 -0
- data/test/dummy/tmp/cache/assets/CB3/DC0/sprockets%2F157201713d2fd4954447e0bf4d8e853e +0 -0
- data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/CE3/080/sprockets%2F7d4d7689d6fa8236f0b4848c03ba1215 +0 -0
- data/test/dummy/tmp/cache/assets/CE5/D30/sprockets%2F8c9834a63b25a66203918a75ff56e2ac +0 -0
- data/test/dummy/tmp/cache/assets/D16/E10/sprockets%2Fd5d9c442561ec08a55d5d843a0d9792d +0 -0
- data/test/dummy/tmp/cache/assets/D20/020/sprockets%2F488c2c97fede45c86a62f1aa14554957 +0 -0
- data/test/dummy/tmp/cache/assets/D2E/690/sprockets%2F840591ad233bc7bda28b7f6a2b27c205 +0 -0
- data/test/dummy/tmp/cache/assets/D30/990/sprockets%2F995cc20d042afc03241f58f7d6ca1f02 +0 -0
- data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/D52/430/sprockets%2F6ada07f0c9869f9f35b05fa0988dc717 +0 -0
- data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/DBB/BE0/sprockets%2Fc6eb578d23a69b5abb056e3abaa5c060 +0 -0
- data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/E02/FA0/sprockets%2Fca8d5771d03e669be1d96acb6beb6cb6 +0 -0
- data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/pids/server.pid +1 -0
- data/test/fixtures/remote_partial/partials.yml +10 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/remote_partial_test.rb +7 -0
- data/test/test_helper.rb +80 -0
- data/test/unit/remote_partial/builder_test.rb +113 -0
- data/test/unit/remote_partial/exception_test.rb +21 -0
- data/test/unit/remote_partial/partial_test.rb +66 -0
- data/test/unit/remote_partial/resource_manager_test.rb +76 -0
- data/test/unit/remote_partial_test.rb +26 -0
- metadata +291 -0
metadata
ADDED
@@ -0,0 +1,291 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: remote_partial
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Rob Nichols
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-07-04 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rails
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: nokogiri
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
type: :runtime
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: sqlite3
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ! '>='
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
- !ruby/object:Gem::Dependency
|
63
|
+
name: webmock
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ! '>='
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
70
|
+
type: :development
|
71
|
+
prerelease: false
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ! '>='
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '0'
|
78
|
+
description: ! "RemotePartial comprises:\n a system to grab content from a remote
|
79
|
+
page and copy that content into partials;\n a scheduler to allow content to be
|
80
|
+
regularly updated;\n a helper method to ease inclusion of the partial with a view\"\n"
|
81
|
+
email:
|
82
|
+
- rob@undervale.co.uk
|
83
|
+
executables: []
|
84
|
+
extensions: []
|
85
|
+
extra_rdoc_files: []
|
86
|
+
files:
|
87
|
+
- app/helpers/remote_partial/host_app_helper.rb
|
88
|
+
- app/helpers/remote_partial/application_helper.rb
|
89
|
+
- app/models/remote_partial/resource_manager.rb
|
90
|
+
- app/models/remote_partial/exceptions.rb
|
91
|
+
- app/models/remote_partial/partial.rb
|
92
|
+
- app/models/remote_partial/builder.rb
|
93
|
+
- config/routes.rb
|
94
|
+
- db/migrate/20130702072157_create_remote_partial_partials.rb
|
95
|
+
- lib/remote_partial/version.rb
|
96
|
+
- lib/remote_partial/engine.rb
|
97
|
+
- lib/remote_partial.rb
|
98
|
+
- lib/tasks/remote_partial_tasks.rake
|
99
|
+
- MIT-LICENSE
|
100
|
+
- Rakefile
|
101
|
+
- README.rdoc
|
102
|
+
- test/integration/navigation_test.rb
|
103
|
+
- test/dummy/app/helpers/samples_helper.rb
|
104
|
+
- test/dummy/app/helpers/application_helper.rb
|
105
|
+
- test/dummy/app/helpers/demos_helper.rb
|
106
|
+
- test/dummy/app/views/demos/show.html.erb
|
107
|
+
- test/dummy/app/views/demos/_clock.html.erb
|
108
|
+
- test/dummy/app/views/demos/index.html.erb
|
109
|
+
- test/dummy/app/views/demos/_fixed.html.erb
|
110
|
+
- test/dummy/app/views/demos/_ruby.html.erb
|
111
|
+
- test/dummy/app/views/layouts/application.html.erb
|
112
|
+
- test/dummy/app/views/remote_partials/_clock.html.erb
|
113
|
+
- test/dummy/app/views/remote_partials/_wcc.html.erb
|
114
|
+
- test/dummy/app/views/remote_partials/_fixed.html.erb
|
115
|
+
- test/dummy/app/views/remote_partials/_ruby.html.erb
|
116
|
+
- test/dummy/app/controllers/application_controller.rb
|
117
|
+
- test/dummy/app/controllers/demos_controller.rb
|
118
|
+
- test/dummy/app/assets/javascripts/samples.js
|
119
|
+
- test/dummy/app/assets/javascripts/demos.js
|
120
|
+
- test/dummy/app/assets/javascripts/application.js
|
121
|
+
- test/dummy/app/assets/stylesheets/application.css
|
122
|
+
- test/dummy/app/assets/stylesheets/samples.css
|
123
|
+
- test/dummy/app/assets/stylesheets/demos.css
|
124
|
+
- test/dummy/README.rdoc
|
125
|
+
- test/dummy/log/test.log
|
126
|
+
- test/dummy/log/development.log
|
127
|
+
- test/dummy/db/migrate/20130703141929_create_remote_partial_partials.remote_partial.rb
|
128
|
+
- test/dummy/db/test.sqlite3
|
129
|
+
- test/dummy/db/development.sqlite3
|
130
|
+
- test/dummy/db/schema.rb
|
131
|
+
- test/dummy/config.ru
|
132
|
+
- test/dummy/public/422.html
|
133
|
+
- test/dummy/public/favicon.ico
|
134
|
+
- test/dummy/public/404.html
|
135
|
+
- test/dummy/public/500.html
|
136
|
+
- test/dummy/test/functional/demos_controller_test.rb
|
137
|
+
- test/dummy/test/unit/helpers/demos_helper_test.rb
|
138
|
+
- test/dummy/test/unit/helpers/samples_helper_test.rb
|
139
|
+
- test/dummy/Rakefile
|
140
|
+
- test/dummy/tmp/cache/assets/DBB/BE0/sprockets%2Fc6eb578d23a69b5abb056e3abaa5c060
|
141
|
+
- test/dummy/tmp/cache/assets/CE3/080/sprockets%2F7d4d7689d6fa8236f0b4848c03ba1215
|
142
|
+
- test/dummy/tmp/cache/assets/BE9/0F0/sprockets%2Fb918d6cc641337193b96751002451244
|
143
|
+
- test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
|
144
|
+
- test/dummy/tmp/cache/assets/D2E/690/sprockets%2F840591ad233bc7bda28b7f6a2b27c205
|
145
|
+
- test/dummy/tmp/cache/assets/D20/020/sprockets%2F488c2c97fede45c86a62f1aa14554957
|
146
|
+
- test/dummy/tmp/cache/assets/C2E/4E0/sprockets%2F5b29288e435665a224409e7d76530c95
|
147
|
+
- test/dummy/tmp/cache/assets/E02/FA0/sprockets%2Fca8d5771d03e669be1d96acb6beb6cb6
|
148
|
+
- test/dummy/tmp/cache/assets/D52/430/sprockets%2F6ada07f0c9869f9f35b05fa0988dc717
|
149
|
+
- test/dummy/tmp/cache/assets/D16/E10/sprockets%2Fd5d9c442561ec08a55d5d843a0d9792d
|
150
|
+
- test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
|
151
|
+
- test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
|
152
|
+
- test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
|
153
|
+
- test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
|
154
|
+
- test/dummy/tmp/cache/assets/D30/990/sprockets%2F995cc20d042afc03241f58f7d6ca1f02
|
155
|
+
- test/dummy/tmp/cache/assets/CE5/D30/sprockets%2F8c9834a63b25a66203918a75ff56e2ac
|
156
|
+
- test/dummy/tmp/cache/assets/CB3/DC0/sprockets%2F157201713d2fd4954447e0bf4d8e853e
|
157
|
+
- test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
|
158
|
+
- test/dummy/tmp/pids/server.pid
|
159
|
+
- test/dummy/config/locales/en.yml
|
160
|
+
- test/dummy/config/environment.rb
|
161
|
+
- test/dummy/config/routes.rb
|
162
|
+
- test/dummy/config/boot.rb
|
163
|
+
- test/dummy/config/environments/development.rb
|
164
|
+
- test/dummy/config/environments/production.rb
|
165
|
+
- test/dummy/config/environments/test.rb
|
166
|
+
- test/dummy/config/database.yml
|
167
|
+
- test/dummy/config/initializers/inflections.rb
|
168
|
+
- test/dummy/config/initializers/session_store.rb
|
169
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
170
|
+
- test/dummy/config/initializers/secret_token.rb
|
171
|
+
- test/dummy/config/initializers/remote_partial.rb
|
172
|
+
- test/dummy/config/initializers/mime_types.rb
|
173
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
174
|
+
- test/dummy/config/application.rb
|
175
|
+
- test/dummy/script/rails
|
176
|
+
- test/remote_partial_test.rb
|
177
|
+
- test/fixtures/remote_partial/partials.yml
|
178
|
+
- test/test_helper.rb
|
179
|
+
- test/unit/remote_partial/partial_test.rb
|
180
|
+
- test/unit/remote_partial/builder_test.rb
|
181
|
+
- test/unit/remote_partial/exception_test.rb
|
182
|
+
- test/unit/remote_partial/resource_manager_test.rb
|
183
|
+
- test/unit/remote_partial_test.rb
|
184
|
+
homepage: https://github.com/warwickshire/remote_partial
|
185
|
+
licenses: []
|
186
|
+
post_install_message:
|
187
|
+
rdoc_options: []
|
188
|
+
require_paths:
|
189
|
+
- lib
|
190
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
191
|
+
none: false
|
192
|
+
requirements:
|
193
|
+
- - ! '>='
|
194
|
+
- !ruby/object:Gem::Version
|
195
|
+
version: '0'
|
196
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
197
|
+
none: false
|
198
|
+
requirements:
|
199
|
+
- - ! '>='
|
200
|
+
- !ruby/object:Gem::Version
|
201
|
+
version: '0'
|
202
|
+
requirements: []
|
203
|
+
rubyforge_project:
|
204
|
+
rubygems_version: 1.8.24
|
205
|
+
signing_key:
|
206
|
+
specification_version: 3
|
207
|
+
summary: RemotePartial adds the facility to grab content from remote sites and add
|
208
|
+
them as partials to the host app.
|
209
|
+
test_files:
|
210
|
+
- test/integration/navigation_test.rb
|
211
|
+
- test/dummy/app/helpers/samples_helper.rb
|
212
|
+
- test/dummy/app/helpers/application_helper.rb
|
213
|
+
- test/dummy/app/helpers/demos_helper.rb
|
214
|
+
- test/dummy/app/views/demos/show.html.erb
|
215
|
+
- test/dummy/app/views/demos/_clock.html.erb
|
216
|
+
- test/dummy/app/views/demos/index.html.erb
|
217
|
+
- test/dummy/app/views/demos/_fixed.html.erb
|
218
|
+
- test/dummy/app/views/demos/_ruby.html.erb
|
219
|
+
- test/dummy/app/views/layouts/application.html.erb
|
220
|
+
- test/dummy/app/views/remote_partials/_clock.html.erb
|
221
|
+
- test/dummy/app/views/remote_partials/_wcc.html.erb
|
222
|
+
- test/dummy/app/views/remote_partials/_fixed.html.erb
|
223
|
+
- test/dummy/app/views/remote_partials/_ruby.html.erb
|
224
|
+
- test/dummy/app/controllers/application_controller.rb
|
225
|
+
- test/dummy/app/controllers/demos_controller.rb
|
226
|
+
- test/dummy/app/assets/javascripts/samples.js
|
227
|
+
- test/dummy/app/assets/javascripts/demos.js
|
228
|
+
- test/dummy/app/assets/javascripts/application.js
|
229
|
+
- test/dummy/app/assets/stylesheets/application.css
|
230
|
+
- test/dummy/app/assets/stylesheets/samples.css
|
231
|
+
- test/dummy/app/assets/stylesheets/demos.css
|
232
|
+
- test/dummy/README.rdoc
|
233
|
+
- test/dummy/log/test.log
|
234
|
+
- test/dummy/log/development.log
|
235
|
+
- test/dummy/db/migrate/20130703141929_create_remote_partial_partials.remote_partial.rb
|
236
|
+
- test/dummy/db/test.sqlite3
|
237
|
+
- test/dummy/db/development.sqlite3
|
238
|
+
- test/dummy/db/schema.rb
|
239
|
+
- test/dummy/config.ru
|
240
|
+
- test/dummy/public/422.html
|
241
|
+
- test/dummy/public/favicon.ico
|
242
|
+
- test/dummy/public/404.html
|
243
|
+
- test/dummy/public/500.html
|
244
|
+
- test/dummy/test/functional/demos_controller_test.rb
|
245
|
+
- test/dummy/test/unit/helpers/demos_helper_test.rb
|
246
|
+
- test/dummy/test/unit/helpers/samples_helper_test.rb
|
247
|
+
- test/dummy/Rakefile
|
248
|
+
- test/dummy/tmp/cache/assets/DBB/BE0/sprockets%2Fc6eb578d23a69b5abb056e3abaa5c060
|
249
|
+
- test/dummy/tmp/cache/assets/CE3/080/sprockets%2F7d4d7689d6fa8236f0b4848c03ba1215
|
250
|
+
- test/dummy/tmp/cache/assets/BE9/0F0/sprockets%2Fb918d6cc641337193b96751002451244
|
251
|
+
- test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
|
252
|
+
- test/dummy/tmp/cache/assets/D2E/690/sprockets%2F840591ad233bc7bda28b7f6a2b27c205
|
253
|
+
- test/dummy/tmp/cache/assets/D20/020/sprockets%2F488c2c97fede45c86a62f1aa14554957
|
254
|
+
- test/dummy/tmp/cache/assets/C2E/4E0/sprockets%2F5b29288e435665a224409e7d76530c95
|
255
|
+
- test/dummy/tmp/cache/assets/E02/FA0/sprockets%2Fca8d5771d03e669be1d96acb6beb6cb6
|
256
|
+
- test/dummy/tmp/cache/assets/D52/430/sprockets%2F6ada07f0c9869f9f35b05fa0988dc717
|
257
|
+
- test/dummy/tmp/cache/assets/D16/E10/sprockets%2Fd5d9c442561ec08a55d5d843a0d9792d
|
258
|
+
- test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
|
259
|
+
- test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
|
260
|
+
- test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
|
261
|
+
- test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
|
262
|
+
- test/dummy/tmp/cache/assets/D30/990/sprockets%2F995cc20d042afc03241f58f7d6ca1f02
|
263
|
+
- test/dummy/tmp/cache/assets/CE5/D30/sprockets%2F8c9834a63b25a66203918a75ff56e2ac
|
264
|
+
- test/dummy/tmp/cache/assets/CB3/DC0/sprockets%2F157201713d2fd4954447e0bf4d8e853e
|
265
|
+
- test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
|
266
|
+
- test/dummy/tmp/pids/server.pid
|
267
|
+
- test/dummy/config/locales/en.yml
|
268
|
+
- test/dummy/config/environment.rb
|
269
|
+
- test/dummy/config/routes.rb
|
270
|
+
- test/dummy/config/boot.rb
|
271
|
+
- test/dummy/config/environments/development.rb
|
272
|
+
- test/dummy/config/environments/production.rb
|
273
|
+
- test/dummy/config/environments/test.rb
|
274
|
+
- test/dummy/config/database.yml
|
275
|
+
- test/dummy/config/initializers/inflections.rb
|
276
|
+
- test/dummy/config/initializers/session_store.rb
|
277
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
278
|
+
- test/dummy/config/initializers/secret_token.rb
|
279
|
+
- test/dummy/config/initializers/remote_partial.rb
|
280
|
+
- test/dummy/config/initializers/mime_types.rb
|
281
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
282
|
+
- test/dummy/config/application.rb
|
283
|
+
- test/dummy/script/rails
|
284
|
+
- test/remote_partial_test.rb
|
285
|
+
- test/fixtures/remote_partial/partials.yml
|
286
|
+
- test/test_helper.rb
|
287
|
+
- test/unit/remote_partial/partial_test.rb
|
288
|
+
- test/unit/remote_partial/builder_test.rb
|
289
|
+
- test/unit/remote_partial/exception_test.rb
|
290
|
+
- test/unit/remote_partial/resource_manager_test.rb
|
291
|
+
- test/unit/remote_partial_test.rb
|