timecop-console 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 50657f0790921ea73ec6cc14df79c8f4f6b39a36
4
- data.tar.gz: 44915f3caf225202462d13ea2a8f0907ac656f9a
3
+ metadata.gz: e3cf6cbaa7b642639d14e834d96dc4dc9e0e0ff3
4
+ data.tar.gz: f06e82b2203d65a0fabce33c6744c46f2ea0f632
5
5
  SHA512:
6
- metadata.gz: b61f83cd1c1f04531af5afdef7e5dfaf06ef490eff4fdb26e0c0f9c572fc706a595a8868b12e94d70b2ee9d5236c8da0cf9f1ea508aac2d3b9e8623159620634
7
- data.tar.gz: acdb2a90cbd87a051c730143fe811f92a9242b82be39bb1584c9d5a8281dd9e499ba4a4241b6d193c99aa08e534071f43429b6ddaa87a38f4c205245cc7be2f9
6
+ metadata.gz: 2aaed76efd27ad548cf5bb95d0b45327abab6c49a8ecac16b0906b1151a92d6b8da4375ac304cd5a8bdf13ef097508a7cbd16416dc07764dea9cbe6d5696af70
7
+ data.tar.gz: 071fdc3878f7665a9ccb42af6e3f323ba1ada8ab9b040e08826c56c453b7de8856d4f9f1b9ab0ece380afe4f365c44d89d320d5c049e9d4e481ffd7bce983c69
@@ -20,7 +20,7 @@ module TimecopConsole
20
20
  second = params[:sec]
21
21
  end
22
22
 
23
- session[SESSION_KEY_NAME] = Time.local(year, month, day, hour, minute, second)
23
+ session[SESSION_KEY_NAME] = Time.zone.local(year, month, day, hour, minute, second)
24
24
  redirect_to :back
25
25
  end
26
26
 
@@ -2,7 +2,7 @@ module TimecopConsole
2
2
  class Version
3
3
  MAJOR ||= 0
4
4
  MINOR ||= 3
5
- PATCH ||= 0
5
+ PATCH ||= 1
6
6
 
7
7
  class << self
8
8
  def to_s
@@ -19,6 +19,7 @@ describe TimecopConsole::MainController do
19
19
  it 'redirects back' do
20
20
  post :update, :timecop => timecop_param, :use_route => :timecop_console
21
21
 
22
+
22
23
  response.should redirect_to("where_i_came_from")
23
24
  end
24
25
 
@@ -32,6 +33,14 @@ describe TimecopConsole::MainController do
32
33
 
33
34
  response.should redirect_to("where_i_came_from")
34
35
  end
36
+
37
+ it 'sets virtual time with respect to Time.zone setting' do
38
+ Time.zone = ActiveSupport::TimeZone.all.detect { |tz| tz.name == 'Central Time (US & Canada)' } or raise("can not find TZ")
39
+
40
+ post :update, date_params.merge(use_route: :timecop_console)
41
+
42
+ session[TimecopConsole::SESSION_KEY_NAME].strftime('%d %b %H:%M %Z').should eq("22 Aug 12:00 CDT")
43
+ end
35
44
  end
36
45
  end
37
46
 
@@ -14,3 +14,367 @@ Completed 200 OK in 0ms
14
14
  Processing by AnonymousController#index as HTML
15
15
  [timecop-console] Time traveling to 2015-02-27 03:07:17 UTC
16
16
  Completed 500 Internal Server Error in 31535999995ms
17
+ Processing by TimecopConsole::MainController#update as HTML
18
+ Parameters: {"timecop"=>{"current_time(1i)"=>"2012", "current_time(2i)"=>"11", "current_time(3i)"=>"30", "current_time(4i)"=>"22", "current_time(5i)"=>"1"}}
19
+ Redirected to where_i_came_from
20
+ Completed 302 Found in 2ms
21
+ Processing by TimecopConsole::MainController#update as HTML
22
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
23
+ Redirected to where_i_came_from
24
+ Completed 302 Found in 0ms
25
+ Processing by TimecopConsole::MainController#reset as HTML
26
+ Redirected to where_i_came_from
27
+ Completed 302 Found in 0ms
28
+ Processing by AnonymousController#index as HTML
29
+ Completed 200 OK in 0ms
30
+ Processing by AnonymousController#index as HTML
31
+ [timecop-console] Time traveling to 2015-02-27 03:12:17 UTC
32
+ Completed 500 Internal Server Error in 31535999994ms
33
+ Processing by TimecopConsole::MainController#update as HTML
34
+ Parameters: {"timecop"=>{"current_time(1i)"=>"2012", "current_time(2i)"=>"11", "current_time(3i)"=>"30", "current_time(4i)"=>"22", "current_time(5i)"=>"1"}}
35
+ Redirected to where_i_came_from
36
+ Completed 302 Found in 1ms
37
+ Processing by TimecopConsole::MainController#update as HTML
38
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
39
+ Redirected to where_i_came_from
40
+ Completed 302 Found in 0ms
41
+ Processing by TimecopConsole::MainController#reset as HTML
42
+ Redirected to where_i_came_from
43
+ Completed 302 Found in 0ms
44
+ Processing by AnonymousController#index as HTML
45
+ Completed 200 OK in 1ms
46
+ Processing by AnonymousController#index as HTML
47
+ [timecop-console] Time traveling to 2015-02-27 03:16:54 UTC
48
+ Completed 500 Internal Server Error in 31535999997ms
49
+ Processing by TimecopConsole::MainController#update as HTML
50
+ Parameters: {"timecop"=>{"current_time(1i)"=>"2012", "current_time(2i)"=>"11", "current_time(3i)"=>"30", "current_time(4i)"=>"22", "current_time(5i)"=>"1"}}
51
+ Redirected to where_i_came_from
52
+ Completed 302 Found in 1ms
53
+ Processing by TimecopConsole::MainController#update as HTML
54
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
55
+ Redirected to where_i_came_from
56
+ Completed 302 Found in 0ms
57
+ Processing by TimecopConsole::MainController#reset as HTML
58
+ Redirected to where_i_came_from
59
+ Completed 302 Found in 0ms
60
+ Processing by AnonymousController#index as HTML
61
+ Completed 200 OK in 1ms
62
+ Processing by AnonymousController#index as HTML
63
+ [timecop-console] Time traveling to 2015-02-27 16:22:57 +1300
64
+ Completed 500 Internal Server Error in 31535999996ms
65
+ Processing by TimecopConsole::MainController#update as HTML
66
+ Parameters: {"timecop"=>{"current_time(1i)"=>"2012", "current_time(2i)"=>"11", "current_time(3i)"=>"30", "current_time(4i)"=>"22", "current_time(5i)"=>"1"}}
67
+ Redirected to where_i_came_from
68
+ Completed 302 Found in 2ms
69
+ Processing by TimecopConsole::MainController#update as HTML
70
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
71
+ Redirected to where_i_came_from
72
+ Completed 302 Found in 0ms
73
+ Processing by TimecopConsole::MainController#update as HTML
74
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
75
+ Redirected to where_i_came_from
76
+ Completed 302 Found in 0ms
77
+ Processing by TimecopConsole::MainController#reset as HTML
78
+ Redirected to where_i_came_from
79
+ Completed 302 Found in 0ms
80
+ Processing by AnonymousController#index as HTML
81
+ Completed 200 OK in 0ms
82
+ Processing by AnonymousController#index as HTML
83
+ [timecop-console] Time traveling to 2015-02-27 16:23:02 +1300
84
+ Completed 500 Internal Server Error in 31535999997ms
85
+ Processing by TimecopConsole::MainController#update as HTML
86
+ Parameters: {"timecop"=>{"current_time(1i)"=>"2012", "current_time(2i)"=>"11", "current_time(3i)"=>"30", "current_time(4i)"=>"22", "current_time(5i)"=>"1"}}
87
+ Redirected to where_i_came_from
88
+ Completed 302 Found in 2ms
89
+ Processing by TimecopConsole::MainController#update as HTML
90
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
91
+ Redirected to where_i_came_from
92
+ Completed 302 Found in 0ms
93
+ Processing by TimecopConsole::MainController#update as HTML
94
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
95
+ Redirected to where_i_came_from
96
+ Completed 302 Found in 0ms
97
+ Processing by TimecopConsole::MainController#reset as HTML
98
+ Redirected to where_i_came_from
99
+ Completed 302 Found in 0ms
100
+ Processing by AnonymousController#index as HTML
101
+ Completed 200 OK in 0ms
102
+ Processing by AnonymousController#index as HTML
103
+ [timecop-console] Time traveling to 2015-02-27 16:23:32 +1300
104
+ Completed 500 Internal Server Error in 31535999997ms
105
+ Processing by TimecopConsole::MainController#update as HTML
106
+ Parameters: {"timecop"=>{"current_time(1i)"=>"2012", "current_time(2i)"=>"11", "current_time(3i)"=>"30", "current_time(4i)"=>"22", "current_time(5i)"=>"1"}}
107
+ Redirected to where_i_came_from
108
+ Completed 302 Found in 1ms
109
+ Processing by TimecopConsole::MainController#update as HTML
110
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
111
+ Redirected to where_i_came_from
112
+ Completed 302 Found in 0ms
113
+ Processing by TimecopConsole::MainController#update as HTML
114
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
115
+ Redirected to where_i_came_from
116
+ Completed 302 Found in 0ms
117
+ Processing by TimecopConsole::MainController#reset as HTML
118
+ Redirected to where_i_came_from
119
+ Completed 302 Found in 0ms
120
+ Processing by AnonymousController#index as HTML
121
+ Completed 200 OK in 0ms
122
+ Processing by AnonymousController#index as HTML
123
+ [timecop-console] Time traveling to 2015-02-27 16:24:04 +1300
124
+ Completed 500 Internal Server Error in 31535999997ms
125
+ Processing by TimecopConsole::MainController#update as HTML
126
+ Parameters: {"timecop"=>{"current_time(1i)"=>"2012", "current_time(2i)"=>"11", "current_time(3i)"=>"30", "current_time(4i)"=>"22", "current_time(5i)"=>"1"}}
127
+ Redirected to where_i_came_from
128
+ Completed 302 Found in 1ms
129
+ Processing by TimecopConsole::MainController#update as HTML
130
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
131
+ Redirected to where_i_came_from
132
+ Completed 302 Found in 0ms
133
+ Processing by TimecopConsole::MainController#update as HTML
134
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
135
+ Redirected to where_i_came_from
136
+ Completed 302 Found in 0ms
137
+ Processing by TimecopConsole::MainController#reset as HTML
138
+ Redirected to where_i_came_from
139
+ Completed 302 Found in 0ms
140
+ Processing by AnonymousController#index as HTML
141
+ Completed 200 OK in 0ms
142
+ Processing by AnonymousController#index as HTML
143
+ [timecop-console] Time traveling to 2015-02-27 16:24:15 +1300
144
+ Completed 500 Internal Server Error in 31535999996ms
145
+ Processing by TimecopConsole::MainController#update as HTML
146
+ Parameters: {"timecop"=>{"current_time(1i)"=>"2012", "current_time(2i)"=>"11", "current_time(3i)"=>"30", "current_time(4i)"=>"22", "current_time(5i)"=>"1"}}
147
+ Redirected to where_i_came_from
148
+ Completed 302 Found in 1ms
149
+ Processing by TimecopConsole::MainController#update as HTML
150
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
151
+ Redirected to where_i_came_from
152
+ Completed 302 Found in 0ms
153
+ Processing by TimecopConsole::MainController#update as HTML
154
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
155
+ Redirected to where_i_came_from
156
+ Completed 302 Found in 0ms
157
+ Processing by TimecopConsole::MainController#reset as HTML
158
+ Redirected to where_i_came_from
159
+ Completed 302 Found in 0ms
160
+ Processing by AnonymousController#index as HTML
161
+ Completed 200 OK in 0ms
162
+ Processing by AnonymousController#index as HTML
163
+ [timecop-console] Time traveling to 2015-02-27 16:30:56 +1300
164
+ Completed 500 Internal Server Error in 31535999996ms
165
+ Processing by TimecopConsole::MainController#update as HTML
166
+ Parameters: {"timecop"=>{"current_time(1i)"=>"2012", "current_time(2i)"=>"11", "current_time(3i)"=>"30", "current_time(4i)"=>"22", "current_time(5i)"=>"1"}}
167
+ Redirected to where_i_came_from
168
+ Completed 302 Found in 1ms
169
+ Processing by TimecopConsole::MainController#update as HTML
170
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
171
+ Redirected to where_i_came_from
172
+ Completed 302 Found in 0ms
173
+ Processing by TimecopConsole::MainController#update as HTML
174
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
175
+ Redirected to where_i_came_from
176
+ Completed 302 Found in 0ms
177
+ Processing by TimecopConsole::MainController#reset as HTML
178
+ Redirected to where_i_came_from
179
+ Completed 302 Found in 0ms
180
+ Processing by AnonymousController#index as HTML
181
+ Completed 200 OK in 1ms
182
+ Processing by AnonymousController#index as HTML
183
+ [timecop-console] Time traveling to 2015-02-26 21:32:27 -0600
184
+ Completed 500 Internal Server Error in 31535999995ms
185
+ Processing by TimecopConsole::MainController#update as HTML
186
+ Parameters: {"timecop"=>{"current_time(1i)"=>"2012", "current_time(2i)"=>"11", "current_time(3i)"=>"30", "current_time(4i)"=>"22", "current_time(5i)"=>"1"}}
187
+ Redirected to where_i_came_from
188
+ Completed 302 Found in 2ms
189
+ Processing by TimecopConsole::MainController#update as HTML
190
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
191
+ Redirected to where_i_came_from
192
+ Completed 302 Found in 0ms
193
+ Processing by TimecopConsole::MainController#update as HTML
194
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
195
+ Redirected to where_i_came_from
196
+ Completed 302 Found in 1ms
197
+ Processing by TimecopConsole::MainController#reset as HTML
198
+ Redirected to where_i_came_from
199
+ Completed 302 Found in 0ms
200
+ Processing by AnonymousController#index as HTML
201
+ Completed 200 OK in 0ms
202
+ Processing by AnonymousController#index as HTML
203
+ [timecop-console] Time traveling to 2015-02-26 21:32:39 -0600
204
+ Completed 500 Internal Server Error in 31535999996ms
205
+ Processing by TimecopConsole::MainController#update as HTML
206
+ Parameters: {"timecop"=>{"current_time(1i)"=>"2012", "current_time(2i)"=>"11", "current_time(3i)"=>"30", "current_time(4i)"=>"22", "current_time(5i)"=>"1"}}
207
+ Redirected to where_i_came_from
208
+ Completed 302 Found in 2ms
209
+ Processing by TimecopConsole::MainController#update as HTML
210
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
211
+ Redirected to where_i_came_from
212
+ Completed 302 Found in 0ms
213
+ Processing by TimecopConsole::MainController#reset as HTML
214
+ Redirected to where_i_came_from
215
+ Completed 302 Found in 0ms
216
+ Processing by AnonymousController#index as HTML
217
+ Completed 200 OK in 0ms
218
+ Processing by AnonymousController#index as HTML
219
+ [timecop-console] Time traveling to 2015-02-27 03:33:20 UTC
220
+ Completed 500 Internal Server Error in 31535999996ms
221
+ Processing by TimecopConsole::MainController#update as HTML
222
+ Parameters: {"timecop"=>{"current_time(1i)"=>"2012", "current_time(2i)"=>"11", "current_time(3i)"=>"30", "current_time(4i)"=>"22", "current_time(5i)"=>"1"}}
223
+ Redirected to where_i_came_from
224
+ Completed 302 Found in 2ms
225
+ Processing by TimecopConsole::MainController#update as HTML
226
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
227
+ Redirected to where_i_came_from
228
+ Completed 302 Found in 0ms
229
+ Processing by TimecopConsole::MainController#update as HTML
230
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
231
+ Redirected to where_i_came_from
232
+ Completed 302 Found in 0ms
233
+ Processing by TimecopConsole::MainController#reset as HTML
234
+ Redirected to where_i_came_from
235
+ Completed 302 Found in 0ms
236
+ Processing by AnonymousController#index as HTML
237
+ Completed 200 OK in 0ms
238
+ Processing by AnonymousController#index as HTML
239
+ [timecop-console] Time traveling to 2015-02-26 22:34:22 -0500
240
+ Completed 500 Internal Server Error in 31535999996ms
241
+ Processing by TimecopConsole::MainController#update as HTML
242
+ Parameters: {"timecop"=>{"current_time(1i)"=>"2012", "current_time(2i)"=>"11", "current_time(3i)"=>"30", "current_time(4i)"=>"22", "current_time(5i)"=>"1"}}
243
+ Redirected to where_i_came_from
244
+ Completed 302 Found in 2ms
245
+ Processing by TimecopConsole::MainController#update as HTML
246
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
247
+ Redirected to where_i_came_from
248
+ Completed 302 Found in 0ms
249
+ Processing by TimecopConsole::MainController#update as HTML
250
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
251
+ Redirected to where_i_came_from
252
+ Completed 302 Found in 1ms
253
+ Processing by TimecopConsole::MainController#reset as HTML
254
+ Redirected to where_i_came_from
255
+ Completed 302 Found in 0ms
256
+ Processing by AnonymousController#index as HTML
257
+ Completed 200 OK in 0ms
258
+ Processing by AnonymousController#index as HTML
259
+ [timecop-console] Time traveling to 2015-02-27 04:34:57 +0100
260
+ Completed 500 Internal Server Error in 31535999996ms
261
+ Processing by TimecopConsole::MainController#update as HTML
262
+ Parameters: {"timecop"=>{"current_time(1i)"=>"2012", "current_time(2i)"=>"11", "current_time(3i)"=>"30", "current_time(4i)"=>"22", "current_time(5i)"=>"1"}}
263
+ Redirected to where_i_came_from
264
+ Completed 302 Found in 2ms
265
+ Processing by TimecopConsole::MainController#update as HTML
266
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
267
+ Redirected to where_i_came_from
268
+ Completed 302 Found in 0ms
269
+ Processing by TimecopConsole::MainController#update as HTML
270
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
271
+ Redirected to where_i_came_from
272
+ Completed 302 Found in 1ms
273
+ Processing by TimecopConsole::MainController#reset as HTML
274
+ Redirected to where_i_came_from
275
+ Completed 302 Found in 0ms
276
+ Processing by AnonymousController#index as HTML
277
+ Completed 200 OK in 0ms
278
+ Processing by AnonymousController#index as HTML
279
+ [timecop-console] Time traveling to 2015-02-26 21:35:22 -0600
280
+ Completed 500 Internal Server Error in 31535999997ms
281
+ Processing by TimecopConsole::MainController#update as HTML
282
+ Parameters: {"timecop"=>{"current_time(1i)"=>"2012", "current_time(2i)"=>"11", "current_time(3i)"=>"30", "current_time(4i)"=>"22", "current_time(5i)"=>"1"}}
283
+ Redirected to where_i_came_from
284
+ Completed 302 Found in 2ms
285
+ Processing by TimecopConsole::MainController#update as HTML
286
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
287
+ Redirected to where_i_came_from
288
+ Completed 302 Found in 0ms
289
+ Processing by TimecopConsole::MainController#update as HTML
290
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
291
+ Redirected to where_i_came_from
292
+ Completed 302 Found in 0ms
293
+ Processing by TimecopConsole::MainController#reset as HTML
294
+ Redirected to where_i_came_from
295
+ Completed 302 Found in 0ms
296
+ Processing by AnonymousController#index as HTML
297
+ Completed 200 OK in 0ms
298
+ Processing by AnonymousController#index as HTML
299
+ [timecop-console] Time traveling to 2015-02-26 21:38:07 -0600
300
+ Completed 500 Internal Server Error in 31535999996ms
301
+ Processing by TimecopConsole::MainController#update as HTML
302
+ Parameters: {"timecop"=>{"current_time(1i)"=>"2012", "current_time(2i)"=>"11", "current_time(3i)"=>"30", "current_time(4i)"=>"22", "current_time(5i)"=>"1"}}
303
+ Redirected to where_i_came_from
304
+ Completed 302 Found in 2ms
305
+ Processing by TimecopConsole::MainController#update as HTML
306
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
307
+ Redirected to where_i_came_from
308
+ Completed 302 Found in 1ms
309
+ Processing by TimecopConsole::MainController#update as HTML
310
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
311
+ Redirected to where_i_came_from
312
+ Completed 302 Found in 1ms
313
+ Processing by TimecopConsole::MainController#reset as HTML
314
+ Redirected to where_i_came_from
315
+ Completed 302 Found in 0ms
316
+ Processing by AnonymousController#index as HTML
317
+ Completed 200 OK in 0ms
318
+ Processing by AnonymousController#index as HTML
319
+ [timecop-console] Time traveling to 2015-02-26 21:38:45 -0600
320
+ Completed 500 Internal Server Error in 31535999997ms
321
+ Processing by TimecopConsole::MainController#update as HTML
322
+ Parameters: {"timecop"=>{"current_time(1i)"=>"2012", "current_time(2i)"=>"11", "current_time(3i)"=>"30", "current_time(4i)"=>"22", "current_time(5i)"=>"1"}}
323
+ Redirected to where_i_came_from
324
+ Completed 302 Found in 1ms
325
+ Processing by TimecopConsole::MainController#update as HTML
326
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
327
+ Redirected to where_i_came_from
328
+ Completed 302 Found in 0ms
329
+ Processing by TimecopConsole::MainController#update as HTML
330
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
331
+ Redirected to where_i_came_from
332
+ Completed 302 Found in 0ms
333
+ Processing by TimecopConsole::MainController#reset as HTML
334
+ Redirected to where_i_came_from
335
+ Completed 302 Found in 0ms
336
+ Processing by AnonymousController#index as HTML
337
+ Completed 200 OK in 0ms
338
+ Processing by AnonymousController#index as HTML
339
+ [timecop-console] Time traveling to 2015-02-26 21:38:59 -0600
340
+ Completed 500 Internal Server Error in 31535999997ms
341
+ Processing by TimecopConsole::MainController#update as HTML
342
+ Parameters: {"timecop"=>{"current_time(1i)"=>"2012", "current_time(2i)"=>"11", "current_time(3i)"=>"30", "current_time(4i)"=>"22", "current_time(5i)"=>"1"}}
343
+ Redirected to where_i_came_from
344
+ Completed 302 Found in 2ms
345
+ Processing by TimecopConsole::MainController#update as HTML
346
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
347
+ Redirected to where_i_came_from
348
+ Completed 302 Found in 0ms
349
+ Processing by TimecopConsole::MainController#update as HTML
350
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
351
+ Redirected to where_i_came_from
352
+ Completed 302 Found in 0ms
353
+ Processing by TimecopConsole::MainController#reset as HTML
354
+ Redirected to where_i_came_from
355
+ Completed 302 Found in 0ms
356
+ Processing by AnonymousController#index as HTML
357
+ Completed 200 OK in 0ms
358
+ Processing by AnonymousController#index as HTML
359
+ [timecop-console] Time traveling to 2015-02-26 21:39:18 -0600
360
+ Completed 500 Internal Server Error in 31535999997ms
361
+ Processing by TimecopConsole::MainController#update as HTML
362
+ Parameters: {"timecop"=>{"current_time(1i)"=>"2012", "current_time(2i)"=>"11", "current_time(3i)"=>"30", "current_time(4i)"=>"22", "current_time(5i)"=>"1"}}
363
+ Redirected to where_i_came_from
364
+ Completed 302 Found in 2ms
365
+ Processing by TimecopConsole::MainController#update as HTML
366
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
367
+ Redirected to where_i_came_from
368
+ Completed 302 Found in 0ms
369
+ Processing by TimecopConsole::MainController#update as HTML
370
+ Parameters: {"year"=>"2013", "month"=>"8", "day"=>"22", "hour"=>"12", "min"=>"0", "sec"=>"0"}
371
+ Redirected to where_i_came_from
372
+ Completed 302 Found in 0ms
373
+ Processing by TimecopConsole::MainController#reset as HTML
374
+ Redirected to where_i_came_from
375
+ Completed 302 Found in 0ms
376
+ Processing by AnonymousController#index as HTML
377
+ Completed 200 OK in 0ms
378
+ Processing by AnonymousController#index as HTML
379
+ [timecop-console] Time traveling to 2015-02-26 21:41:25 -0600
380
+ Completed 500 Internal Server Error in 31535999997ms
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: timecop-console
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Trupiano