candl 0.1.15 → 0.1.16
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +49 -41
- data/lib/candl/version.rb +1 -1
- data/spec/dummy/log/development.log +303 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Bv/bvW00Kqo0tMOKQK3eKZJZGgZ4rVKWmnmH2gyUBgNxxw.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/F8/F8iyaiQCIJtUa34S7HX-gqUodVXlNrEZ_L_ZSecBHLY.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/XS/xSeYSSuk6MNnaofZi-oPo_QxdFqXP2cTW8fn2xDkZDg.cache +0 -0
- data/spec/dummy/tmp/pids/server.pid +1 -1
- metadata +66 -60
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b39c5b41f68f06cbddff7129e65fe21cd5784cf8a969702c36af55d686e47320
|
4
|
+
data.tar.gz: 229407842178afe5d04dcd685dd1c74eb5297c91cd5c95d87044a327044f14c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a490593ffa38d24deab375a1d88a033729271a7c8e89970ab3ea4f9cb818837b8da7238e76bfae56e31810a606b0232e07f8cc312c9ff3ac33b43b4a60697cca
|
7
|
+
data.tar.gz: aae793a52ef5dbe393139da8383bd85c90e2f64a65152b97d19fa9fe95489db408cfbc44c969081759479f39ad61a9897cf91318837f73ce6615e85eed8f7a19
|
data/README.md
CHANGED
@@ -6,43 +6,21 @@
|
|
6
6
|
|
7
7
|
This gem helps load and display a calendar from google calendar in an agenda or month style view.
|
8
8
|
|
9
|
-
##
|
10
|
-
|
11
|
-
The gem consists of mainly three models. One - the event loader model - is focusing on loading the events from the google server via a restfull api and an api key. The other two are the agenda and month model wich offer functionality to organize the data for an agenda or month view. Next to the models are the views wich come with a "_frame.slim" view. This view can be included in a host view as a partial. This way one can display a calendar inside of another page. The "_frame.slim" is the entry point that prepares the model and view for the respective view type (month/agenda). (It does not come with a seperate week view.)
|
12
|
-
|
13
|
-
Find an example inclusion of the _frame.slim partial in the show.slim file in candl/spec/dummy/app/views/sample/show.slim.
|
14
|
-
|
15
|
-
The main steps to use this gem are:
|
16
|
-
- Initialize an agenda or month model object with a config that specifies these values:
|
17
|
-
|
18
|
-
```json
|
19
|
-
config = {
|
20
|
-
"calendar": {
|
21
|
-
"google_calendar_api_host_base_path": "https://www.googleapis.com/calendar/v3/calendars/",
|
22
|
-
"calendar_id": "schau-hnh%40web.de",
|
23
|
-
"api_key": "AIzaSyB5F1X5hBi8vPsmt1itZTpMluUAjytf6hI"
|
24
|
-
},
|
25
|
-
"agenda": {
|
26
|
-
"display_day_count": "14",
|
27
|
-
"days_shift_coefficient": "7"
|
28
|
-
},
|
29
|
-
"month": {
|
30
|
-
"summary_teaser_length_in_characters": "42",
|
31
|
-
"delta_start_of_weekday_from_sunday": "1"
|
32
|
-
},
|
33
|
-
"general": {
|
34
|
-
"maps_query_host": "https://www.google.de/maps",
|
35
|
-
"maps_query_parameter": "q"
|
36
|
-
}
|
37
|
-
}
|
38
|
-
```
|
9
|
+
## Overview
|
39
10
|
|
40
|
-
- The
|
41
|
-
- Under "general" there is the "maps_query_host" wich is the base url to a map service (like google maps in this example) and the "maps_query_parameter". (Maybe in the future there will be more map services, that let one search for a location just via the url and a parameter. But for now i only found gmaps to be able to do this. Like: https://www.google.de/maps/?q=Dresden+Hauptbahnhof)
|
42
|
-
- In "agenda" you can set the span "display_day_count" of day's considered/loaded in one view and by how many day's it will be shifted "days_shift_coefficient".
|
43
|
-
- In "month" you can set the "summary_teaser_length_in_characters" and in your view you can truncate the title to that length to reduce the size of the seperate events not to become to big in the view. The "delta_start_of_weekday_from_sunday" can be set to whatever value you need to have the week start at another day than sunday. (Like 1 -> Monday)
|
11
|
+
The gem consists of mainly three models and views. One - the event loader model - is focusing on loading the events from the google server via a restfull api and an api key. The other two are the agenda and month model wich offer functionality to organize the data for an agenda or month view. Next to the models are the views wich come with a ```_frame.slim``` view. This view can be included in a host view as a partial. This way one can display a calendar inside of another page. The ```_frame.slim``` is the entry point that prepares the model and view for the respective view type (month/agenda). (It does not come with a seperate week view.)
|
44
12
|
|
45
|
-
|
13
|
+
## Pre-Installation
|
14
|
+
|
15
|
+
This gem depends on a few other gems that are quite common so your application may already depend on them. To make dependency matters easier this gem will not depend on them on its own but rather expects these dependencies to be present in your application. This way there should be less dependency version collisions since you get to define them. (This gem does depend on them but it only uses base level functionality so that it shouldn't matter much what version you use.)
|
16
|
+
|
17
|
+
These dependencies are:
|
18
|
+
- material_icons
|
19
|
+
- jquery3 (jquery_rails)
|
20
|
+
- turbolinks
|
21
|
+
- bootstrap (bootstrap-sass)
|
22
|
+
|
23
|
+
So make sure to also have these gems in your gemfile and installed them via ```bundle install```.
|
46
24
|
|
47
25
|
## Installation
|
48
26
|
|
@@ -63,13 +41,35 @@ $ gem install candl
|
|
63
41
|
```
|
64
42
|
|
65
43
|
Additionally:
|
66
|
-
Require the library in the
|
67
|
-
```
|
68
|
-
# ./
|
69
|
-
|
44
|
+
Require the library in the ```./app/assets/stylesheets/application.scss``` (or .css) of your ruby on rails application like so:
|
45
|
+
```scss
|
46
|
+
# ./app/assets/stylesheets/application.scss
|
47
|
+
/*
|
48
|
+
...
|
49
|
+
*= require material_icons
|
50
|
+
*= require candl
|
51
|
+
...
|
52
|
+
*/
|
53
|
+
```
|
54
|
+
|
55
|
+
And also require the library in the ```./app/assets/javascripts/application.js``` of your ruby on rails application like so:
|
56
|
+
```javascript
|
57
|
+
# ./app/assets/javascripts/application.js
|
58
|
+
// ...
|
59
|
+
//= require jquery3
|
60
|
+
//= require turbolinks
|
61
|
+
//= require bootstrap
|
62
|
+
//= require candl
|
63
|
+
// ...
|
70
64
|
```
|
65
|
+
Hint: The ```...``` Ellipsis is there to indicate left out other entries. The relevant entries (asset requirements of gems this gem depends on) are also included here to give a suggested order in wich to require them, since a wrong order here can lead to confusing errors.
|
66
|
+
|
67
|
+
You may look in ```./spec/dummy/app/assets/``` and there in ```./javascripts``` and ```./stylesheets``` to see how it is done there. An example inclusion of the ```_frame.slim``` partial in a view can be found in ```./spec/dummy/app/views/sample/show.slim```. Or to see the calendar in action run ```rails server``` in your command line interface (while beeing in the gems root folder) and when the server is started navigate to ```localhost:3000/calendar``` and load the page.
|
68
|
+
|
69
|
+
This example uses .slim instead of .erb if you need help with the syntax try some of the online .slim to .erb syntax converters.
|
70
|
+
|
71
|
+
The partial needs to set a local config variable that is a hash containing the needed configuration. Create the hash in the view you want to render the partial in like this:
|
71
72
|
|
72
|
-
In the view you want the calendar to appear initialize a configuration hash like so:
|
73
73
|
```slim
|
74
74
|
ruby:
|
75
75
|
config = {
|
@@ -93,7 +93,15 @@ ruby:
|
|
93
93
|
}
|
94
94
|
}
|
95
95
|
```
|
96
|
-
|
96
|
+
|
97
|
+
Hints:
|
98
|
+
|
99
|
+
- The node "calendar" holds all relevant information to the chosen calendar that you want to load events from.
|
100
|
+
- Under "general" there is the "maps_query_host" wich is the base url to a map service (like google maps in this example) and the "maps_query_parameter". (Maybe in the future there will be more map services, that let one search for a location just via the url and a parameter. But for now i only found gmaps to be able to do this. Like: https://www.google.de/maps/?q=Dresden+Hauptbahnhof)
|
101
|
+
- In "agenda" you can set the span "display_day_count" of day's considered/loaded in one view and by how many day's it will be shifted "days_shift_coefficient".
|
102
|
+
- In "month" you can set the "summary_teaser_length_in_characters" and in your view you can truncate the title to that length to reduce the size of the seperate events not to become to big in the view. The "delta_start_of_weekday_from_sunday" can be set to whatever value you need to have the week start at another day than sunday. (Like 1 -> Monday)
|
103
|
+
|
104
|
+
For most values there are sensible standards defined but for the sake of clarity you may still define them in the config.
|
97
105
|
|
98
106
|
Then at the position in your view where the calendar is supposed to show itself:
|
99
107
|
```slim
|
data/lib/candl/version.rb
CHANGED
@@ -14148,3 +14148,306 @@ Completed 200 OK in 2687ms (Views: 2669.8ms | ActiveRecord: 0.0ms)
|
|
14148
14148
|
|
14149
14149
|
|
14150
14150
|
Started GET "/assets/application.self-3590cd0807b6ec8c46d1508eaf030897f0552be6ccae37a2d23de030f646cada.css?body=1" for ::1 at 2019-02-20 12:37:03 +0100
|
14151
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-20 19:34:20 +0100
|
14152
|
+
Processing by SampleController#show as HTML
|
14153
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14154
|
+
Rendering sample/show.slim within layouts/application
|
14155
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (50.3ms)
|
14156
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (337.3ms)
|
14157
|
+
Rendered sample/show.slim within layouts/application (376.1ms)
|
14158
|
+
Completed 200 OK in 2598ms (Views: 2578.7ms | ActiveRecord: 0.0ms)
|
14159
|
+
|
14160
|
+
|
14161
|
+
Started GET "/assets/application.self-3590cd0807b6ec8c46d1508eaf030897f0552be6ccae37a2d23de030f646cada.css?body=1" for ::1 at 2019-02-20 19:34:23 +0100
|
14162
|
+
Started GET "/assets/application.self-afe802b04eaf1de2ea762489c83c08aa4c4ff3ff13c21566e43cb710683f5abc.js?body=1" for ::1 at 2019-02-20 19:34:23 +0100
|
14163
|
+
Started GET "/calendar?s=-7&v=a" for ::1 at 2019-02-20 19:34:27 +0100
|
14164
|
+
Processing by SampleController#show as HTML
|
14165
|
+
Parameters: {"s"=>"-7", "v"=>"a"}
|
14166
|
+
Rendering sample/show.slim within layouts/application
|
14167
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (8.5ms)
|
14168
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (255.7ms)
|
14169
|
+
Rendered sample/show.slim within layouts/application (286.1ms)
|
14170
|
+
Completed 200 OK in 466ms (Views: 450.0ms | ActiveRecord: 0.0ms)
|
14171
|
+
|
14172
|
+
|
14173
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-20 19:34:29 +0100
|
14174
|
+
Processing by SampleController#show as HTML
|
14175
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14176
|
+
Rendering sample/show.slim within layouts/application
|
14177
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (26.4ms)
|
14178
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (259.9ms)
|
14179
|
+
Rendered sample/show.slim within layouts/application (290.3ms)
|
14180
|
+
Completed 200 OK in 459ms (Views: 441.7ms | ActiveRecord: 0.0ms)
|
14181
|
+
|
14182
|
+
|
14183
|
+
Started GET "/calendar?s=-2&v=m" for ::1 at 2019-02-20 19:34:32 +0100
|
14184
|
+
Processing by SampleController#show as HTML
|
14185
|
+
Parameters: {"s"=>"-2", "v"=>"m"}
|
14186
|
+
Rendering sample/show.slim within layouts/application
|
14187
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (14.1ms)
|
14188
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (268.2ms)
|
14189
|
+
Rendered sample/show.slim within layouts/application (299.3ms)
|
14190
|
+
Completed 200 OK in 460ms (Views: 444.5ms | ActiveRecord: 0.0ms)
|
14191
|
+
|
14192
|
+
|
14193
|
+
Started GET "/calendar?s=-3&v=m" for ::1 at 2019-02-20 19:34:33 +0100
|
14194
|
+
Processing by SampleController#show as HTML
|
14195
|
+
Parameters: {"s"=>"-3", "v"=>"m"}
|
14196
|
+
Rendering sample/show.slim within layouts/application
|
14197
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (17.6ms)
|
14198
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (240.6ms)
|
14199
|
+
Rendered sample/show.slim within layouts/application (270.7ms)
|
14200
|
+
Completed 200 OK in 427ms (Views: 410.2ms | ActiveRecord: 0.0ms)
|
14201
|
+
|
14202
|
+
|
14203
|
+
Started GET "/calendar?s=-2&v=m" for ::1 at 2019-02-20 19:34:35 +0100
|
14204
|
+
Processing by SampleController#show as HTML
|
14205
|
+
Parameters: {"s"=>"-2", "v"=>"m"}
|
14206
|
+
Rendering sample/show.slim within layouts/application
|
14207
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (18.8ms)
|
14208
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (255.6ms)
|
14209
|
+
Rendered sample/show.slim within layouts/application (286.2ms)
|
14210
|
+
Completed 200 OK in 437ms (Views: 421.1ms | ActiveRecord: 0.0ms)
|
14211
|
+
|
14212
|
+
|
14213
|
+
Started GET "/calendar?s=-11&v=a" for ::1 at 2019-02-20 19:34:36 +0100
|
14214
|
+
Processing by SampleController#show as HTML
|
14215
|
+
Parameters: {"s"=>"-11", "v"=>"a"}
|
14216
|
+
Rendering sample/show.slim within layouts/application
|
14217
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (7.3ms)
|
14218
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (247.3ms)
|
14219
|
+
Rendered sample/show.slim within layouts/application (277.9ms)
|
14220
|
+
Completed 200 OK in 435ms (Views: 418.9ms | ActiveRecord: 0.0ms)
|
14221
|
+
|
14222
|
+
|
14223
|
+
Started GET "/calendar?s=-10&v=a" for ::1 at 2019-02-20 19:34:39 +0100
|
14224
|
+
Processing by SampleController#show as HTML
|
14225
|
+
Parameters: {"s"=>"-10", "v"=>"a"}
|
14226
|
+
Rendering sample/show.slim within layouts/application
|
14227
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (6.1ms)
|
14228
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (223.9ms)
|
14229
|
+
Rendered sample/show.slim within layouts/application (255.0ms)
|
14230
|
+
Completed 200 OK in 410ms (Views: 393.6ms | ActiveRecord: 0.0ms)
|
14231
|
+
|
14232
|
+
|
14233
|
+
Started GET "/calendar?s=-2&v=m" for ::1 at 2019-02-20 19:34:40 +0100
|
14234
|
+
Processing by SampleController#show as HTML
|
14235
|
+
Parameters: {"s"=>"-2", "v"=>"m"}
|
14236
|
+
Rendering sample/show.slim within layouts/application
|
14237
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (25.0ms)
|
14238
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (262.1ms)
|
14239
|
+
Rendered sample/show.slim within layouts/application (292.6ms)
|
14240
|
+
Completed 200 OK in 451ms (Views: 434.8ms | ActiveRecord: 0.0ms)
|
14241
|
+
|
14242
|
+
|
14243
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-20 19:34:42 +0100
|
14244
|
+
Processing by SampleController#show as HTML
|
14245
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14246
|
+
Rendering sample/show.slim within layouts/application
|
14247
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (15.7ms)
|
14248
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (251.9ms)
|
14249
|
+
Rendered sample/show.slim within layouts/application (282.0ms)
|
14250
|
+
Completed 200 OK in 443ms (Views: 426.3ms | ActiveRecord: 0.0ms)
|
14251
|
+
|
14252
|
+
|
14253
|
+
Started GET "/calendar?s=-7&v=a" for ::1 at 2019-02-20 19:34:43 +0100
|
14254
|
+
Processing by SampleController#show as HTML
|
14255
|
+
Parameters: {"s"=>"-7", "v"=>"a"}
|
14256
|
+
Rendering sample/show.slim within layouts/application
|
14257
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (6.4ms)
|
14258
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (233.9ms)
|
14259
|
+
Rendered sample/show.slim within layouts/application (264.9ms)
|
14260
|
+
Completed 200 OK in 419ms (Views: 402.5ms | ActiveRecord: 0.0ms)
|
14261
|
+
|
14262
|
+
|
14263
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-20 19:34:50 +0100
|
14264
|
+
Processing by SampleController#show as HTML
|
14265
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14266
|
+
Rendering sample/show.slim within layouts/application
|
14267
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (14.5ms)
|
14268
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (297.4ms)
|
14269
|
+
Rendered sample/show.slim within layouts/application (328.4ms)
|
14270
|
+
Completed 200 OK in 500ms (Views: 483.1ms | ActiveRecord: 0.0ms)
|
14271
|
+
|
14272
|
+
|
14273
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-21 13:01:16 +0100
|
14274
|
+
Processing by SampleController#show as HTML
|
14275
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14276
|
+
Rendering sample/show.slim within layouts/application
|
14277
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (40.5ms)
|
14278
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (325.4ms)
|
14279
|
+
Rendered sample/show.slim within layouts/application (377.9ms)
|
14280
|
+
Completed 200 OK in 690ms (Views: 659.8ms | ActiveRecord: 0.0ms)
|
14281
|
+
|
14282
|
+
|
14283
|
+
Started GET "/assets/application.self-afe802b04eaf1de2ea762489c83c08aa4c4ff3ff13c21566e43cb710683f5abc.js?body=1" for ::1 at 2019-02-21 13:01:17 +0100
|
14284
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-21 13:02:20 +0100
|
14285
|
+
Processing by SampleController#show as HTML
|
14286
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14287
|
+
Rendering sample/show.slim within layouts/application
|
14288
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (19.7ms)
|
14289
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (266.8ms)
|
14290
|
+
Rendered sample/show.slim within layouts/application (298.2ms)
|
14291
|
+
Completed 200 OK in 460ms (Views: 443.2ms | ActiveRecord: 0.0ms)
|
14292
|
+
|
14293
|
+
|
14294
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-21 13:22:49 +0100
|
14295
|
+
Processing by SampleController#show as HTML
|
14296
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14297
|
+
Rendering sample/show.slim within layouts/application
|
14298
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (22.0ms)
|
14299
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (335.4ms)
|
14300
|
+
Rendered sample/show.slim within layouts/application (368.3ms)
|
14301
|
+
Completed 200 OK in 539ms (Views: 521.7ms | ActiveRecord: 0.0ms)
|
14302
|
+
|
14303
|
+
|
14304
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-21 13:42:32 +0100
|
14305
|
+
Processing by SampleController#show as HTML
|
14306
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14307
|
+
Rendering sample/show.slim within layouts/application
|
14308
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (67.4ms)
|
14309
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (394.7ms)
|
14310
|
+
Rendered sample/show.slim within layouts/application (443.3ms)
|
14311
|
+
Completed 200 OK in 2540ms (Views: 2515.8ms | ActiveRecord: 0.0ms)
|
14312
|
+
|
14313
|
+
|
14314
|
+
Started GET "/calendar?s=-7&v=a" for ::1 at 2019-02-21 13:42:36 +0100
|
14315
|
+
Processing by SampleController#show as HTML
|
14316
|
+
Parameters: {"s"=>"-7", "v"=>"a"}
|
14317
|
+
Rendering sample/show.slim within layouts/application
|
14318
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (6.7ms)
|
14319
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (251.2ms)
|
14320
|
+
Rendered sample/show.slim within layouts/application (282.6ms)
|
14321
|
+
Completed 200 OK in 451ms (Views: 433.9ms | ActiveRecord: 0.0ms)
|
14322
|
+
|
14323
|
+
|
14324
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-21 13:42:38 +0100
|
14325
|
+
Processing by SampleController#show as HTML
|
14326
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14327
|
+
Rendering sample/show.slim within layouts/application
|
14328
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (14.4ms)
|
14329
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (269.4ms)
|
14330
|
+
Rendered sample/show.slim within layouts/application (302.7ms)
|
14331
|
+
Completed 200 OK in 465ms (Views: 448.0ms | ActiveRecord: 0.0ms)
|
14332
|
+
|
14333
|
+
|
14334
|
+
Started GET "/calendar?s=0&v=m" for ::1 at 2019-02-21 13:42:40 +0100
|
14335
|
+
Processing by SampleController#show as HTML
|
14336
|
+
Parameters: {"s"=>"0", "v"=>"m"}
|
14337
|
+
Rendering sample/show.slim within layouts/application
|
14338
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (18.9ms)
|
14339
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (352.4ms)
|
14340
|
+
Rendered sample/show.slim within layouts/application (384.5ms)
|
14341
|
+
Completed 200 OK in 544ms (Views: 527.1ms | ActiveRecord: 0.0ms)
|
14342
|
+
|
14343
|
+
|
14344
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-21 13:42:41 +0100
|
14345
|
+
Processing by SampleController#show as HTML
|
14346
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14347
|
+
Rendering sample/show.slim within layouts/application
|
14348
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (14.7ms)
|
14349
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (264.8ms)
|
14350
|
+
Rendered sample/show.slim within layouts/application (296.9ms)
|
14351
|
+
Completed 200 OK in 464ms (Views: 446.7ms | ActiveRecord: 0.0ms)
|
14352
|
+
|
14353
|
+
|
14354
|
+
Started GET "/calendar?s=-7&v=a" for ::1 at 2019-02-21 13:42:44 +0100
|
14355
|
+
Processing by SampleController#show as HTML
|
14356
|
+
Parameters: {"s"=>"-7", "v"=>"a"}
|
14357
|
+
Rendering sample/show.slim within layouts/application
|
14358
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (6.1ms)
|
14359
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (250.9ms)
|
14360
|
+
Rendered sample/show.slim within layouts/application (283.0ms)
|
14361
|
+
Completed 200 OK in 443ms (Views: 424.9ms | ActiveRecord: 0.0ms)
|
14362
|
+
|
14363
|
+
|
14364
|
+
Started GET "/calendar?s=-8&v=a" for ::1 at 2019-02-21 13:42:45 +0100
|
14365
|
+
Processing by SampleController#show as HTML
|
14366
|
+
Parameters: {"s"=>"-8", "v"=>"a"}
|
14367
|
+
Rendering sample/show.slim within layouts/application
|
14368
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (6.3ms)
|
14369
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (260.2ms)
|
14370
|
+
Rendered sample/show.slim within layouts/application (292.8ms)
|
14371
|
+
Completed 200 OK in 460ms (Views: 443.1ms | ActiveRecord: 0.0ms)
|
14372
|
+
|
14373
|
+
|
14374
|
+
Started GET "/calendar?s=-9&v=a" for ::1 at 2019-02-21 13:42:47 +0100
|
14375
|
+
Processing by SampleController#show as HTML
|
14376
|
+
Parameters: {"s"=>"-9", "v"=>"a"}
|
14377
|
+
Rendering sample/show.slim within layouts/application
|
14378
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (6.1ms)
|
14379
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (536.7ms)
|
14380
|
+
Rendered sample/show.slim within layouts/application (569.2ms)
|
14381
|
+
Completed 200 OK in 728ms (Views: 710.2ms | ActiveRecord: 0.0ms)
|
14382
|
+
|
14383
|
+
|
14384
|
+
Started GET "/calendar?s=-10&v=a" for ::1 at 2019-02-21 13:42:49 +0100
|
14385
|
+
Processing by SampleController#show as HTML
|
14386
|
+
Parameters: {"s"=>"-10", "v"=>"a"}
|
14387
|
+
Rendering sample/show.slim within layouts/application
|
14388
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (6.4ms)
|
14389
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (233.2ms)
|
14390
|
+
Rendered sample/show.slim within layouts/application (265.7ms)
|
14391
|
+
Completed 200 OK in 433ms (Views: 414.3ms | ActiveRecord: 0.0ms)
|
14392
|
+
|
14393
|
+
|
14394
|
+
Started GET "/calendar?s=-9&v=a" for ::1 at 2019-02-21 13:42:52 +0100
|
14395
|
+
Processing by SampleController#show as HTML
|
14396
|
+
Parameters: {"s"=>"-9", "v"=>"a"}
|
14397
|
+
Rendering sample/show.slim within layouts/application
|
14398
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (6.8ms)
|
14399
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (246.4ms)
|
14400
|
+
Rendered sample/show.slim within layouts/application (278.3ms)
|
14401
|
+
Completed 200 OK in 439ms (Views: 421.9ms | ActiveRecord: 0.0ms)
|
14402
|
+
|
14403
|
+
|
14404
|
+
Started GET "/calendar?s=-8&v=a" for ::1 at 2019-02-21 13:42:53 +0100
|
14405
|
+
Processing by SampleController#show as HTML
|
14406
|
+
Parameters: {"s"=>"-8", "v"=>"a"}
|
14407
|
+
Rendering sample/show.slim within layouts/application
|
14408
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (6.1ms)
|
14409
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (259.1ms)
|
14410
|
+
Rendered sample/show.slim within layouts/application (290.9ms)
|
14411
|
+
Completed 200 OK in 451ms (Views: 434.2ms | ActiveRecord: 0.0ms)
|
14412
|
+
|
14413
|
+
|
14414
|
+
Started GET "/calendar?s=-7&v=a" for ::1 at 2019-02-21 13:42:54 +0100
|
14415
|
+
Processing by SampleController#show as HTML
|
14416
|
+
Parameters: {"s"=>"-7", "v"=>"a"}
|
14417
|
+
Rendering sample/show.slim within layouts/application
|
14418
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (7.1ms)
|
14419
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (230.8ms)
|
14420
|
+
Rendered sample/show.slim within layouts/application (262.7ms)
|
14421
|
+
Completed 200 OK in 422ms (Views: 404.7ms | ActiveRecord: 0.0ms)
|
14422
|
+
|
14423
|
+
|
14424
|
+
Started GET "/calendar?s=-6&v=a" for ::1 at 2019-02-21 13:42:55 +0100
|
14425
|
+
Processing by SampleController#show as HTML
|
14426
|
+
Parameters: {"s"=>"-6", "v"=>"a"}
|
14427
|
+
Rendering sample/show.slim within layouts/application
|
14428
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (8.2ms)
|
14429
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (250.0ms)
|
14430
|
+
Rendered sample/show.slim within layouts/application (282.8ms)
|
14431
|
+
Completed 200 OK in 451ms (Views: 433.6ms | ActiveRecord: 0.0ms)
|
14432
|
+
|
14433
|
+
|
14434
|
+
Started GET "/calendar?s=-6&v=a" for ::1 at 2019-02-21 13:49:37 +0100
|
14435
|
+
Processing by SampleController#show as HTML
|
14436
|
+
Parameters: {"s"=>"-6", "v"=>"a"}
|
14437
|
+
Rendering sample/show.slim within layouts/application
|
14438
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_agenda.slim (29.8ms)
|
14439
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (368.2ms)
|
14440
|
+
Rendered sample/show.slim within layouts/application (407.2ms)
|
14441
|
+
Completed 200 OK in 1426ms (Views: 1406.2ms | ActiveRecord: 0.0ms)
|
14442
|
+
|
14443
|
+
|
14444
|
+
Started GET "/calendar?s=-1&v=m" for ::1 at 2019-02-21 13:49:40 +0100
|
14445
|
+
Processing by SampleController#show as HTML
|
14446
|
+
Parameters: {"s"=>"-1", "v"=>"m"}
|
14447
|
+
Rendering sample/show.slim within layouts/application
|
14448
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_month.slim (21.7ms)
|
14449
|
+
Rendered M:/Sourcetree/gems_test/candl/app/views/candl/calendar/_frame.slim (302.8ms)
|
14450
|
+
Rendered sample/show.slim within layouts/application (334.4ms)
|
14451
|
+
Completed 200 OK in 520ms (Views: 503.7ms | ActiveRecord: 0.0ms)
|
14452
|
+
|
14453
|
+
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Bv/bvW00Kqo0tMOKQK3eKZJZGgZ4rVKWmnmH2gyUBgNxxw.cache
ADDED
Binary file
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/F8/F8iyaiQCIJtUa34S7HX-gqUodVXlNrEZ_L_ZSecBHLY.cache
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
I"~app/assets/stylesheets/application.scss?type=text/css&id=e112443c44c57defee942ee5347bb275e84339364a713386e73d19a6ececc8fa:ET
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/XS/xSeYSSuk6MNnaofZi-oPo_QxdFqXP2cTW8fn2xDkZDg.cache
ADDED
Binary file
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
38212
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: candl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.16
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andreas Schau
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-02-
|
11
|
+
date: 2019-02-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -51,205 +51,205 @@ dependencies:
|
|
51
51
|
- !ruby/object:Gem::Version
|
52
52
|
version: 3.2.0
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
|
-
name:
|
54
|
+
name: sass-rails
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
56
56
|
requirements:
|
57
57
|
- - "~>"
|
58
58
|
- !ruby/object:Gem::Version
|
59
|
-
version: '
|
59
|
+
version: '5.0'
|
60
60
|
- - ">="
|
61
61
|
- !ruby/object:Gem::Version
|
62
|
-
version:
|
62
|
+
version: 5.0.0
|
63
63
|
type: :runtime
|
64
64
|
prerelease: false
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
67
|
- - "~>"
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: '
|
69
|
+
version: '5.0'
|
70
70
|
- - ">="
|
71
71
|
- !ruby/object:Gem::Version
|
72
|
-
version:
|
72
|
+
version: 5.0.0
|
73
73
|
- !ruby/object:Gem::Dependency
|
74
|
-
name: sass
|
74
|
+
name: sass
|
75
75
|
requirement: !ruby/object:Gem::Requirement
|
76
76
|
requirements:
|
77
77
|
- - "~>"
|
78
78
|
- !ruby/object:Gem::Version
|
79
|
-
version: '
|
79
|
+
version: '3.7'
|
80
80
|
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version:
|
82
|
+
version: 3.7.0
|
83
83
|
type: :runtime
|
84
84
|
prerelease: false
|
85
85
|
version_requirements: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
87
|
- - "~>"
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: '
|
89
|
+
version: '3.7'
|
90
90
|
- - ">="
|
91
91
|
- !ruby/object:Gem::Version
|
92
|
-
version:
|
92
|
+
version: 3.7.0
|
93
93
|
- !ruby/object:Gem::Dependency
|
94
|
-
name:
|
94
|
+
name: rails_autolink
|
95
95
|
requirement: !ruby/object:Gem::Requirement
|
96
96
|
requirements:
|
97
97
|
- - "~>"
|
98
98
|
- !ruby/object:Gem::Version
|
99
|
-
version: '
|
99
|
+
version: '1.1'
|
100
100
|
- - ">="
|
101
101
|
- !ruby/object:Gem::Version
|
102
|
-
version:
|
102
|
+
version: 1.1.0
|
103
103
|
type: :runtime
|
104
104
|
prerelease: false
|
105
105
|
version_requirements: !ruby/object:Gem::Requirement
|
106
106
|
requirements:
|
107
107
|
- - "~>"
|
108
108
|
- !ruby/object:Gem::Version
|
109
|
-
version: '
|
109
|
+
version: '1.1'
|
110
110
|
- - ">="
|
111
111
|
- !ruby/object:Gem::Version
|
112
|
-
version:
|
112
|
+
version: 1.1.0
|
113
113
|
- !ruby/object:Gem::Dependency
|
114
|
-
name:
|
114
|
+
name: coffee-rails
|
115
115
|
requirement: !ruby/object:Gem::Requirement
|
116
116
|
requirements:
|
117
117
|
- - "~>"
|
118
118
|
- !ruby/object:Gem::Version
|
119
|
-
version: '4.
|
119
|
+
version: '4.2'
|
120
120
|
- - ">="
|
121
121
|
- !ruby/object:Gem::Version
|
122
|
-
version: 4.
|
122
|
+
version: 4.2.0
|
123
123
|
type: :runtime
|
124
124
|
prerelease: false
|
125
125
|
version_requirements: !ruby/object:Gem::Requirement
|
126
126
|
requirements:
|
127
127
|
- - "~>"
|
128
128
|
- !ruby/object:Gem::Version
|
129
|
-
version: '4.
|
129
|
+
version: '4.2'
|
130
130
|
- - ">="
|
131
131
|
- !ruby/object:Gem::Version
|
132
|
-
version: 4.
|
132
|
+
version: 4.2.0
|
133
133
|
- !ruby/object:Gem::Dependency
|
134
|
-
name:
|
134
|
+
name: sqlite3
|
135
135
|
requirement: !ruby/object:Gem::Requirement
|
136
136
|
requirements:
|
137
137
|
- - "~>"
|
138
138
|
- !ruby/object:Gem::Version
|
139
|
-
version:
|
140
|
-
- - "
|
139
|
+
version: 1.3.6
|
140
|
+
- - "<"
|
141
141
|
- !ruby/object:Gem::Version
|
142
|
-
version:
|
143
|
-
type: :
|
142
|
+
version: '1.4'
|
143
|
+
type: :development
|
144
144
|
prerelease: false
|
145
145
|
version_requirements: !ruby/object:Gem::Requirement
|
146
146
|
requirements:
|
147
147
|
- - "~>"
|
148
148
|
- !ruby/object:Gem::Version
|
149
|
-
version:
|
150
|
-
- - "
|
149
|
+
version: 1.3.6
|
150
|
+
- - "<"
|
151
151
|
- !ruby/object:Gem::Version
|
152
|
-
version:
|
152
|
+
version: '1.4'
|
153
153
|
- !ruby/object:Gem::Dependency
|
154
|
-
name:
|
154
|
+
name: rspec-rails
|
155
155
|
requirement: !ruby/object:Gem::Requirement
|
156
156
|
requirements:
|
157
157
|
- - "~>"
|
158
158
|
- !ruby/object:Gem::Version
|
159
|
-
version: '3.
|
159
|
+
version: '3.8'
|
160
160
|
- - ">="
|
161
161
|
- !ruby/object:Gem::Version
|
162
|
-
version: 3.
|
163
|
-
type: :
|
162
|
+
version: 3.8.0
|
163
|
+
type: :development
|
164
164
|
prerelease: false
|
165
165
|
version_requirements: !ruby/object:Gem::Requirement
|
166
166
|
requirements:
|
167
167
|
- - "~>"
|
168
168
|
- !ruby/object:Gem::Version
|
169
|
-
version: '3.
|
169
|
+
version: '3.8'
|
170
170
|
- - ">="
|
171
171
|
- !ruby/object:Gem::Version
|
172
|
-
version: 3.
|
172
|
+
version: 3.8.0
|
173
173
|
- !ruby/object:Gem::Dependency
|
174
|
-
name:
|
174
|
+
name: material_icons
|
175
175
|
requirement: !ruby/object:Gem::Requirement
|
176
176
|
requirements:
|
177
177
|
- - "~>"
|
178
178
|
- !ruby/object:Gem::Version
|
179
|
-
version: '
|
179
|
+
version: '2.2'
|
180
180
|
- - ">="
|
181
181
|
- !ruby/object:Gem::Version
|
182
|
-
version:
|
183
|
-
type: :
|
182
|
+
version: 2.2.0
|
183
|
+
type: :development
|
184
184
|
prerelease: false
|
185
185
|
version_requirements: !ruby/object:Gem::Requirement
|
186
186
|
requirements:
|
187
187
|
- - "~>"
|
188
188
|
- !ruby/object:Gem::Version
|
189
|
-
version: '
|
189
|
+
version: '2.2'
|
190
190
|
- - ">="
|
191
191
|
- !ruby/object:Gem::Version
|
192
|
-
version:
|
192
|
+
version: 2.2.0
|
193
193
|
- !ruby/object:Gem::Dependency
|
194
|
-
name:
|
194
|
+
name: jquery-rails
|
195
195
|
requirement: !ruby/object:Gem::Requirement
|
196
196
|
requirements:
|
197
197
|
- - "~>"
|
198
198
|
- !ruby/object:Gem::Version
|
199
|
-
version: '4.
|
199
|
+
version: '4.3'
|
200
200
|
- - ">="
|
201
201
|
- !ruby/object:Gem::Version
|
202
|
-
version: 4.
|
203
|
-
type: :
|
202
|
+
version: 4.3.0
|
203
|
+
type: :development
|
204
204
|
prerelease: false
|
205
205
|
version_requirements: !ruby/object:Gem::Requirement
|
206
206
|
requirements:
|
207
207
|
- - "~>"
|
208
208
|
- !ruby/object:Gem::Version
|
209
|
-
version: '4.
|
209
|
+
version: '4.3'
|
210
210
|
- - ">="
|
211
211
|
- !ruby/object:Gem::Version
|
212
|
-
version: 4.
|
212
|
+
version: 4.3.0
|
213
213
|
- !ruby/object:Gem::Dependency
|
214
|
-
name:
|
214
|
+
name: turbolinks
|
215
215
|
requirement: !ruby/object:Gem::Requirement
|
216
216
|
requirements:
|
217
217
|
- - "~>"
|
218
218
|
- !ruby/object:Gem::Version
|
219
|
-
version:
|
220
|
-
- - "
|
219
|
+
version: '5.2'
|
220
|
+
- - ">="
|
221
221
|
- !ruby/object:Gem::Version
|
222
|
-
version:
|
222
|
+
version: 5.2.0
|
223
223
|
type: :development
|
224
224
|
prerelease: false
|
225
225
|
version_requirements: !ruby/object:Gem::Requirement
|
226
226
|
requirements:
|
227
227
|
- - "~>"
|
228
228
|
- !ruby/object:Gem::Version
|
229
|
-
version:
|
230
|
-
- - "
|
229
|
+
version: '5.2'
|
230
|
+
- - ">="
|
231
231
|
- !ruby/object:Gem::Version
|
232
|
-
version:
|
232
|
+
version: 5.2.0
|
233
233
|
- !ruby/object:Gem::Dependency
|
234
|
-
name:
|
234
|
+
name: bootstrap-sass
|
235
235
|
requirement: !ruby/object:Gem::Requirement
|
236
236
|
requirements:
|
237
237
|
- - "~>"
|
238
238
|
- !ruby/object:Gem::Version
|
239
|
-
version: '3.
|
239
|
+
version: '3.3'
|
240
240
|
- - ">="
|
241
241
|
- !ruby/object:Gem::Version
|
242
|
-
version: 3.
|
242
|
+
version: 3.3.7
|
243
243
|
type: :development
|
244
244
|
prerelease: false
|
245
245
|
version_requirements: !ruby/object:Gem::Requirement
|
246
246
|
requirements:
|
247
247
|
- - "~>"
|
248
248
|
- !ruby/object:Gem::Version
|
249
|
-
version: '3.
|
249
|
+
version: '3.3'
|
250
250
|
- - ">="
|
251
251
|
- !ruby/object:Gem::Version
|
252
|
-
version: 3.
|
252
|
+
version: 3.3.7
|
253
253
|
description: 'This gem provides functionality to handle the loading of event data
|
254
254
|
from a public google calendar via an api key and display it in a view. (Without
|
255
255
|
the need for OAuth.) It does so by offering functions that gather the event data,
|
@@ -702,6 +702,7 @@ files:
|
|
702
702
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Bs/BseSpy0PgH6AxPyi3cD7bCSPanFboOwhRfDYGmvj9Ig.cache
|
703
703
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Bv/BvNOIQYIJS5wr8svKvNdljbxL6UlBs1oj0U9_6kBuRY.cache
|
704
704
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Bv/bVOKme6W56MUYQalV_qok3Ua9O4krC5m_5JnURUmkV8.cache
|
705
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Bv/bvW00Kqo0tMOKQK3eKZJZGgZ4rVKWmnmH2gyUBgNxxw.cache
|
705
706
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Bx/BxShY0KKccRLCoGfHd7wMLW1LLwi_X4FwrKhFWqDgT0.cache
|
706
707
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Bx/bX8jqlhYoWqdHX_8hKmr4-hcc7b3LQw1SrsMe109S7Y.cache
|
707
708
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/C1/C1ifWKT2ufVR7z3ygd2CKzrSVr49WGEPq4JHNBMFcJQ.cache
|
@@ -810,6 +811,7 @@ files:
|
|
810
811
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Eq/EqOQnkMBaHCkjWX5aymsPttD4yTWW6HL5vwqw5sVSwA.cache
|
811
812
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Eq/EqnWy6g049undq58awSmP4g9fALLcoN5mMiaFCqP2yk.cache
|
812
813
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/F8/F84firDZ6MyUTD4pH-9ArXucAvluhR9H80sZW2WWcT4.cache
|
814
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/F8/F8iyaiQCIJtUa34S7HX-gqUodVXlNrEZ_L_ZSecBHLY.cache
|
813
815
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/F8/F8sSo2Bs2qa-kaZaRW-Os8Dz9fSn8YMOJDOoRieKZoY.cache
|
814
816
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/F8/f8lEQP9p5e480GK8P9xyTpZRYeYOKcunOi9UCpUq09U.cache
|
815
817
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/FA/FA-TE5Z0Qziz31_GWCUY-al5VrhrsoHweulYR-am3j4.cache
|
@@ -1391,6 +1393,7 @@ files:
|
|
1391
1393
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/XQ/XQOaCKXYmZ2YJohuCuVmBQv39iam5fPupRsUXmgxTOU.cache
|
1392
1394
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/XQ/xQ_6bkECFFIWK1qYsYFCZxxvDSG6K_DymMtmNJvklzw.cache
|
1393
1395
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/XS/XSTxFY4sZ6y0sGnzd4vjAPus3lplw9K-IjT6HY_V_C8.cache
|
1396
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/XS/xSeYSSuk6MNnaofZi-oPo_QxdFqXP2cTW8fn2xDkZDg.cache
|
1394
1397
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/XS/xsQs2c3ZIE9fZ8kuRP3He-gBGtwMwdGxJ56zCl0oPrw.cache
|
1395
1398
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/XS/xsRJKiZa4xrkPhr3ub-rLy5MkfEUuowlxaA2-Ds5CjI.cache
|
1396
1399
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Xd/Xd18DeEIj2SWLYndf6CVJXyHGuER0r9A0ishiwPNStQ.cache
|
@@ -2644,6 +2647,7 @@ test_files:
|
|
2644
2647
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/F8/F8sSo2Bs2qa-kaZaRW-Os8Dz9fSn8YMOJDOoRieKZoY.cache
|
2645
2648
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/F8/f8lEQP9p5e480GK8P9xyTpZRYeYOKcunOi9UCpUq09U.cache
|
2646
2649
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/F8/F84firDZ6MyUTD4pH-9ArXucAvluhR9H80sZW2WWcT4.cache
|
2650
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/F8/F8iyaiQCIJtUa34S7HX-gqUodVXlNrEZ_L_ZSecBHLY.cache
|
2647
2651
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/DS/DSo2_kWyJs4_hXjMqy748aINY5_K4SNqOd2tG3b3FSM.cache
|
2648
2652
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/DS/dSE9Rx_uSeOzeUx_AwuPjUq2w7qaP2reW5KSSQudIJ0.cache
|
2649
2653
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Tz/TzRsEvvLb0JVsXo-M-1fFozqQIZMNgXxT7Qv0MR4hms.cache
|
@@ -3561,6 +3565,7 @@ test_files:
|
|
3561
3565
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/R8/R8HsDGhJ_hVOekfDVaAQ97w7ZCsw3tATGjRNa49gh1Y.cache
|
3562
3566
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Bv/BvNOIQYIJS5wr8svKvNdljbxL6UlBs1oj0U9_6kBuRY.cache
|
3563
3567
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Bv/bVOKme6W56MUYQalV_qok3Ua9O4krC5m_5JnURUmkV8.cache
|
3568
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Bv/bvW00Kqo0tMOKQK3eKZJZGgZ4rVKWmnmH2gyUBgNxxw.cache
|
3564
3569
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/xN/xNwunCDhFc_4zUy-uL8Eu-bg7CMUN9HqUUd_hHOchas.cache
|
3565
3570
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/C8/C88IMBgaHz5XvyJE-9U6kttVJ272pXTKyw0whhy3GiU.cache
|
3566
3571
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/j0/j0w0an3-dXJtY-mcw2CikqpgGN_R9iN9LNEwKkWXKZc.cache
|
@@ -3599,6 +3604,7 @@ test_files:
|
|
3599
3604
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/XS/XSTxFY4sZ6y0sGnzd4vjAPus3lplw9K-IjT6HY_V_C8.cache
|
3600
3605
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/XS/xsRJKiZa4xrkPhr3ub-rLy5MkfEUuowlxaA2-Ds5CjI.cache
|
3601
3606
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/XS/xsQs2c3ZIE9fZ8kuRP3He-gBGtwMwdGxJ56zCl0oPrw.cache
|
3607
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/XS/xSeYSSuk6MNnaofZi-oPo_QxdFqXP2cTW8fn2xDkZDg.cache
|
3602
3608
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/-N/-N06-lpC79nkq53i345PpZ5FCtT6KviCOIms0lPlkv8.cache
|
3603
3609
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/-N/-nEa7_jW1nLRmZh3YRjXwASZDZNg_1h3bDijmomUJrc.cache
|
3604
3610
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Y9/Y9Vnua0D5wajvohdhRJhOTMsMkA8Yc3p3HyDH-PUEIE.cache
|