pgbouncerhero 1.0.3 → 2.0.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0beaacfe8514247e5d6aa9a5a2cee2432f830a265911faaab2998fd406c23aab
|
|
4
|
+
data.tar.gz: cf85e4ce7b62d81ab756be4031fc1aa268f9823329fd108f372c0f930c6fb068
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '09add1cb73ceb2c23e35f7261eeece28bb87d503087cb7d61d26937f78e0843b7df1205542512b1bef76d8a0244e3ca8f5b5ce0b55259e327ef36f8a7fcc0c2b'
|
|
7
|
+
data.tar.gz: 3f7caf907cfc1334b6f319c5d85104a71c41f70780fbac948f1bd790ee4c01bf99a774c56dc90652d223f2ba8c3adbb0241cbf3b95c084ed0d58e660212c81dc
|
data/README.md
CHANGED
|
@@ -16,10 +16,6 @@ Add those dependencies to your application’s Gemfile:
|
|
|
16
16
|
|
|
17
17
|
```ruby
|
|
18
18
|
gem 'pgbouncerhero'
|
|
19
|
-
gem 'jquery-rails'
|
|
20
|
-
gem 'sass-rails'
|
|
21
|
-
gem 'semantic-ui-sass'
|
|
22
|
-
gem 'pg'
|
|
23
19
|
```
|
|
24
20
|
|
|
25
21
|
And mount the engine in your `config/routes.rb`:
|
|
@@ -28,20 +24,6 @@ And mount the engine in your `config/routes.rb`:
|
|
|
28
24
|
mount PgBouncerHero::Engine, at: "pgbouncerhero"
|
|
29
25
|
```
|
|
30
26
|
|
|
31
|
-
Add the following line in your `application.css`:
|
|
32
|
-
|
|
33
|
-
```
|
|
34
|
-
*= require pgbouncerhero/application
|
|
35
|
-
```
|
|
36
|
-
|
|
37
|
-
Add the following lines in your `application.js`:
|
|
38
|
-
|
|
39
|
-
```
|
|
40
|
-
//= require jquery
|
|
41
|
-
//= require jquery_ujs
|
|
42
|
-
//= require pgbouncerhero/application
|
|
43
|
-
```
|
|
44
|
-
|
|
45
27
|
### Basic Authentication
|
|
46
28
|
|
|
47
29
|
Set the following variables in your environment or an initializer.
|
|
@@ -97,7 +79,7 @@ production:
|
|
|
97
79
|
# License
|
|
98
80
|
|
|
99
81
|
```plain
|
|
100
|
-
Copyright (c)
|
|
82
|
+
Copyright (c) 2022 Quentin Rousseau <contact@quent.in>
|
|
101
83
|
|
|
102
84
|
MIT License
|
|
103
85
|
|
|
@@ -7,7 +7,8 @@
|
|
|
7
7
|
<title>
|
|
8
8
|
<%= [@groups.size > 1 ? "#{@database.group.name} | #{@database.name}" : "PgBouncerHero", @title].compact.join(" / ") %>
|
|
9
9
|
</title>
|
|
10
|
-
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': true %>
|
|
10
|
+
<%= stylesheet_link_tag 'pgbouncerhero/application', media: 'all', 'data-turbolinks-track': true %>
|
|
11
|
+
<%= javascript_include_tag "pgbouncerhero/application" %>
|
|
11
12
|
<%= csrf_meta_tags %>
|
|
12
13
|
</head>
|
|
13
14
|
<body>
|
|
@@ -23,7 +24,6 @@
|
|
|
23
24
|
</div>
|
|
24
25
|
<%= yield %>
|
|
25
26
|
</div>
|
|
26
|
-
<%= javascript_include_tag 'application' %>
|
|
27
27
|
<% if content_for? :inline_script %>
|
|
28
28
|
<%= yield :inline_script %>
|
|
29
29
|
<% end %>
|
data/lib/pgbouncerhero.rb
CHANGED
data/pgbouncerhero.gemspec
CHANGED
|
@@ -21,6 +21,7 @@ Gem::Specification.new do |spec|
|
|
|
21
21
|
spec.add_development_dependency "rake"
|
|
22
22
|
spec.add_development_dependency "minitest"
|
|
23
23
|
spec.add_runtime_dependency "sass-rails"
|
|
24
|
+
spec.add_runtime_dependency "jquery-rails"
|
|
24
25
|
spec.add_runtime_dependency "semantic-ui-sass"
|
|
25
26
|
|
|
26
27
|
if RUBY_PLATFORM == "java"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pgbouncerhero
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 2.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Quentin Rousseau
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-02-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -66,6 +66,20 @@ dependencies:
|
|
|
66
66
|
- - ">="
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '0'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: jquery-rails
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - ">="
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '0'
|
|
76
|
+
type: :runtime
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - ">="
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '0'
|
|
69
83
|
- !ruby/object:Gem::Dependency
|
|
70
84
|
name: semantic-ui-sass
|
|
71
85
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -166,8 +180,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
166
180
|
- !ruby/object:Gem::Version
|
|
167
181
|
version: '0'
|
|
168
182
|
requirements: []
|
|
169
|
-
|
|
170
|
-
rubygems_version: 2.7.6
|
|
183
|
+
rubygems_version: 3.0.3.1
|
|
171
184
|
signing_key:
|
|
172
185
|
specification_version: 4
|
|
173
186
|
summary: A graphical user interface for your PGBouncers
|