lookout-ahoy 0.1.0
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.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +99 -0
- data/Rakefile +24 -0
- data/app/assets/images/lookout/apple-touch-icon.png +0 -0
- data/app/assets/images/lookout/favicon-16x16.png +0 -0
- data/app/assets/images/lookout/favicon-32x32.png +0 -0
- data/app/assets/images/lookout/logo.png +0 -0
- data/app/assets/images/lookout/safari-pinned-tab.png +0 -0
- data/app/assets/images/lookout/safari-pinned-tab.svg +199 -0
- data/app/assets/javascript/lookout/application.js +2 -0
- data/app/assets/javascript/lookout/controllers/application.js +9 -0
- data/app/assets/javascript/lookout/controllers/application_controller.js +33 -0
- data/app/assets/javascript/lookout/controllers/combobox_controller.js +371 -0
- data/app/assets/javascript/lookout/controllers/details_modal_controller.js +18 -0
- data/app/assets/javascript/lookout/controllers/dropdown_label_controller.js +39 -0
- data/app/assets/javascript/lookout/controllers/filter/item_controller.js +12 -0
- data/app/assets/javascript/lookout/controllers/filter_form_controller.js +13 -0
- data/app/assets/javascript/lookout/controllers/filter_modal_controller.js +45 -0
- data/app/assets/javascript/lookout/controllers/frame_link_controller.js +20 -0
- data/app/assets/javascript/lookout/controllers/funnel_chart_controller.js +159 -0
- data/app/assets/javascript/lookout/controllers/index.js +4 -0
- data/app/assets/javascript/lookout/controllers/interval_controller.js +15 -0
- data/app/assets/javascript/lookout/controllers/line_chart_controller.js +251 -0
- data/app/assets/javascript/lookout/controllers/predicate_select_controller.js +10 -0
- data/app/assets/javascript/lookout/controllers/properties_controller.js +8 -0
- data/app/assets/javascript/lookout/controllers/property_filter_controller.js +45 -0
- data/app/assets/javascript/lookout/controllers/realtime_controller.js +30 -0
- data/app/assets/javascript/lookout/controllers/sparkline_controller.js +64 -0
- data/app/assets/javascript/lookout/controllers/tile_controller.js +33 -0
- data/app/assets/javascript/lookout/controllers/toggle_controller.js +17 -0
- data/app/assets/javascript/lookout/helpers/chart_utils.js +156 -0
- data/app/assets/javascript/lookout/helpers/countries.js +2261 -0
- data/app/assets/javascript/lookout/helpers/number_formatters.js +55 -0
- data/app/assets/manifest/lookout/manifest.js +2 -0
- data/app/components/lookout/combobox_component.html.erb +33 -0
- data/app/components/lookout/combobox_component.rb +13 -0
- data/app/components/lookout/comparison_link_component.html.erb +17 -0
- data/app/components/lookout/comparison_link_component.rb +44 -0
- data/app/components/lookout/dropdown_button_component.html.erb +16 -0
- data/app/components/lookout/dropdown_button_component.rb +14 -0
- data/app/components/lookout/dropdown_link_component.html.erb +17 -0
- data/app/components/lookout/dropdown_link_component.rb +19 -0
- data/app/components/lookout/filter/dropdown_component.html.erb +50 -0
- data/app/components/lookout/filter/dropdown_component.rb +51 -0
- data/app/components/lookout/filter/modal_component.html.erb +16 -0
- data/app/components/lookout/filter/modal_component.rb +13 -0
- data/app/components/lookout/filter/select_component.html.erb +25 -0
- data/app/components/lookout/filter/select_component.rb +64 -0
- data/app/components/lookout/filter/tag_component.html.erb +13 -0
- data/app/components/lookout/filter/tag_component.rb +14 -0
- data/app/components/lookout/filter/tag_container_component.html.erb +4 -0
- data/app/components/lookout/filter/tag_container_component.rb +6 -0
- data/app/components/lookout/previous_next_component.html.erb +8 -0
- data/app/components/lookout/previous_next_component.rb +11 -0
- data/app/components/lookout/stats/comparable_container_component.html.erb +25 -0
- data/app/components/lookout/stats/comparable_container_component.rb +103 -0
- data/app/components/lookout/stats/container_component.html.erb +23 -0
- data/app/components/lookout/stats/container_component.rb +28 -0
- data/app/components/lookout/sticky_nav_component.html.erb +32 -0
- data/app/components/lookout/sticky_nav_component.rb +24 -0
- data/app/components/lookout/table_component.html.erb +16 -0
- data/app/components/lookout/table_component.rb +48 -0
- data/app/components/lookout/tables/devices_table_component.rb +11 -0
- data/app/components/lookout/tables/dynamic_table.rb +13 -0
- data/app/components/lookout/tables/dynamic_table_component.rb +207 -0
- data/app/components/lookout/tables/goals_table_component.rb +17 -0
- data/app/components/lookout/tables/header_component.html.erb +6 -0
- data/app/components/lookout/tables/header_component.rb +18 -0
- data/app/components/lookout/tables/headers/header_component.html.erb +5 -0
- data/app/components/lookout/tables/headers/header_component.rb +16 -0
- data/app/components/lookout/tables/properties_table_component.rb +27 -0
- data/app/components/lookout/tables/row_component.html.erb +4 -0
- data/app/components/lookout/tables/rows/row_component.html.erb +6 -0
- data/app/components/lookout/tables/rows/row_component.rb +40 -0
- data/app/components/lookout/tile_component.html.erb +24 -0
- data/app/components/lookout/tile_component.rb +24 -0
- data/app/components/lookout/tooltip_component.html.erb +3 -0
- data/app/components/lookout/tooltip_component.rb +18 -0
- data/app/controllers/lookout/application_controller.rb +83 -0
- data/app/controllers/lookout/campaigns_controller.rb +19 -0
- data/app/controllers/lookout/devices_controller.rb +20 -0
- data/app/controllers/lookout/entry_pages_controller.rb +19 -0
- data/app/controllers/lookout/exit_pages_controller.rb +19 -0
- data/app/controllers/lookout/exports_controller.rb +14 -0
- data/app/controllers/lookout/filters/base_controller.rb +15 -0
- data/app/controllers/lookout/filters/goals_controller.rb +9 -0
- data/app/controllers/lookout/filters/locations_controller.rb +11 -0
- data/app/controllers/lookout/filters/operating_systems/names_controller.rb +13 -0
- data/app/controllers/lookout/filters/operating_systems/versions_controller.rb +13 -0
- data/app/controllers/lookout/filters/pages/actions_controller.rb +13 -0
- data/app/controllers/lookout/filters/pages/entry_pages_controller.rb +14 -0
- data/app/controllers/lookout/filters/pages/exit_pages_controller.rb +15 -0
- data/app/controllers/lookout/filters/properties/names_controller.rb +29 -0
- data/app/controllers/lookout/filters/properties/values_controller.rb +15 -0
- data/app/controllers/lookout/filters/screens_controller.rb +11 -0
- data/app/controllers/lookout/filters/sources_controller.rb +11 -0
- data/app/controllers/lookout/filters/utms_controller.rb +10 -0
- data/app/controllers/lookout/funnels_controller.rb +8 -0
- data/app/controllers/lookout/goals_controller.rb +7 -0
- data/app/controllers/lookout/locations/cities_controller.rb +22 -0
- data/app/controllers/lookout/locations/countries_controller.rb +22 -0
- data/app/controllers/lookout/locations/maps_controller.rb +24 -0
- data/app/controllers/lookout/locations/regions_controller.rb +22 -0
- data/app/controllers/lookout/properties_controller.rb +73 -0
- data/app/controllers/lookout/realtimes_controller.rb +7 -0
- data/app/controllers/lookout/roots_controller.rb +6 -0
- data/app/controllers/lookout/sources_controller.rb +21 -0
- data/app/controllers/lookout/stats/base_controller.rb +148 -0
- data/app/controllers/lookout/stats/bounce_rates_controller.rb +12 -0
- data/app/controllers/lookout/stats/total_pageviews_controller.rb +10 -0
- data/app/controllers/lookout/stats/total_visits_controller.rb +10 -0
- data/app/controllers/lookout/stats/unique_visitors_controller.rb +11 -0
- data/app/controllers/lookout/stats/views_per_visits_controller.rb +11 -0
- data/app/controllers/lookout/stats/visit_durations_controller.rb +10 -0
- data/app/controllers/lookout/stats_controller.rb +7 -0
- data/app/controllers/lookout/top_pages_controller.rb +20 -0
- data/app/decorators/lookout/application_decorator.rb +58 -0
- data/app/decorators/lookout/campaign_decorator.rb +27 -0
- data/app/decorators/lookout/city_decorator.rb +24 -0
- data/app/decorators/lookout/country_decorator.rb +38 -0
- data/app/decorators/lookout/device_decorator.rb +27 -0
- data/app/decorators/lookout/entry_page_decorator.rb +7 -0
- data/app/decorators/lookout/exit_page_decorator.rb +7 -0
- data/app/decorators/lookout/page_decorator.rb +27 -0
- data/app/decorators/lookout/region_decorator.rb +28 -0
- data/app/decorators/lookout/source_decorator.rb +27 -0
- data/app/decorators/lookout/top_page_decorator.rb +7 -0
- data/app/helpers/lookout/application_helper.rb +124 -0
- data/app/models/concerns/lookout/compare_mode.rb +19 -0
- data/app/models/concerns/lookout/limitable.rb +17 -0
- data/app/models/concerns/lookout/range_options.rb +8 -0
- data/app/models/lookout/comparison_mode.rb +72 -0
- data/app/models/lookout/export.rb +48 -0
- data/app/models/lookout/filter_parser.rb +82 -0
- data/app/models/lookout/range_from_params.rb +78 -0
- data/app/models/lookout/rangeable.rb +7 -0
- data/app/models/lookout/widget.rb +15 -0
- data/app/presenters/lookout/dashboard_presenter.rb +53 -0
- data/app/presenters/lookout/funnel_presenter.rb +75 -0
- data/app/presenters/lookout/goals_presenter.rb +72 -0
- data/app/queries/concerns/lookout/comparable_queries.rb +25 -0
- data/app/queries/concerns/lookout/comparable_query.rb +152 -0
- data/app/queries/concerns/lookout/lazy_comparable_query.rb +42 -0
- data/app/queries/lookout/application_query.rb +186 -0
- data/app/queries/lookout/campaign_query.rb +14 -0
- data/app/queries/lookout/city_query.rb +14 -0
- data/app/queries/lookout/country_query.rb +10 -0
- data/app/queries/lookout/device_query.rb +10 -0
- data/app/queries/lookout/entry_pages_query.rb +18 -0
- data/app/queries/lookout/event_query.rb +42 -0
- data/app/queries/lookout/exit_pages_query.rb +19 -0
- data/app/queries/lookout/region_query.rb +14 -0
- data/app/queries/lookout/source_query.rb +11 -0
- data/app/queries/lookout/stats/average_views_per_visit_query.rb +20 -0
- data/app/queries/lookout/stats/average_visit_duration_query.rb +34 -0
- data/app/queries/lookout/stats/base_query.rb +18 -0
- data/app/queries/lookout/stats/bounce_rates_query.rb +33 -0
- data/app/queries/lookout/stats/total_pageviews_query.rb +9 -0
- data/app/queries/lookout/stats/total_visitors_query.rb +9 -0
- data/app/queries/lookout/stats/unique_visitors_query.rb +9 -0
- data/app/queries/lookout/stats/views_per_visit_query.rb +17 -0
- data/app/queries/lookout/stats/visit_duration_query.rb +19 -0
- data/app/queries/lookout/top_page_query.rb +13 -0
- data/app/queries/lookout/visit_query.rb +42 -0
- data/app/views/lookout/campaigns/index.html+details.erb +4 -0
- data/app/views/lookout/campaigns/index.html.erb +3 -0
- data/app/views/lookout/devices/_table.html.erb +2 -0
- data/app/views/lookout/devices/index.html+details.erb +4 -0
- data/app/views/lookout/devices/index.html.erb +3 -0
- data/app/views/lookout/entry_pages/index.html+details.erb +4 -0
- data/app/views/lookout/entry_pages/index.html.erb +3 -0
- data/app/views/lookout/exit_pages/index.html+details.erb +4 -0
- data/app/views/lookout/exit_pages/index.html.erb +3 -0
- data/app/views/lookout/funnels/index.html.erb +7 -0
- data/app/views/lookout/funnels/show.html.erb +15 -0
- data/app/views/lookout/goals/index.html.erb +4 -0
- data/app/views/lookout/layouts/application.html.erb +144 -0
- data/app/views/lookout/layouts/shared/_tile_loader.html.erb +5 -0
- data/app/views/lookout/layouts/shared/_widget_disabled.html+details.erb +3 -0
- data/app/views/lookout/layouts/shared/_widget_disabled.html.erb +3 -0
- data/app/views/lookout/locations/cities/index.html+details.erb +4 -0
- data/app/views/lookout/locations/cities/index.html.erb +3 -0
- data/app/views/lookout/locations/countries/index.html+details.erb +5 -0
- data/app/views/lookout/locations/countries/index.html.erb +3 -0
- data/app/views/lookout/locations/maps/_simple_map.html.erb +26 -0
- data/app/views/lookout/locations/maps/show.html.erb +106 -0
- data/app/views/lookout/locations/regions/index.html+details.erb +4 -0
- data/app/views/lookout/locations/regions/index.html.erb +3 -0
- data/app/views/lookout/properties/_form.html.erb +6 -0
- data/app/views/lookout/properties/index.html.erb +3 -0
- data/app/views/lookout/properties/show.html.erb +6 -0
- data/app/views/lookout/realtimes/show.html.erb +9 -0
- data/app/views/lookout/roots/_filters.html.erb +80 -0
- data/app/views/lookout/roots/show.html.erb +191 -0
- data/app/views/lookout/sources/index.html+details.erb +4 -0
- data/app/views/lookout/sources/index.html.erb +3 -0
- data/app/views/lookout/stats/base/index.html.erb +40 -0
- data/app/views/lookout/stats/show.html.erb +15 -0
- data/app/views/lookout/top_pages/index.html+details.erb +4 -0
- data/app/views/lookout/top_pages/index.html.erb +3 -0
- data/config/routes.rb +69 -0
- data/lib/generators/lookout/install_generator.rb +31 -0
- data/lib/generators/lookout/migration_generator.rb +21 -0
- data/lib/generators/lookout/templates/config.rb.tt +185 -0
- data/lib/generators/lookout/templates/migration.rb.tt +7 -0
- data/lib/lookout/active_record.rb +108 -0
- data/lib/lookout/ahoy/event_methods.rb +75 -0
- data/lib/lookout/ahoy/visit_methods.rb +24 -0
- data/lib/lookout/configuration.rb +58 -0
- data/lib/lookout/database_adapter.rb +168 -0
- data/lib/lookout/engine.rb +47 -0
- data/lib/lookout/filter_configuration/filter.rb +16 -0
- data/lib/lookout/filter_configuration/filter_collection.rb +48 -0
- data/lib/lookout/filters_configuration.rb +77 -0
- data/lib/lookout/funnels.rb +44 -0
- data/lib/lookout/goals.rb +51 -0
- data/lib/lookout/period_collection.rb +115 -0
- data/lib/lookout/predicate_label.rb +7 -0
- data/lib/lookout/railtie.rb +9 -0
- data/lib/lookout/version.rb +3 -0
- data/lib/lookout.rb +78 -0
- metadata +673 -0
metadata
ADDED
|
@@ -0,0 +1,673 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: lookout-ahoy
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- nativestranger
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: rails
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '6.0'
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - ">="
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '6.0'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: ransack
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '2.3'
|
|
33
|
+
type: :runtime
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - ">="
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '2.3'
|
|
40
|
+
- !ruby/object:Gem::Dependency
|
|
41
|
+
name: turbo-rails
|
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - ">="
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '1.2'
|
|
47
|
+
type: :runtime
|
|
48
|
+
prerelease: false
|
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - ">="
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '1.2'
|
|
54
|
+
- !ruby/object:Gem::Dependency
|
|
55
|
+
name: view_component
|
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
|
57
|
+
requirements:
|
|
58
|
+
- - ">="
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: '3.0'
|
|
61
|
+
type: :runtime
|
|
62
|
+
prerelease: false
|
|
63
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
64
|
+
requirements:
|
|
65
|
+
- - ">="
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: '3.0'
|
|
68
|
+
- !ruby/object:Gem::Dependency
|
|
69
|
+
name: importmap-rails
|
|
70
|
+
requirement: !ruby/object:Gem::Requirement
|
|
71
|
+
requirements:
|
|
72
|
+
- - ">="
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: '1.0'
|
|
75
|
+
type: :runtime
|
|
76
|
+
prerelease: false
|
|
77
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - ">="
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '1.0'
|
|
82
|
+
- !ruby/object:Gem::Dependency
|
|
83
|
+
name: stimulus-rails
|
|
84
|
+
requirement: !ruby/object:Gem::Requirement
|
|
85
|
+
requirements:
|
|
86
|
+
- - ">="
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: '1.1'
|
|
89
|
+
type: :runtime
|
|
90
|
+
prerelease: false
|
|
91
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
92
|
+
requirements:
|
|
93
|
+
- - ">="
|
|
94
|
+
- !ruby/object:Gem::Version
|
|
95
|
+
version: '1.1'
|
|
96
|
+
- !ruby/object:Gem::Dependency
|
|
97
|
+
name: ahoy_matey
|
|
98
|
+
requirement: !ruby/object:Gem::Requirement
|
|
99
|
+
requirements:
|
|
100
|
+
- - ">="
|
|
101
|
+
- !ruby/object:Gem::Version
|
|
102
|
+
version: '1.1'
|
|
103
|
+
type: :runtime
|
|
104
|
+
prerelease: false
|
|
105
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
106
|
+
requirements:
|
|
107
|
+
- - ">="
|
|
108
|
+
- !ruby/object:Gem::Version
|
|
109
|
+
version: '1.1'
|
|
110
|
+
- !ruby/object:Gem::Dependency
|
|
111
|
+
name: groupdate
|
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
|
113
|
+
requirements:
|
|
114
|
+
- - ">="
|
|
115
|
+
- !ruby/object:Gem::Version
|
|
116
|
+
version: '5.0'
|
|
117
|
+
type: :runtime
|
|
118
|
+
prerelease: false
|
|
119
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
120
|
+
requirements:
|
|
121
|
+
- - ">="
|
|
122
|
+
- !ruby/object:Gem::Version
|
|
123
|
+
version: '5.0'
|
|
124
|
+
- !ruby/object:Gem::Dependency
|
|
125
|
+
name: pagy
|
|
126
|
+
requirement: !ruby/object:Gem::Requirement
|
|
127
|
+
requirements:
|
|
128
|
+
- - "~>"
|
|
129
|
+
- !ruby/object:Gem::Version
|
|
130
|
+
version: '9.0'
|
|
131
|
+
type: :runtime
|
|
132
|
+
prerelease: false
|
|
133
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
134
|
+
requirements:
|
|
135
|
+
- - "~>"
|
|
136
|
+
- !ruby/object:Gem::Version
|
|
137
|
+
version: '9.0'
|
|
138
|
+
- !ruby/object:Gem::Dependency
|
|
139
|
+
name: rubyzip
|
|
140
|
+
requirement: !ruby/object:Gem::Requirement
|
|
141
|
+
requirements:
|
|
142
|
+
- - ">="
|
|
143
|
+
- !ruby/object:Gem::Version
|
|
144
|
+
version: '0'
|
|
145
|
+
type: :runtime
|
|
146
|
+
prerelease: false
|
|
147
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
148
|
+
requirements:
|
|
149
|
+
- - ">="
|
|
150
|
+
- !ruby/object:Gem::Version
|
|
151
|
+
version: '0'
|
|
152
|
+
- !ruby/object:Gem::Dependency
|
|
153
|
+
name: base64
|
|
154
|
+
requirement: !ruby/object:Gem::Requirement
|
|
155
|
+
requirements:
|
|
156
|
+
- - "~>"
|
|
157
|
+
- !ruby/object:Gem::Version
|
|
158
|
+
version: '0.2'
|
|
159
|
+
type: :runtime
|
|
160
|
+
prerelease: false
|
|
161
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
162
|
+
requirements:
|
|
163
|
+
- - "~>"
|
|
164
|
+
- !ruby/object:Gem::Version
|
|
165
|
+
version: '0.2'
|
|
166
|
+
- !ruby/object:Gem::Dependency
|
|
167
|
+
name: bigdecimal
|
|
168
|
+
requirement: !ruby/object:Gem::Requirement
|
|
169
|
+
requirements:
|
|
170
|
+
- - "~>"
|
|
171
|
+
- !ruby/object:Gem::Version
|
|
172
|
+
version: '3.1'
|
|
173
|
+
type: :runtime
|
|
174
|
+
prerelease: false
|
|
175
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
176
|
+
requirements:
|
|
177
|
+
- - "~>"
|
|
178
|
+
- !ruby/object:Gem::Version
|
|
179
|
+
version: '3.1'
|
|
180
|
+
- !ruby/object:Gem::Dependency
|
|
181
|
+
name: mutex_m
|
|
182
|
+
requirement: !ruby/object:Gem::Requirement
|
|
183
|
+
requirements:
|
|
184
|
+
- - "~>"
|
|
185
|
+
- !ruby/object:Gem::Version
|
|
186
|
+
version: '0.2'
|
|
187
|
+
type: :runtime
|
|
188
|
+
prerelease: false
|
|
189
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
190
|
+
requirements:
|
|
191
|
+
- - "~>"
|
|
192
|
+
- !ruby/object:Gem::Version
|
|
193
|
+
version: '0.2'
|
|
194
|
+
- !ruby/object:Gem::Dependency
|
|
195
|
+
name: observer
|
|
196
|
+
requirement: !ruby/object:Gem::Requirement
|
|
197
|
+
requirements:
|
|
198
|
+
- - "~>"
|
|
199
|
+
- !ruby/object:Gem::Version
|
|
200
|
+
version: '0.1'
|
|
201
|
+
type: :runtime
|
|
202
|
+
prerelease: false
|
|
203
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
204
|
+
requirements:
|
|
205
|
+
- - "~>"
|
|
206
|
+
- !ruby/object:Gem::Version
|
|
207
|
+
version: '0.1'
|
|
208
|
+
- !ruby/object:Gem::Dependency
|
|
209
|
+
name: drb
|
|
210
|
+
requirement: !ruby/object:Gem::Requirement
|
|
211
|
+
requirements:
|
|
212
|
+
- - "~>"
|
|
213
|
+
- !ruby/object:Gem::Version
|
|
214
|
+
version: '2.2'
|
|
215
|
+
type: :runtime
|
|
216
|
+
prerelease: false
|
|
217
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
218
|
+
requirements:
|
|
219
|
+
- - "~>"
|
|
220
|
+
- !ruby/object:Gem::Version
|
|
221
|
+
version: '2.2'
|
|
222
|
+
- !ruby/object:Gem::Dependency
|
|
223
|
+
name: csv
|
|
224
|
+
requirement: !ruby/object:Gem::Requirement
|
|
225
|
+
requirements:
|
|
226
|
+
- - "~>"
|
|
227
|
+
- !ruby/object:Gem::Version
|
|
228
|
+
version: '3.3'
|
|
229
|
+
type: :runtime
|
|
230
|
+
prerelease: false
|
|
231
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
232
|
+
requirements:
|
|
233
|
+
- - "~>"
|
|
234
|
+
- !ruby/object:Gem::Version
|
|
235
|
+
version: '3.3'
|
|
236
|
+
- !ruby/object:Gem::Dependency
|
|
237
|
+
name: rails
|
|
238
|
+
requirement: !ruby/object:Gem::Requirement
|
|
239
|
+
requirements:
|
|
240
|
+
- - ">="
|
|
241
|
+
- !ruby/object:Gem::Version
|
|
242
|
+
version: '6'
|
|
243
|
+
type: :development
|
|
244
|
+
prerelease: false
|
|
245
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
246
|
+
requirements:
|
|
247
|
+
- - ">="
|
|
248
|
+
- !ruby/object:Gem::Version
|
|
249
|
+
version: '6'
|
|
250
|
+
- !ruby/object:Gem::Dependency
|
|
251
|
+
name: sprockets-rails
|
|
252
|
+
requirement: !ruby/object:Gem::Requirement
|
|
253
|
+
requirements:
|
|
254
|
+
- - ">="
|
|
255
|
+
- !ruby/object:Gem::Version
|
|
256
|
+
version: '0'
|
|
257
|
+
type: :development
|
|
258
|
+
prerelease: false
|
|
259
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
260
|
+
requirements:
|
|
261
|
+
- - ">="
|
|
262
|
+
- !ruby/object:Gem::Version
|
|
263
|
+
version: '0'
|
|
264
|
+
- !ruby/object:Gem::Dependency
|
|
265
|
+
name: better_errors
|
|
266
|
+
requirement: !ruby/object:Gem::Requirement
|
|
267
|
+
requirements:
|
|
268
|
+
- - ">="
|
|
269
|
+
- !ruby/object:Gem::Version
|
|
270
|
+
version: '0'
|
|
271
|
+
type: :development
|
|
272
|
+
prerelease: false
|
|
273
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
274
|
+
requirements:
|
|
275
|
+
- - ">="
|
|
276
|
+
- !ruby/object:Gem::Version
|
|
277
|
+
version: '0'
|
|
278
|
+
- !ruby/object:Gem::Dependency
|
|
279
|
+
name: binding_of_caller
|
|
280
|
+
requirement: !ruby/object:Gem::Requirement
|
|
281
|
+
requirements:
|
|
282
|
+
- - ">="
|
|
283
|
+
- !ruby/object:Gem::Version
|
|
284
|
+
version: '0'
|
|
285
|
+
type: :development
|
|
286
|
+
prerelease: false
|
|
287
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
288
|
+
requirements:
|
|
289
|
+
- - ">="
|
|
290
|
+
- !ruby/object:Gem::Version
|
|
291
|
+
version: '0'
|
|
292
|
+
- !ruby/object:Gem::Dependency
|
|
293
|
+
name: sassc
|
|
294
|
+
requirement: !ruby/object:Gem::Requirement
|
|
295
|
+
requirements:
|
|
296
|
+
- - ">="
|
|
297
|
+
- !ruby/object:Gem::Version
|
|
298
|
+
version: '0'
|
|
299
|
+
type: :development
|
|
300
|
+
prerelease: false
|
|
301
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
302
|
+
requirements:
|
|
303
|
+
- - ">="
|
|
304
|
+
- !ruby/object:Gem::Version
|
|
305
|
+
version: '0'
|
|
306
|
+
- !ruby/object:Gem::Dependency
|
|
307
|
+
name: puma
|
|
308
|
+
requirement: !ruby/object:Gem::Requirement
|
|
309
|
+
requirements:
|
|
310
|
+
- - ">="
|
|
311
|
+
- !ruby/object:Gem::Version
|
|
312
|
+
version: '0'
|
|
313
|
+
type: :development
|
|
314
|
+
prerelease: false
|
|
315
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
316
|
+
requirements:
|
|
317
|
+
- - ">="
|
|
318
|
+
- !ruby/object:Gem::Version
|
|
319
|
+
version: '0'
|
|
320
|
+
- !ruby/object:Gem::Dependency
|
|
321
|
+
name: pg
|
|
322
|
+
requirement: !ruby/object:Gem::Requirement
|
|
323
|
+
requirements:
|
|
324
|
+
- - ">="
|
|
325
|
+
- !ruby/object:Gem::Version
|
|
326
|
+
version: '0'
|
|
327
|
+
type: :development
|
|
328
|
+
prerelease: false
|
|
329
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
330
|
+
requirements:
|
|
331
|
+
- - ">="
|
|
332
|
+
- !ruby/object:Gem::Version
|
|
333
|
+
version: '0'
|
|
334
|
+
- !ruby/object:Gem::Dependency
|
|
335
|
+
name: factory_bot_rails
|
|
336
|
+
requirement: !ruby/object:Gem::Requirement
|
|
337
|
+
requirements:
|
|
338
|
+
- - ">="
|
|
339
|
+
- !ruby/object:Gem::Version
|
|
340
|
+
version: '0'
|
|
341
|
+
type: :development
|
|
342
|
+
prerelease: false
|
|
343
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
344
|
+
requirements:
|
|
345
|
+
- - ">="
|
|
346
|
+
- !ruby/object:Gem::Version
|
|
347
|
+
version: '0'
|
|
348
|
+
- !ruby/object:Gem::Dependency
|
|
349
|
+
name: pry
|
|
350
|
+
requirement: !ruby/object:Gem::Requirement
|
|
351
|
+
requirements:
|
|
352
|
+
- - ">="
|
|
353
|
+
- !ruby/object:Gem::Version
|
|
354
|
+
version: '0'
|
|
355
|
+
type: :development
|
|
356
|
+
prerelease: false
|
|
357
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
358
|
+
requirements:
|
|
359
|
+
- - ">="
|
|
360
|
+
- !ruby/object:Gem::Version
|
|
361
|
+
version: '0'
|
|
362
|
+
- !ruby/object:Gem::Dependency
|
|
363
|
+
name: pry-rails
|
|
364
|
+
requirement: !ruby/object:Gem::Requirement
|
|
365
|
+
requirements:
|
|
366
|
+
- - ">="
|
|
367
|
+
- !ruby/object:Gem::Version
|
|
368
|
+
version: '0'
|
|
369
|
+
type: :development
|
|
370
|
+
prerelease: false
|
|
371
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
372
|
+
requirements:
|
|
373
|
+
- - ">="
|
|
374
|
+
- !ruby/object:Gem::Version
|
|
375
|
+
version: '0'
|
|
376
|
+
- !ruby/object:Gem::Dependency
|
|
377
|
+
name: rspec-rails
|
|
378
|
+
requirement: !ruby/object:Gem::Requirement
|
|
379
|
+
requirements:
|
|
380
|
+
- - ">="
|
|
381
|
+
- !ruby/object:Gem::Version
|
|
382
|
+
version: '0'
|
|
383
|
+
type: :development
|
|
384
|
+
prerelease: false
|
|
385
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
386
|
+
requirements:
|
|
387
|
+
- - ">="
|
|
388
|
+
- !ruby/object:Gem::Version
|
|
389
|
+
version: '0'
|
|
390
|
+
- !ruby/object:Gem::Dependency
|
|
391
|
+
name: simplecov
|
|
392
|
+
requirement: !ruby/object:Gem::Requirement
|
|
393
|
+
requirements:
|
|
394
|
+
- - ">="
|
|
395
|
+
- !ruby/object:Gem::Version
|
|
396
|
+
version: '0'
|
|
397
|
+
type: :development
|
|
398
|
+
prerelease: false
|
|
399
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
400
|
+
requirements:
|
|
401
|
+
- - ">="
|
|
402
|
+
- !ruby/object:Gem::Version
|
|
403
|
+
version: '0'
|
|
404
|
+
- !ruby/object:Gem::Dependency
|
|
405
|
+
name: sqlite3
|
|
406
|
+
requirement: !ruby/object:Gem::Requirement
|
|
407
|
+
requirements:
|
|
408
|
+
- - ">="
|
|
409
|
+
- !ruby/object:Gem::Version
|
|
410
|
+
version: '0'
|
|
411
|
+
type: :development
|
|
412
|
+
prerelease: false
|
|
413
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
414
|
+
requirements:
|
|
415
|
+
- - ">="
|
|
416
|
+
- !ruby/object:Gem::Version
|
|
417
|
+
version: '0'
|
|
418
|
+
description: Lookout is a fork of Ahoy Captain with SQLite support, continued maintenance,
|
|
419
|
+
and modern Rails 8 compatibility. Full-featured analytics dashboard with conversion
|
|
420
|
+
funnels, goals tracking, and beautiful visualizations.
|
|
421
|
+
email:
|
|
422
|
+
- eric@rubyonvibes.com
|
|
423
|
+
executables: []
|
|
424
|
+
extensions: []
|
|
425
|
+
extra_rdoc_files: []
|
|
426
|
+
files:
|
|
427
|
+
- MIT-LICENSE
|
|
428
|
+
- README.md
|
|
429
|
+
- Rakefile
|
|
430
|
+
- app/assets/images/lookout/apple-touch-icon.png
|
|
431
|
+
- app/assets/images/lookout/favicon-16x16.png
|
|
432
|
+
- app/assets/images/lookout/favicon-32x32.png
|
|
433
|
+
- app/assets/images/lookout/logo.png
|
|
434
|
+
- app/assets/images/lookout/safari-pinned-tab.png
|
|
435
|
+
- app/assets/images/lookout/safari-pinned-tab.svg
|
|
436
|
+
- app/assets/javascript/lookout/application.js
|
|
437
|
+
- app/assets/javascript/lookout/controllers/application.js
|
|
438
|
+
- app/assets/javascript/lookout/controllers/application_controller.js
|
|
439
|
+
- app/assets/javascript/lookout/controllers/combobox_controller.js
|
|
440
|
+
- app/assets/javascript/lookout/controllers/details_modal_controller.js
|
|
441
|
+
- app/assets/javascript/lookout/controllers/dropdown_label_controller.js
|
|
442
|
+
- app/assets/javascript/lookout/controllers/filter/item_controller.js
|
|
443
|
+
- app/assets/javascript/lookout/controllers/filter_form_controller.js
|
|
444
|
+
- app/assets/javascript/lookout/controllers/filter_modal_controller.js
|
|
445
|
+
- app/assets/javascript/lookout/controllers/frame_link_controller.js
|
|
446
|
+
- app/assets/javascript/lookout/controllers/funnel_chart_controller.js
|
|
447
|
+
- app/assets/javascript/lookout/controllers/index.js
|
|
448
|
+
- app/assets/javascript/lookout/controllers/interval_controller.js
|
|
449
|
+
- app/assets/javascript/lookout/controllers/line_chart_controller.js
|
|
450
|
+
- app/assets/javascript/lookout/controllers/predicate_select_controller.js
|
|
451
|
+
- app/assets/javascript/lookout/controllers/properties_controller.js
|
|
452
|
+
- app/assets/javascript/lookout/controllers/property_filter_controller.js
|
|
453
|
+
- app/assets/javascript/lookout/controllers/realtime_controller.js
|
|
454
|
+
- app/assets/javascript/lookout/controllers/sparkline_controller.js
|
|
455
|
+
- app/assets/javascript/lookout/controllers/tile_controller.js
|
|
456
|
+
- app/assets/javascript/lookout/controllers/toggle_controller.js
|
|
457
|
+
- app/assets/javascript/lookout/helpers/chart_utils.js
|
|
458
|
+
- app/assets/javascript/lookout/helpers/countries.js
|
|
459
|
+
- app/assets/javascript/lookout/helpers/number_formatters.js
|
|
460
|
+
- app/assets/manifest/lookout/manifest.js
|
|
461
|
+
- app/components/lookout/combobox_component.html.erb
|
|
462
|
+
- app/components/lookout/combobox_component.rb
|
|
463
|
+
- app/components/lookout/comparison_link_component.html.erb
|
|
464
|
+
- app/components/lookout/comparison_link_component.rb
|
|
465
|
+
- app/components/lookout/dropdown_button_component.html.erb
|
|
466
|
+
- app/components/lookout/dropdown_button_component.rb
|
|
467
|
+
- app/components/lookout/dropdown_link_component.html.erb
|
|
468
|
+
- app/components/lookout/dropdown_link_component.rb
|
|
469
|
+
- app/components/lookout/filter/dropdown_component.html.erb
|
|
470
|
+
- app/components/lookout/filter/dropdown_component.rb
|
|
471
|
+
- app/components/lookout/filter/modal_component.html.erb
|
|
472
|
+
- app/components/lookout/filter/modal_component.rb
|
|
473
|
+
- app/components/lookout/filter/select_component.html.erb
|
|
474
|
+
- app/components/lookout/filter/select_component.rb
|
|
475
|
+
- app/components/lookout/filter/tag_component.html.erb
|
|
476
|
+
- app/components/lookout/filter/tag_component.rb
|
|
477
|
+
- app/components/lookout/filter/tag_container_component.html.erb
|
|
478
|
+
- app/components/lookout/filter/tag_container_component.rb
|
|
479
|
+
- app/components/lookout/previous_next_component.html.erb
|
|
480
|
+
- app/components/lookout/previous_next_component.rb
|
|
481
|
+
- app/components/lookout/stats/comparable_container_component.html.erb
|
|
482
|
+
- app/components/lookout/stats/comparable_container_component.rb
|
|
483
|
+
- app/components/lookout/stats/container_component.html.erb
|
|
484
|
+
- app/components/lookout/stats/container_component.rb
|
|
485
|
+
- app/components/lookout/sticky_nav_component.html.erb
|
|
486
|
+
- app/components/lookout/sticky_nav_component.rb
|
|
487
|
+
- app/components/lookout/table_component.html.erb
|
|
488
|
+
- app/components/lookout/table_component.rb
|
|
489
|
+
- app/components/lookout/tables/devices_table_component.rb
|
|
490
|
+
- app/components/lookout/tables/dynamic_table.rb
|
|
491
|
+
- app/components/lookout/tables/dynamic_table_component.rb
|
|
492
|
+
- app/components/lookout/tables/goals_table_component.rb
|
|
493
|
+
- app/components/lookout/tables/header_component.html.erb
|
|
494
|
+
- app/components/lookout/tables/header_component.rb
|
|
495
|
+
- app/components/lookout/tables/headers/header_component.html.erb
|
|
496
|
+
- app/components/lookout/tables/headers/header_component.rb
|
|
497
|
+
- app/components/lookout/tables/properties_table_component.rb
|
|
498
|
+
- app/components/lookout/tables/row_component.html.erb
|
|
499
|
+
- app/components/lookout/tables/rows/row_component.html.erb
|
|
500
|
+
- app/components/lookout/tables/rows/row_component.rb
|
|
501
|
+
- app/components/lookout/tile_component.html.erb
|
|
502
|
+
- app/components/lookout/tile_component.rb
|
|
503
|
+
- app/components/lookout/tooltip_component.html.erb
|
|
504
|
+
- app/components/lookout/tooltip_component.rb
|
|
505
|
+
- app/controllers/lookout/application_controller.rb
|
|
506
|
+
- app/controllers/lookout/campaigns_controller.rb
|
|
507
|
+
- app/controllers/lookout/devices_controller.rb
|
|
508
|
+
- app/controllers/lookout/entry_pages_controller.rb
|
|
509
|
+
- app/controllers/lookout/exit_pages_controller.rb
|
|
510
|
+
- app/controllers/lookout/exports_controller.rb
|
|
511
|
+
- app/controllers/lookout/filters/base_controller.rb
|
|
512
|
+
- app/controllers/lookout/filters/goals_controller.rb
|
|
513
|
+
- app/controllers/lookout/filters/locations_controller.rb
|
|
514
|
+
- app/controllers/lookout/filters/operating_systems/names_controller.rb
|
|
515
|
+
- app/controllers/lookout/filters/operating_systems/versions_controller.rb
|
|
516
|
+
- app/controllers/lookout/filters/pages/actions_controller.rb
|
|
517
|
+
- app/controllers/lookout/filters/pages/entry_pages_controller.rb
|
|
518
|
+
- app/controllers/lookout/filters/pages/exit_pages_controller.rb
|
|
519
|
+
- app/controllers/lookout/filters/properties/names_controller.rb
|
|
520
|
+
- app/controllers/lookout/filters/properties/values_controller.rb
|
|
521
|
+
- app/controllers/lookout/filters/screens_controller.rb
|
|
522
|
+
- app/controllers/lookout/filters/sources_controller.rb
|
|
523
|
+
- app/controllers/lookout/filters/utms_controller.rb
|
|
524
|
+
- app/controllers/lookout/funnels_controller.rb
|
|
525
|
+
- app/controllers/lookout/goals_controller.rb
|
|
526
|
+
- app/controllers/lookout/locations/cities_controller.rb
|
|
527
|
+
- app/controllers/lookout/locations/countries_controller.rb
|
|
528
|
+
- app/controllers/lookout/locations/maps_controller.rb
|
|
529
|
+
- app/controllers/lookout/locations/regions_controller.rb
|
|
530
|
+
- app/controllers/lookout/properties_controller.rb
|
|
531
|
+
- app/controllers/lookout/realtimes_controller.rb
|
|
532
|
+
- app/controllers/lookout/roots_controller.rb
|
|
533
|
+
- app/controllers/lookout/sources_controller.rb
|
|
534
|
+
- app/controllers/lookout/stats/base_controller.rb
|
|
535
|
+
- app/controllers/lookout/stats/bounce_rates_controller.rb
|
|
536
|
+
- app/controllers/lookout/stats/total_pageviews_controller.rb
|
|
537
|
+
- app/controllers/lookout/stats/total_visits_controller.rb
|
|
538
|
+
- app/controllers/lookout/stats/unique_visitors_controller.rb
|
|
539
|
+
- app/controllers/lookout/stats/views_per_visits_controller.rb
|
|
540
|
+
- app/controllers/lookout/stats/visit_durations_controller.rb
|
|
541
|
+
- app/controllers/lookout/stats_controller.rb
|
|
542
|
+
- app/controllers/lookout/top_pages_controller.rb
|
|
543
|
+
- app/decorators/lookout/application_decorator.rb
|
|
544
|
+
- app/decorators/lookout/campaign_decorator.rb
|
|
545
|
+
- app/decorators/lookout/city_decorator.rb
|
|
546
|
+
- app/decorators/lookout/country_decorator.rb
|
|
547
|
+
- app/decorators/lookout/device_decorator.rb
|
|
548
|
+
- app/decorators/lookout/entry_page_decorator.rb
|
|
549
|
+
- app/decorators/lookout/exit_page_decorator.rb
|
|
550
|
+
- app/decorators/lookout/page_decorator.rb
|
|
551
|
+
- app/decorators/lookout/region_decorator.rb
|
|
552
|
+
- app/decorators/lookout/source_decorator.rb
|
|
553
|
+
- app/decorators/lookout/top_page_decorator.rb
|
|
554
|
+
- app/helpers/lookout/application_helper.rb
|
|
555
|
+
- app/models/concerns/lookout/compare_mode.rb
|
|
556
|
+
- app/models/concerns/lookout/limitable.rb
|
|
557
|
+
- app/models/concerns/lookout/range_options.rb
|
|
558
|
+
- app/models/lookout/comparison_mode.rb
|
|
559
|
+
- app/models/lookout/export.rb
|
|
560
|
+
- app/models/lookout/filter_parser.rb
|
|
561
|
+
- app/models/lookout/range_from_params.rb
|
|
562
|
+
- app/models/lookout/rangeable.rb
|
|
563
|
+
- app/models/lookout/widget.rb
|
|
564
|
+
- app/presenters/lookout/dashboard_presenter.rb
|
|
565
|
+
- app/presenters/lookout/funnel_presenter.rb
|
|
566
|
+
- app/presenters/lookout/goals_presenter.rb
|
|
567
|
+
- app/queries/concerns/lookout/comparable_queries.rb
|
|
568
|
+
- app/queries/concerns/lookout/comparable_query.rb
|
|
569
|
+
- app/queries/concerns/lookout/lazy_comparable_query.rb
|
|
570
|
+
- app/queries/lookout/application_query.rb
|
|
571
|
+
- app/queries/lookout/campaign_query.rb
|
|
572
|
+
- app/queries/lookout/city_query.rb
|
|
573
|
+
- app/queries/lookout/country_query.rb
|
|
574
|
+
- app/queries/lookout/device_query.rb
|
|
575
|
+
- app/queries/lookout/entry_pages_query.rb
|
|
576
|
+
- app/queries/lookout/event_query.rb
|
|
577
|
+
- app/queries/lookout/exit_pages_query.rb
|
|
578
|
+
- app/queries/lookout/region_query.rb
|
|
579
|
+
- app/queries/lookout/source_query.rb
|
|
580
|
+
- app/queries/lookout/stats/average_views_per_visit_query.rb
|
|
581
|
+
- app/queries/lookout/stats/average_visit_duration_query.rb
|
|
582
|
+
- app/queries/lookout/stats/base_query.rb
|
|
583
|
+
- app/queries/lookout/stats/bounce_rates_query.rb
|
|
584
|
+
- app/queries/lookout/stats/total_pageviews_query.rb
|
|
585
|
+
- app/queries/lookout/stats/total_visitors_query.rb
|
|
586
|
+
- app/queries/lookout/stats/unique_visitors_query.rb
|
|
587
|
+
- app/queries/lookout/stats/views_per_visit_query.rb
|
|
588
|
+
- app/queries/lookout/stats/visit_duration_query.rb
|
|
589
|
+
- app/queries/lookout/top_page_query.rb
|
|
590
|
+
- app/queries/lookout/visit_query.rb
|
|
591
|
+
- app/views/lookout/campaigns/index.html+details.erb
|
|
592
|
+
- app/views/lookout/campaigns/index.html.erb
|
|
593
|
+
- app/views/lookout/devices/_table.html.erb
|
|
594
|
+
- app/views/lookout/devices/index.html+details.erb
|
|
595
|
+
- app/views/lookout/devices/index.html.erb
|
|
596
|
+
- app/views/lookout/entry_pages/index.html+details.erb
|
|
597
|
+
- app/views/lookout/entry_pages/index.html.erb
|
|
598
|
+
- app/views/lookout/exit_pages/index.html+details.erb
|
|
599
|
+
- app/views/lookout/exit_pages/index.html.erb
|
|
600
|
+
- app/views/lookout/funnels/index.html.erb
|
|
601
|
+
- app/views/lookout/funnels/show.html.erb
|
|
602
|
+
- app/views/lookout/goals/index.html.erb
|
|
603
|
+
- app/views/lookout/layouts/application.html.erb
|
|
604
|
+
- app/views/lookout/layouts/shared/_tile_loader.html.erb
|
|
605
|
+
- app/views/lookout/layouts/shared/_widget_disabled.html+details.erb
|
|
606
|
+
- app/views/lookout/layouts/shared/_widget_disabled.html.erb
|
|
607
|
+
- app/views/lookout/locations/cities/index.html+details.erb
|
|
608
|
+
- app/views/lookout/locations/cities/index.html.erb
|
|
609
|
+
- app/views/lookout/locations/countries/index.html+details.erb
|
|
610
|
+
- app/views/lookout/locations/countries/index.html.erb
|
|
611
|
+
- app/views/lookout/locations/maps/_simple_map.html.erb
|
|
612
|
+
- app/views/lookout/locations/maps/show.html.erb
|
|
613
|
+
- app/views/lookout/locations/regions/index.html+details.erb
|
|
614
|
+
- app/views/lookout/locations/regions/index.html.erb
|
|
615
|
+
- app/views/lookout/properties/_form.html.erb
|
|
616
|
+
- app/views/lookout/properties/index.html.erb
|
|
617
|
+
- app/views/lookout/properties/show.html.erb
|
|
618
|
+
- app/views/lookout/realtimes/show.html.erb
|
|
619
|
+
- app/views/lookout/roots/_filters.html.erb
|
|
620
|
+
- app/views/lookout/roots/show.html.erb
|
|
621
|
+
- app/views/lookout/sources/index.html+details.erb
|
|
622
|
+
- app/views/lookout/sources/index.html.erb
|
|
623
|
+
- app/views/lookout/stats/base/index.html.erb
|
|
624
|
+
- app/views/lookout/stats/show.html.erb
|
|
625
|
+
- app/views/lookout/top_pages/index.html+details.erb
|
|
626
|
+
- app/views/lookout/top_pages/index.html.erb
|
|
627
|
+
- config/routes.rb
|
|
628
|
+
- lib/generators/lookout/install_generator.rb
|
|
629
|
+
- lib/generators/lookout/migration_generator.rb
|
|
630
|
+
- lib/generators/lookout/templates/config.rb.tt
|
|
631
|
+
- lib/generators/lookout/templates/migration.rb.tt
|
|
632
|
+
- lib/lookout.rb
|
|
633
|
+
- lib/lookout/active_record.rb
|
|
634
|
+
- lib/lookout/ahoy/event_methods.rb
|
|
635
|
+
- lib/lookout/ahoy/visit_methods.rb
|
|
636
|
+
- lib/lookout/configuration.rb
|
|
637
|
+
- lib/lookout/database_adapter.rb
|
|
638
|
+
- lib/lookout/engine.rb
|
|
639
|
+
- lib/lookout/filter_configuration/filter.rb
|
|
640
|
+
- lib/lookout/filter_configuration/filter_collection.rb
|
|
641
|
+
- lib/lookout/filters_configuration.rb
|
|
642
|
+
- lib/lookout/funnels.rb
|
|
643
|
+
- lib/lookout/goals.rb
|
|
644
|
+
- lib/lookout/period_collection.rb
|
|
645
|
+
- lib/lookout/predicate_label.rb
|
|
646
|
+
- lib/lookout/railtie.rb
|
|
647
|
+
- lib/lookout/version.rb
|
|
648
|
+
licenses:
|
|
649
|
+
- MIT
|
|
650
|
+
metadata:
|
|
651
|
+
homepage_uri: https://github.com/RubyOnVibes/lookout
|
|
652
|
+
source_code_uri: https://github.com/RubyOnVibes/lookout
|
|
653
|
+
changelog_uri: https://github.com/RubyOnVibes/lookout/blob/main/CHANGELOG.md
|
|
654
|
+
bug_tracker_uri: https://github.com/RubyOnVibes/lookout/issues
|
|
655
|
+
rdoc_options: []
|
|
656
|
+
require_paths:
|
|
657
|
+
- lib
|
|
658
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
659
|
+
requirements:
|
|
660
|
+
- - ">="
|
|
661
|
+
- !ruby/object:Gem::Version
|
|
662
|
+
version: 3.0.0
|
|
663
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
664
|
+
requirements:
|
|
665
|
+
- - ">="
|
|
666
|
+
- !ruby/object:Gem::Version
|
|
667
|
+
version: '0'
|
|
668
|
+
requirements: []
|
|
669
|
+
rubygems_version: 3.6.9
|
|
670
|
+
specification_version: 4
|
|
671
|
+
summary: A full-featured, mountable analytics dashboard for Rails, powered by Ahoy.
|
|
672
|
+
SQLite & PostgreSQL support.
|
|
673
|
+
test_files: []
|