data_pact 0.1.0 → 0.1.2
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 +4 -4
- data/README.md +5 -0
- data/app/controllers/data_pact/application_controller.rb +3 -0
- data/app/helpers/data_pact/application_helper.rb +5 -0
- data/app/views/data_pact/application/routes.html.erb +5 -2
- data/app/views/data_pact/application/settings.html.erb +26 -0
- data/app/views/data_pact/session_data/index.html.erb +27 -36
- data/app/views/layouts/data_pact/application.html.erb +18 -268
- data/config/routes.rb +1 -0
- data/lib/data_pact/version.rb +1 -1
- data/lib/data_pact.rb +1 -7
- metadata +11 -18
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 70cc442650880adb3b16dfc6850796590544c20c2e6dddddff7fa0ea7904e533
|
4
|
+
data.tar.gz: 2520a6195b1b9b3ad402a155bc99416ee8fe86693fbc59e870732763c140ac89
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5dd1e478cf376f3f692b82bd5224b7c3ffb93dda68c9202b480da40ec2de7834a078f0fb9ade965affbc653e5d17bb70d42073ba6ef8c96d80be4370c2258fed
|
7
|
+
data.tar.gz: 8d83a2a956f296e735fcfedbea5dd8318348724b61daa0a9cb940ca7d406761a16c5948446a3e95943d37aca7a2b8d18987ccd3cb855b4f42b39a5f659e6f97a
|
data/README.md
CHANGED
@@ -1,4 +1,9 @@
|
|
1
1
|
module DataPact
|
2
2
|
module ApplicationHelper
|
3
|
+
DAISY_UI_THEMES = %w[dark cupcake bumblebee emerald retro cyberpunk valentine forest aqua pastel fantasy wireframe black luxury cmyk autumn business acid night].freeze
|
4
|
+
|
5
|
+
def themes_for_select
|
6
|
+
DAISY_UI_THEMES.map { |theme| [theme.titleize, theme] }
|
7
|
+
end
|
3
8
|
end
|
4
9
|
end
|
@@ -2,9 +2,12 @@
|
|
2
2
|
<% @routes.each do |route_data| %>
|
3
3
|
<div class="collapse collapse-arrow bg-base-200">
|
4
4
|
<input type="radio" name="my-accordion-2" checked="checked"/>
|
5
|
-
<div class="collapse-title text-xl font-medium flex items-center
|
5
|
+
<div class="collapse-title text-xl font-medium flex items-center">
|
6
|
+
<div class="flex items-center gap-6 flex-1">
|
7
|
+
<%= tag.div route_data.fetch(:verb), class: 'badge badge-neutral badge-lg' if route_data[:verb].present? %>
|
8
|
+
<span><%= route_data[:path]&.sub('(.:format)', '') %></span>
|
9
|
+
</div>
|
6
10
|
<span><%= route_data.fetch(:name, :controller_action) %></span>
|
7
|
-
<span><%= route_data[:path]&.sub('(.:format)', '') %></span>
|
8
11
|
</div>
|
9
12
|
<div class="collapse-content">
|
10
13
|
<p><%= route_data %></p>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<div x-data="settings" class="w-2/3">
|
2
|
+
<div class="rounded bg-base-100 place-content-center py-4">
|
3
|
+
<div class="flex flex-1 items-center justify-between px-6">
|
4
|
+
<span class="text-primary-content text-xl font-medium">Theme</span>
|
5
|
+
|
6
|
+
<select @change="changeTheme($event)" class="select select-bordered w-full max-w-xs text-primary-content">
|
7
|
+
<%= options_for_select(themes_for_select) %>
|
8
|
+
</select>
|
9
|
+
</div>
|
10
|
+
</div>
|
11
|
+
</div>
|
12
|
+
|
13
|
+
<script type="text/javascript" charset="utf-8">
|
14
|
+
document.addEventListener('alpine:init', () => {
|
15
|
+
Alpine.data('settings', () => ({
|
16
|
+
init(){
|
17
|
+
document.querySelector('option[value="' + localStorage.getItem('theme') + '"]').selected = true
|
18
|
+
},
|
19
|
+
changeTheme(event) {
|
20
|
+
const theme = event.target.value
|
21
|
+
document.body.dataset.theme = theme
|
22
|
+
localStorage.setItem('theme', theme)
|
23
|
+
}
|
24
|
+
}))
|
25
|
+
})
|
26
|
+
</script>
|
@@ -1,17 +1,8 @@
|
|
1
1
|
<div x-data class="flex flex-col gap-y-2">
|
2
|
-
<div class="collapse collapse-arrow bg-base-200">
|
3
|
-
<input type="radio" name="my-accordion-2" checked="checked"/>
|
4
|
-
<div class="collapse-title text-xl font-medium flex gap-x-3 items-center">
|
5
2
|
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
<path d="M12 9v6"/>
|
10
|
-
<path d="M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z"/>
|
11
|
-
</svg>
|
12
|
-
<span>Set Session data</span>
|
13
|
-
</div>
|
14
|
-
<div class="collapse-content">
|
3
|
+
<div class="card w-2/3 bg-base-100 shadow-xl">
|
4
|
+
<div class="card-body">
|
5
|
+
<div class="card-title">Set Session data</div>
|
15
6
|
<%= form_with url: session_data_path, class: 'flex items-center gap-6' do |f| %>
|
16
7
|
<div class="form-control w-full max-w-xs">
|
17
8
|
<label class="label">
|
@@ -27,9 +18,9 @@
|
|
27
18
|
<%= f.text_field :session_value, placeholder: 'Enter value', class: 'input input-bordered w-full max-w-xs' %>
|
28
19
|
</div>
|
29
20
|
|
30
|
-
<button type="submit" class="mt-8">
|
21
|
+
<button type="submit" class="mt-8 ">
|
31
22
|
<div class="form-control w-full max-w-xs">
|
32
|
-
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-square-rounded-plus" width="48" height="48" viewBox="0 0 24 24" stroke-width="1.5" stroke="#2c3e50" fill="none" stroke-linecap="round" stroke-linejoin="round">
|
23
|
+
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-square-rounded-plus hover:stroke-white" width="48" height="48" viewBox="0 0 24 24" stroke-width="1.5" stroke="#2c3e50" fill="none" stroke-linecap="round" stroke-linejoin="round">
|
33
24
|
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
|
34
25
|
<path d="M9 12h6"/>
|
35
26
|
<path d="M12 9v6"/>
|
@@ -40,30 +31,30 @@
|
|
40
31
|
<% end %>
|
41
32
|
</div>
|
42
33
|
</div>
|
43
|
-
<% @session_data.each do |session_key, value| %>
|
44
|
-
<div class="collapse collapse-arrow bg-base-200">
|
45
|
-
<input type="radio" name="my-accordion-2" checked="checked"/>
|
46
|
-
<div class="collapse-title text-xl font-medium">
|
47
|
-
<%= session_key %>
|
48
|
-
</div>
|
49
|
-
<div class="collapse-content">
|
50
|
-
<div class="flex items-center justify-between">
|
51
34
|
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
<
|
62
|
-
|
63
|
-
|
35
|
+
|
36
|
+
<div class="grid grid-cols-3 gap-4">
|
37
|
+
<% @session_data.each do |session_key, value| %>
|
38
|
+
<div class="card bg-base-100 shadow-xl">
|
39
|
+
<div class="card-body">
|
40
|
+
<div class="flex items-center justify-between">
|
41
|
+
<h2 class="card-title"><%= session_key %></h2>
|
42
|
+
<div class="card-actions justify-end">
|
43
|
+
<%= button_to session_data_path, method: :delete, params: { session_key_name: session_key } do %>
|
44
|
+
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-trash hover:stroke-white" width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" stroke="#2c3e50" fill="none" stroke-linecap="round" stroke-linejoin="round">
|
45
|
+
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
|
46
|
+
<path d="M4 7l16 0"/>
|
47
|
+
<path d="M10 11l0 6"/>
|
48
|
+
<path d="M14 11l0 6"/>
|
49
|
+
<path d="M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"/>
|
50
|
+
<path d="M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"/>
|
51
|
+
</svg>
|
52
|
+
<% end %>
|
53
|
+
</div>
|
64
54
|
</div>
|
55
|
+
<p><%= value %></p>
|
65
56
|
</div>
|
66
57
|
</div>
|
67
|
-
|
68
|
-
|
58
|
+
<% end %>
|
59
|
+
</div>
|
69
60
|
</div>
|
@@ -5,287 +5,37 @@
|
|
5
5
|
<%= csrf_meta_tags %>
|
6
6
|
<%= csp_meta_tag %>
|
7
7
|
|
8
|
-
|
9
8
|
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.12.3/dist/cdn.min.js"></script>
|
10
9
|
|
11
10
|
<%#= stylesheet_link_tag "data_pact/application", media: "all" %>
|
12
11
|
<link href="https://cdn.jsdelivr.net/npm/daisyui@3.5.0/dist/full.css" rel="stylesheet" type="text/css"/>
|
13
12
|
<script src="https://cdn.tailwindcss.com"></script>
|
13
|
+
|
14
14
|
</head>
|
15
15
|
<body>
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
<li>
|
30
|
-
<a href="javascript:void(0)" class="focus:outline-none border-b-2 border-transparent font-medium cursor-pointer h-full flex items-center hover:text-indigo-700 text-sm text-gray-800 dark:text-white mx-6 tracking-normal">Queries</a>
|
31
|
-
</li>
|
32
|
-
<li>
|
33
|
-
<a href="<%= session_data_path %>" class="focus:outline-none border-b-2 border-transparent font-medium cursor-pointer h-full flex items-center hover:text-indigo-700 text-sm text-gray-800 dark:text-white mr-6 tracking-normal">Session
|
34
|
-
Data</a>
|
35
|
-
</li>
|
36
|
-
<li>
|
37
|
-
<a href="/datapact/routes" class="focus:outline-none border-b-2 border-transparent font-medium cursor-pointer h-full flex items-center hover:text-indigo-700 text-sm text-gray-800 dark:text-white mr-6 tracking-normal">Routes</a>
|
38
|
-
</li>
|
39
|
-
<li>
|
40
|
-
<a href="javascript:void(0)" class="focus:outline-none border-b-2 border-transparent font-medium cursor-pointer h-full flex items-center hover:text-indigo-700 text-sm text-gray-800 dark:text-white mr-6 tracking-normal">Settings</a>
|
41
|
-
</li>
|
42
|
-
</ul>
|
43
|
-
</div>
|
44
|
-
<div class="md:flex items-center justify-end hidden">
|
45
|
-
<div class="flex items-center">
|
46
|
-
<div class="md:pr-10 lg:pr-0 h-full flex items-center">
|
47
|
-
<div class="relative">
|
48
|
-
<div class="text-gray-600 dark:text-gray-200 absolute ml-3 inset-0 m-auto lg:w-4 lg:h-4 md:w-6 md:h-6">
|
49
|
-
<img class="text-gray-600 dark:text-gray-200 stroke-current icon icon-tabler icon-tabler-search" src="https://tuk-cdn.s3.amazonaws.com/can-uploader/horizontal-navigation-svg2.svg" alt="search"/>
|
50
|
-
</div>
|
51
|
-
<input class="hidden lg:block border border-gray-200 focus:outline-none focus:border-indigo-700 w-64 rounded text-sm text-gray-800 dark:text-white pl-8 py-2" type="text" placeholder="Search here"/>
|
52
|
-
</div>
|
53
|
-
</div>
|
54
|
-
<div class="h-full flex items-center">
|
55
|
-
<button aria-label="show notifications" class="relative focus:outline-none focus:text-indigo-700 hover:text-indigo-700 focus:border-indigo-700 hover:border-indigo-700 mx-5 h-full flex items-center justify-center text-gray-600 dark:text-gray-200 cursor-pointer">
|
56
|
-
<svg class="icon icon-tabler icon-tabler-bell" xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
|
57
|
-
<path stroke="none" d="M0 0h24v24H0z"/>
|
58
|
-
<path d="M10 5a2 2 0 0 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"/>
|
59
|
-
<path d="M9 17v1a3 3 0 0 0 6 0v-1"/>
|
60
|
-
</svg>
|
61
|
-
<div class="absolute top-0 left-4 mt-0 mr-4 pr-1 pt-1">
|
62
|
-
<div class="animate-ping w-2 h-2 rounded-full bg-blue-400"></div>
|
63
|
-
</div>
|
64
|
-
</button>
|
65
|
-
</div>
|
66
|
-
<div class="h-full flex items-center">
|
67
|
-
<button aria-label="dropdown" class="focus:outline-none focus:text-gray-900 text-gray-800 dark:text-white border-b-2 border-transparent focus:border-gray-800 hover:text-gray-900 w-full flex items-center justify-end relative cursor-pointer" onclick="dropdownHandler(this)">
|
68
|
-
<img class="rounded-full h-10 w-10 object-cover" src="https://i.ibb.co/GTLTzZY/Unsplash-Avatars-0000s-0035-azamat-zhanisov-a5s-RFie-A3-BY-unsplash-1.png" alt="Unsplash-Avatars-0000s-0035-azamat-zhanisov-a5s-RFie-A3-BY-unsplash-1" alt="logo"/>
|
69
|
-
</button>
|
70
|
-
</div>
|
71
|
-
</div>
|
72
|
-
</div>
|
73
|
-
<div class="flex items-center md:hidden">
|
74
|
-
<ul class="p-2 border-r bg-white dark:bg-gray-800 absolute rounded top-0 left-0 right-0 shadow mt-16 md:mt-16 hidden">
|
75
|
-
<li class="flex md:hidden cursor-pointer text-gray-600 dark:text-gray-200 text-sm leading-3 tracking-normal mt-2 py-2 hover:text-indigo-700 focus:text-indigo-700 focus:outline-none">
|
76
|
-
<div class="flex items-center">
|
77
|
-
<span class="ml-2 font-bold">Requests</span>
|
78
|
-
</div>
|
79
|
-
</li>
|
80
|
-
<li class="flex md:hidden flex-col cursor-pointer text-gray-600 dark:text-gray-200 text-sm leading-3 tracking-normal py-2 hover:text-indigo-700 focus:text-indigo-700 focus:outline-none flex justify-center">
|
81
|
-
<div class="flex items-center">
|
82
|
-
<span class="ml-2 font-bold">Queries</span>
|
83
|
-
</div>
|
84
|
-
</li>
|
85
|
-
<li class="flex md:hidden flex-col cursor-pointer text-gray-600 dark:text-gray-200 text-sm leading-3 tracking-normal py-2 hover:text-indigo-700 focus:text-indigo-700 focus:outline-none flex justify-center">
|
86
|
-
<div class="flex items-center">
|
87
|
-
<span class="ml-2 font-bold">Session Data</span>
|
88
|
-
</div>
|
89
|
-
</li>
|
90
|
-
<li class="border-b border-gray-300 flex md:hidden cursor-pointer text-gray-600 dark:text-gray-200 text-sm leading-3 tracking-normal pt-2 pb-4 hover:text-indigo-700 flex items-center focus:text-indigo-700 focus:outline-none">
|
91
|
-
<span class="ml-2 font-bold">Deliverables</span>
|
92
|
-
</li>
|
93
|
-
<li class="cursor-pointer text-gray-600 dark:text-gray-200 text-sm leading-3 tracking-normal mt-2 py-2 hover:text-indigo-700 flex items-center focus:text-indigo-700 focus:outline-none">
|
94
|
-
<div class="flex items-center">
|
95
|
-
<div class="w-12 cursor-pointer flex text-sm border-2 border-transparent rounded focus:outline-none focus:border-white transition duration-150 ease-in-out">
|
96
|
-
<img class="rounded h-10 w-10 object-cover" src="https://tuk-cdn.s3.amazonaws.com/assets/components/horizontal_navigation/hn_1.png" alt="logo"/>
|
97
|
-
</div>
|
98
|
-
<p class="text-sm ml-2 cursor-pointer">Jane Doe</p>
|
99
|
-
<div class="sm:ml-2 text-gray-800 dark:text-white relative">
|
100
|
-
<img class="icon icon-tabler icon-tabler-chevron-down cursor-pointer" src="https://tuk-cdn.s3.amazonaws.com/can-uploader/horizontal-navigation-svg4.svg" alt="chevron down"/>
|
101
|
-
</div>
|
102
|
-
</div>
|
103
|
-
</li>
|
104
|
-
<li class="cursor-pointer text-gray-600 dark:text-gray-200 text-sm leading-3 tracking-normal py-2 hover:text-indigo-700 focus:text-indigo-700 focus:outline-none">
|
105
|
-
<div class="flex items-center">
|
106
|
-
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-user" width="20" height="20" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
|
107
|
-
<path stroke="none" d="M0 0h24v24H0z"/>
|
108
|
-
<circle cx="12" cy="7" r="4"/>
|
109
|
-
<path d="M6 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"/>
|
110
|
-
</svg>
|
111
|
-
<span class="ml-2">Profile</span>
|
112
|
-
</div>
|
113
|
-
</li>
|
114
|
-
<li class="cursor-pointer text-gray-600 dark:text-gray-200 text-sm leading-3 tracking-normal mt-2 py-2 hover:text-indigo-700 flex items-center focus:text-indigo-700 focus:outline-none">
|
115
|
-
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-logout" width="20" height="20" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
|
116
|
-
<path stroke="none" d="M0 0h24v24H0z"/>
|
117
|
-
<path d="M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"/>
|
118
|
-
<path d="M7 12h14l-3 -3m0 6l3 -3"/>
|
119
|
-
</svg>
|
120
|
-
<span class="ml-2">Sign out</span>
|
121
|
-
</li>
|
122
|
-
</ul>
|
123
|
-
</div>
|
16
|
+
<script type="text/javascript" charset="utf-8">
|
17
|
+
(function () {
|
18
|
+
document.body.dataset.theme = localStorage.getItem('theme') || 'light';
|
19
|
+
})();
|
20
|
+
</script>
|
21
|
+
|
22
|
+
<div class="h-screen w-screen">
|
23
|
+
<div class="navbar bg-base-100 border-b border-base-200">
|
24
|
+
<div class="flex-1">
|
25
|
+
<div class="btn btn-ghost normal-case text-xl">DataPact</div>
|
26
|
+
<%= link_to 'Routes', routes_path, class: 'btn btn-ghost normal-case text-lg font-medium' %>
|
27
|
+
<%= link_to 'Session Data', session_data_path, class: 'btn btn-ghost normal-case text-lg font-medium' %>
|
28
|
+
<%= link_to 'Settings', settings_path, class: 'btn btn-ghost normal-case text-lg font-medium' %>
|
124
29
|
</div>
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
<div class="h-full flex items-center">
|
129
|
-
<ul class="pr-12 md:flex items-center h-full hidden">
|
130
|
-
<li>
|
131
|
-
<a href="javascript:void(0)" class="focus:outline-none border-b-2 border-transparent leading-none cursor-pointer h-full flex items-center hover:text-indigo-700 text-sm text-gray-600 dark:text-gray-200 ">Home</a>
|
132
|
-
</li>
|
133
|
-
<li>
|
134
|
-
<img class="mx-4" src="https://tuk-cdn.s3.amazonaws.com/can-uploader/horizontal-navigation-svg3.svg" alt="icon-1"/>
|
135
|
-
</li>
|
136
|
-
<li>
|
137
|
-
<a href="javascript:void(0)" class="focus:outline-none border-b-2 border-transparent leading-none cursor-pointer h-full flex items-center hover:text-indigo-700 text-sm text-gray-600 dark:text-gray-200 ">Resource
|
138
|
-
Manager</a>
|
139
|
-
</li>
|
140
|
-
<li>
|
141
|
-
<img class="mx-4" src="https://tuk-cdn.s3.amazonaws.com/can-uploader/horizontal-navigation-svg5.svg" alt="icon2"/>
|
142
|
-
</li>
|
143
|
-
<li>
|
144
|
-
<a href="javascript:void(0)" class="focus:outline-none border-b-2 border-transparent leading-none cursor-pointer h-full flex items-center hover:text-indigo-700 text-sm text-gray-600 dark:text-gray-200 mr-14">Job
|
145
|
-
Applications</a>
|
146
|
-
</li>
|
147
|
-
</ul>
|
30
|
+
<div class="flex-none gap-2">
|
31
|
+
<div class="form-control">
|
32
|
+
<input type="text" placeholder="Search" class="input input-bordered w-24 md:w-auto"/>
|
148
33
|
</div>
|
149
34
|
</div>
|
150
|
-
</
|
151
|
-
|
152
|
-
<!-- Navbar -->
|
153
|
-
<nav class="md:hidden">
|
154
|
-
<div class="w-full shadow-md bg-white dark:bg-gray-800 fixed top-0 z-40">
|
155
|
-
<div class="flex md:hidden mx-auto container">
|
156
|
-
<div class="border-b py-4 border-gray-200 flex items-stretch justify-between mx-4 items-center w-full">
|
157
|
-
<div aria-label="logo" role="img" tabindex="0" class="focus:outline-none">
|
158
|
-
<img class="p-1 dark:bg-white rounded-full" src="https://tuk-cdn.s3.amazonaws.com/can-uploader/horizontal-navigation-svg1.svg" alt="logo"/>
|
159
|
-
</div>
|
160
|
-
<div class="flex md:hidden items-center justify-end">
|
161
|
-
<div class="flex items-center">
|
162
|
-
<div class="h-full flex items-center">
|
163
|
-
<button aria-label="show notifications" class="relative focus:outline-none focus:text-indigo-700 hover:text-indigo-700 focus:border-indigo-700 hover:border-indigo-700 h-full flex items-center justify-center text-gray-600 dark:text-gray-200 cursor-pointer">
|
164
|
-
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-bell" width="28" height="28" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
|
165
|
-
<path stroke="none" d="M0 0h24v24H0z"/>
|
166
|
-
<path d="M10 5a2 2 0 0 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6"/>
|
167
|
-
<path d="M9 17v1a3 3 0 0 0 6 0v-1"/>
|
168
|
-
</svg>
|
169
|
-
<div class="absolute top-0 left-4 mt-0 mr-4 pr-1 pt-1">
|
170
|
-
<div class="animate-ping w-2 h-2 rounded-full bg-blue-400"></div>
|
171
|
-
</div>
|
172
|
-
</button>
|
173
|
-
</div>
|
174
|
-
<div class="h-full flex items-center">
|
175
|
-
<button aria-label="dropdown" class="focus:outline-none mx-4 focus:text-gray-900 text-gray-800 dark:text-white border-b-2 border-transparent focus:border-gray-800 hover:text-gray-900 w-full flex items-center justify-end relative cursor-pointer" onclick="dropdownHandler(this)">
|
176
|
-
<img class="rounded-full h-10 w-10 object-cover" src="https://i.ibb.co/GTLTzZY/Unsplash-Avatars-0000s-0035-azamat-zhanisov-a5s-RFie-A3-BY-unsplash-1.png" alt="Unsplash-Avatars-0000s-0035-azamat-zhanisov-a5s-RFie-A3-BY-unsplash-1" alt="logo"/>
|
177
|
-
</button>
|
178
|
-
</div>
|
179
|
-
<div class="h-full flex items-center">
|
180
|
-
<button id="menu" aria-label="open menu" class="focus:outline-none focus:ring-2 focus:ring-gray-700 rounded-md text-gray-800 dark:text-white " onclick="sidebarHandler(true)">
|
181
|
-
<img src="https://tuk-cdn.s3.amazonaws.com/can-uploader/horizontal-navigation-svg6.svg" alt="menu"/>
|
182
|
-
</button>
|
183
|
-
</div>
|
184
|
-
</div>
|
185
|
-
</div>
|
186
|
-
</div>
|
187
|
-
</div>
|
188
|
-
<div class="container sm:px-6 px-4 justify-between h-12 flex items-center bg-white dark:bg-gray-800 md:items-stretch mx-auto">
|
189
|
-
<div class="h-full flex items-center">
|
190
|
-
<ul class="flex items-center h-full md:hidden">
|
191
|
-
<li>
|
192
|
-
<a href="javascript:void(0)" class="focus:outline-none border-b-2 border-transparent leading-none cursor-pointer h-full flex items-center hover:text-indigo-700 text-sm text-gray-600 dark:text-gray-200 ">Home</a>
|
193
|
-
</li>
|
194
|
-
<img class="mx-2" src="https://tuk-cdn.s3.amazonaws.com/can-uploader/horizontal-navigation-svg7.svg" alt="icon-4"/>
|
195
|
-
<li>
|
196
|
-
<a href="javascript:void(0)" class="focus:outline-none border-b-2 border-transparent leading-none cursor-pointer h-full flex items-center hover:text-indigo-700 text-sm text-gray-600 dark:text-gray-200 ">Resource
|
197
|
-
Manager</a>
|
198
|
-
</li>
|
199
|
-
<img class="mx-2" src="https://tuk-cdn.s3.amazonaws.com/can-uploader/horizontal-navigation-svg8.svg" alt="icon-5"/>
|
200
|
-
<li>
|
201
|
-
<a href="javascript:void(0)" class="focus:outline-none border-b-2 border-transparent leading-none cursor-pointer h-full flex items-center hover:text-indigo-700 text-sm text-gray-600 dark:text-gray-200 mr-4">Job
|
202
|
-
Applications</a>
|
203
|
-
</li>
|
204
|
-
</ul>
|
205
|
-
</div>
|
206
|
-
</div>
|
207
|
-
</div>
|
208
|
-
<!--Mobile responsive sidebar-->
|
209
|
-
<div class="absolute w-full h-full transform -translate-x-full z-40 transition duration-700 sm:hidden" id="mobile-nav">
|
210
|
-
<div class="w-full h-full shadow-lg z-40 fixed overflow-y-auto z-40 top-0 bg-white dark:bg-gray-800 flex-col justify-between xl:hidden pb-4 transition duration-500 ease-in-out">
|
211
|
-
<div class="px-5 h-full">
|
212
|
-
<div class="flex flex-col justify-between h-full w-full">
|
213
|
-
<div>
|
214
|
-
<div class="mt-6 flex w-full items-center justify-between">
|
215
|
-
<div class="border-b border-gray-200 pb-8 flex items-center justify-between w-full">
|
216
|
-
<div class="md:pr-10 lg:pr-0 h-full flex items-center w-full">
|
217
|
-
<div class="relative w-full">
|
218
|
-
<div class="text-gray-800 dark:text-white absolute ml-3 inset-0 m-auto w-4 h-4">
|
219
|
-
<img src="https://tuk-cdn.s3.amazonaws.com/can-uploader/horizontal-navigation-svg2.svg" alt="search"/>
|
220
|
-
</div>
|
221
|
-
<input class="md:hidden border border-gray-300 focus:outline-none focus:border-indigo-700 w-full rounded text-sm text-gray-800 dark:text-white pl-8 py-2" type="text" placeholder="Search here"/>
|
222
|
-
</div>
|
223
|
-
</div>
|
224
|
-
<button id="cross" aria-label="close menu" class="focus:outline-none focus:ring-2 rounded-md text-gray-800 dark:text-white pl-8" onclick="sidebarHandler(false)">
|
225
|
-
<img class="dark:bg-white p-1" src="https://tuk-cdn.s3.amazonaws.com/can-uploader/horizontal-navigation-svg9.svg" alt="cross"/>
|
226
|
-
</button>
|
227
|
-
</div>
|
228
|
-
</div>
|
229
|
-
<ul class="">
|
230
|
-
<li>
|
231
|
-
<a class="cursor-pointer">
|
232
|
-
<div class="text-gray-800 dark:text-white pt-10">
|
233
|
-
<div class="flex items-center">
|
234
|
-
<p tabindex="0" class="focus:outline-none text-gray-800 dark:text-white text-sm font-medium">Routes</p>
|
235
|
-
</div>
|
236
|
-
</div>
|
237
|
-
</a>
|
238
|
-
</li>
|
239
|
-
<li>
|
240
|
-
<a href='/session_data' class="cursor-pointer">
|
241
|
-
<div class="text-gray-800 dark:text-white pt-8">
|
242
|
-
<div class="flex items-center justify-between">
|
243
|
-
<div class="flex items-center">
|
244
|
-
<p tabindex="0" class="focus:outline-none text-gray-800 dark:text-white text-sm font-medium">Session
|
245
|
-
Dataa</p>
|
246
|
-
</div>
|
247
|
-
</div>
|
248
|
-
</div>
|
249
|
-
</a>
|
250
|
-
</li>
|
251
|
-
<li>
|
252
|
-
<a class="cursor-pointer">
|
253
|
-
<div class="text-gray-800 dark:text-white pt-8">
|
254
|
-
<div class="flex items-center">
|
255
|
-
<p tabindex="0" class="focus:outline-none text-gray-800 dark:text-white text-sm font-medium">Requests</p>
|
256
|
-
</div>
|
257
|
-
</div>
|
258
|
-
</a>
|
259
|
-
</li>
|
260
|
-
<li class="text-gray-800 dark:text-white pt-8 cursor-pointer">
|
261
|
-
<div class="flex items-center justify-between">
|
262
|
-
<div class="w-6 h-6 md:w-8 md:h-8 text-gray-800 dark:text-white ">
|
263
|
-
<p tabindex="0" class="focus:outline-none text-gray-800 dark:text-white text-sm font-medium">Queries</p>
|
264
|
-
</div>
|
265
|
-
</div>
|
266
|
-
</li>
|
267
|
-
<li class="text-gray-800 dark:text-white pt-8 cursor-pointer">
|
268
|
-
<div class="flex items-center justify-between">
|
269
|
-
<div class="w-6 h-6 md:w-8 md:h-8 text-gray-800 dark:text-white ">
|
270
|
-
<p tabindex="0" class="focus:outline-none text-gray-800 dark:text-white text-sm font-medium">Settings</p>
|
271
|
-
</div>
|
272
|
-
</div>
|
273
|
-
</li>
|
274
|
-
</ul>
|
275
|
-
</div>
|
276
|
-
</div>
|
277
|
-
</div>
|
278
|
-
</div>
|
279
|
-
</div>
|
280
|
-
</nav>
|
281
|
-
<!-- Sidebar ends -->
|
282
|
-
|
283
|
-
<!-- Code block ends -->
|
35
|
+
</div>
|
284
36
|
<div class="my-3 mx-6">
|
285
37
|
<%= yield %>
|
286
38
|
</div>
|
287
39
|
</div>
|
288
|
-
|
289
|
-
|
290
40
|
</body>
|
291
41
|
</html>
|
data/config/routes.rb
CHANGED
data/lib/data_pact/version.rb
CHANGED
data/lib/data_pact.rb
CHANGED
metadata
CHANGED
@@ -1,44 +1,36 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: data_pact
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Benjamin Shyman
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-08-
|
11
|
+
date: 2023-08-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 6.1
|
20
|
-
type: :runtime
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
19
|
+
version: '6.1'
|
24
20
|
- - ">="
|
25
21
|
- !ruby/object:Gem::Version
|
26
22
|
version: 6.1.7.1
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: aws-sdk-s3
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - ">="
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '0'
|
34
23
|
type: :runtime
|
35
24
|
prerelease: false
|
36
25
|
version_requirements: !ruby/object:Gem::Requirement
|
37
26
|
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '6.1'
|
38
30
|
- - ">="
|
39
31
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
41
|
-
description:
|
32
|
+
version: 6.1.7.1
|
33
|
+
description: Various debugging tools for Ruby on Rails
|
42
34
|
email:
|
43
35
|
- bshyman@gmail.com
|
44
36
|
executables: []
|
@@ -58,6 +50,7 @@ files:
|
|
58
50
|
- app/models/data_pact/application_record.rb
|
59
51
|
- app/views/application/index.html.erb
|
60
52
|
- app/views/data_pact/application/routes.html.erb
|
53
|
+
- app/views/data_pact/application/settings.html.erb
|
61
54
|
- app/views/data_pact/session_data/index.html.erb
|
62
55
|
- app/views/layouts/data_pact/application.html.erb
|
63
56
|
- config/routes.rb
|
@@ -87,5 +80,5 @@ requirements: []
|
|
87
80
|
rubygems_version: 3.2.15
|
88
81
|
signing_key:
|
89
82
|
specification_version: 4
|
90
|
-
summary:
|
83
|
+
summary: Debugging tool for Ruby on Rails.
|
91
84
|
test_files: []
|