staff_bar 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/.gitignore +8 -0
- data/Gemfile +15 -0
- data/Gemfile.lock +149 -0
- data/LICENSE +20 -0
- data/README.md +59 -0
- data/Rakefile +27 -0
- data/app/assets/stylesheets/staff_bar.scss +89 -0
- data/app/helpers/staff_bar_helper.rb +7 -0
- data/app/views/staff_bar/_staff_bar.html.erb +22 -0
- data/bin/test +5 -0
- data/lib/staff_bar/capistrano/tasks/staff_bar.rake +12 -0
- data/lib/staff_bar/capistrano.rb +1 -0
- data/lib/staff_bar/config.rb +23 -0
- data/lib/staff_bar/core.rb +64 -0
- data/lib/staff_bar/engine.rb +5 -0
- data/lib/staff_bar/version.rb +3 -0
- data/lib/staff_bar.rb +8 -0
- data/preview-sm.png +0 -0
- data/preview.png +0 -0
- data/staff_bar.gemspec +24 -0
- data/test/dummy/.ruby-version +1 -0
- data/test/dummy/BRANCH +1 -0
- data/test/dummy/REVISION +1 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/config/manifest.js +2 -0
- data/test/dummy/app/assets/images/.keep +0 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/channels/application_cable/channel.rb +4 -0
- data/test/dummy/app/channels/application_cable/connection.rb +4 -0
- data/test/dummy/app/controllers/application_controller.rb +2 -0
- data/test/dummy/app/controllers/concerns/.keep +0 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/javascript/packs/application.js +15 -0
- data/test/dummy/app/jobs/application_job.rb +7 -0
- data/test/dummy/app/mailers/application_mailer.rb +4 -0
- data/test/dummy/app/models/application_record.rb +3 -0
- data/test/dummy/app/models/concerns/.keep +0 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/app/views/layouts/mailer.html.erb +13 -0
- data/test/dummy/app/views/layouts/mailer.text.erb +1 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +33 -0
- data/test/dummy/config/application.rb +19 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/cable.yml +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +62 -0
- data/test/dummy/config/environments/production.rb +112 -0
- data/test/dummy/config/environments/test.rb +48 -0
- data/test/dummy/config/initializers/application_controller_renderer.rb +8 -0
- data/test/dummy/config/initializers/assets.rb +12 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/content_security_policy.rb +28 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +5 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +33 -0
- data/test/dummy/config/puma.rb +38 -0
- data/test/dummy/config/routes.rb +3 -0
- data/test/dummy/config/spring.rb +6 -0
- data/test/dummy/config/storage.yml +34 -0
- data/test/dummy/config.ru +5 -0
- data/test/dummy/lib/assets/.keep +0 -0
- data/test/dummy/log/.keep +0 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/apple-touch-icon-precomposed.png +0 -0
- data/test/dummy/public/apple-touch-icon.png +0 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/staff_bar_test.rb +67 -0
- data/test/test_helper.rb +20 -0
- metadata +161 -0
@@ -0,0 +1,67 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
.rails-default-error-page {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
.rails-default-error-page div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
.rails-default-error-page div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
.rails-default-error-page h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
.rails-default-error-page div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body class="rails-default-error-page">
|
58
|
+
<!-- This file lives in public/404.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
62
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
63
|
+
</div>
|
64
|
+
<p>If you are the application owner check the logs for more information.</p>
|
65
|
+
</div>
|
66
|
+
</body>
|
67
|
+
</html>
|
@@ -0,0 +1,67 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
.rails-default-error-page {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
.rails-default-error-page div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
.rails-default-error-page div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
.rails-default-error-page h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
.rails-default-error-page div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body class="rails-default-error-page">
|
58
|
+
<!-- This file lives in public/422.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>The change you wanted was rejected.</h1>
|
62
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
63
|
+
</div>
|
64
|
+
<p>If you are the application owner check the logs for more information.</p>
|
65
|
+
</div>
|
66
|
+
</body>
|
67
|
+
</html>
|
@@ -0,0 +1,66 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
.rails-default-error-page {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
.rails-default-error-page div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
.rails-default-error-page div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
.rails-default-error-page h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
.rails-default-error-page div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body class="rails-default-error-page">
|
58
|
+
<!-- This file lives in public/500.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>We're sorry, but something went wrong.</h1>
|
62
|
+
</div>
|
63
|
+
<p>If you are the application owner check the logs for more information.</p>
|
64
|
+
</div>
|
65
|
+
</body>
|
66
|
+
</html>
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,67 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class StaffBar::Test < ActiveSupport::TestCase
|
4
|
+
def setup
|
5
|
+
Rails.application.config.action_controller.perform_caching = false
|
6
|
+
end
|
7
|
+
|
8
|
+
test "revision" do
|
9
|
+
assert_equal "abcd123", StaffBar.revision
|
10
|
+
end
|
11
|
+
|
12
|
+
test "branch" do
|
13
|
+
assert_equal "foo-branch", StaffBar.branch
|
14
|
+
end
|
15
|
+
|
16
|
+
test "rails_version" do
|
17
|
+
assert_equal "6.0.0", StaffBar.rails_version
|
18
|
+
end
|
19
|
+
|
20
|
+
test "environment" do
|
21
|
+
assert_equal "test", StaffBar.environment
|
22
|
+
end
|
23
|
+
|
24
|
+
test "time" do
|
25
|
+
travel_to Time.zone.parse("2019-10-01 00:00:00") do
|
26
|
+
assert_equal "2019-10-01 00:00:00 UTC", StaffBar.time
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
test "time_zone" do
|
31
|
+
assert_equal "Etc/UTC", StaffBar.time_zone
|
32
|
+
end
|
33
|
+
|
34
|
+
test "cache" do
|
35
|
+
assert_equal "Caching disabled", StaffBar.cache
|
36
|
+
|
37
|
+
Rails.application.config.action_controller.perform_caching = true
|
38
|
+
assert_equal "Caching enabled", StaffBar.cache
|
39
|
+
end
|
40
|
+
|
41
|
+
test "cache_class" do
|
42
|
+
assert_equal "", StaffBar.cache_class
|
43
|
+
|
44
|
+
Rails.application.config.action_controller.perform_caching = true
|
45
|
+
assert_equal "staff-bar-green", StaffBar.cache_class
|
46
|
+
end
|
47
|
+
|
48
|
+
test "position_class" do
|
49
|
+
assert_equal "staff-bar-bottom", StaffBar.position_class
|
50
|
+
|
51
|
+
StaffBar.config.position = :top
|
52
|
+
assert_equal "staff-bar-top", StaffBar.position_class
|
53
|
+
|
54
|
+
StaffBar.config.position = :foobar
|
55
|
+
assert_equal "staff-bar-bottom", StaffBar.position_class
|
56
|
+
end
|
57
|
+
|
58
|
+
test "theme_class" do
|
59
|
+
assert_equal "", StaffBar.theme_class
|
60
|
+
|
61
|
+
StaffBar.config.theme = :light
|
62
|
+
assert_equal "staff-bar-inverse", StaffBar.theme_class
|
63
|
+
|
64
|
+
StaffBar.config.theme = :foobar
|
65
|
+
assert_equal "", StaffBar.theme_class
|
66
|
+
end
|
67
|
+
end
|
data/test/test_helper.rb
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
# Configure Rails Environment
|
2
|
+
ENV["RAILS_ENV"] = "test"
|
3
|
+
|
4
|
+
require_relative "../test/dummy/config/environment"
|
5
|
+
ActiveRecord::Migrator.migrations_paths = [File.expand_path("../test/dummy/db/migrate", __dir__)]
|
6
|
+
require "rails/test_help"
|
7
|
+
|
8
|
+
# Filter out the backtrace from minitest while preserving the one from other libraries.
|
9
|
+
Minitest.backtrace_filter = Minitest::BacktraceFilter.new
|
10
|
+
|
11
|
+
require "rails/test_unit/reporter"
|
12
|
+
Rails::TestUnitReporter.executable = 'bin/test'
|
13
|
+
|
14
|
+
# Load fixtures from the engine
|
15
|
+
if ActiveSupport::TestCase.respond_to?(:fixture_path=)
|
16
|
+
ActiveSupport::TestCase.fixture_path = File.expand_path("fixtures", __dir__)
|
17
|
+
ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
|
18
|
+
ActiveSupport::TestCase.file_fixture_path = ActiveSupport::TestCase.fixture_path + "/files"
|
19
|
+
ActiveSupport::TestCase.fixtures :all
|
20
|
+
end
|
metadata
ADDED
@@ -0,0 +1,161 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: staff_bar
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Rolandas Barysas
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-10-29 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rails
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 5.0.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 5.0.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: octicons_helper
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '9'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '9'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: sqlite3
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
description: Show a bar with general project information for administrators.
|
56
|
+
email:
|
57
|
+
- rolandas@rolandasb.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- ".gitignore"
|
63
|
+
- Gemfile
|
64
|
+
- Gemfile.lock
|
65
|
+
- LICENSE
|
66
|
+
- README.md
|
67
|
+
- Rakefile
|
68
|
+
- app/assets/stylesheets/staff_bar.scss
|
69
|
+
- app/helpers/staff_bar_helper.rb
|
70
|
+
- app/views/staff_bar/_staff_bar.html.erb
|
71
|
+
- bin/test
|
72
|
+
- lib/staff_bar.rb
|
73
|
+
- lib/staff_bar/capistrano.rb
|
74
|
+
- lib/staff_bar/capistrano/tasks/staff_bar.rake
|
75
|
+
- lib/staff_bar/config.rb
|
76
|
+
- lib/staff_bar/core.rb
|
77
|
+
- lib/staff_bar/engine.rb
|
78
|
+
- lib/staff_bar/version.rb
|
79
|
+
- preview-sm.png
|
80
|
+
- preview.png
|
81
|
+
- staff_bar.gemspec
|
82
|
+
- test/dummy/.ruby-version
|
83
|
+
- test/dummy/BRANCH
|
84
|
+
- test/dummy/REVISION
|
85
|
+
- test/dummy/Rakefile
|
86
|
+
- test/dummy/app/assets/config/manifest.js
|
87
|
+
- test/dummy/app/assets/images/.keep
|
88
|
+
- test/dummy/app/assets/stylesheets/application.css
|
89
|
+
- test/dummy/app/channels/application_cable/channel.rb
|
90
|
+
- test/dummy/app/channels/application_cable/connection.rb
|
91
|
+
- test/dummy/app/controllers/application_controller.rb
|
92
|
+
- test/dummy/app/controllers/concerns/.keep
|
93
|
+
- test/dummy/app/helpers/application_helper.rb
|
94
|
+
- test/dummy/app/javascript/packs/application.js
|
95
|
+
- test/dummy/app/jobs/application_job.rb
|
96
|
+
- test/dummy/app/mailers/application_mailer.rb
|
97
|
+
- test/dummy/app/models/application_record.rb
|
98
|
+
- test/dummy/app/models/concerns/.keep
|
99
|
+
- test/dummy/app/views/layouts/application.html.erb
|
100
|
+
- test/dummy/app/views/layouts/mailer.html.erb
|
101
|
+
- test/dummy/app/views/layouts/mailer.text.erb
|
102
|
+
- test/dummy/bin/rails
|
103
|
+
- test/dummy/bin/rake
|
104
|
+
- test/dummy/bin/setup
|
105
|
+
- test/dummy/config.ru
|
106
|
+
- test/dummy/config/application.rb
|
107
|
+
- test/dummy/config/boot.rb
|
108
|
+
- test/dummy/config/cable.yml
|
109
|
+
- test/dummy/config/database.yml
|
110
|
+
- test/dummy/config/environment.rb
|
111
|
+
- test/dummy/config/environments/development.rb
|
112
|
+
- test/dummy/config/environments/production.rb
|
113
|
+
- test/dummy/config/environments/test.rb
|
114
|
+
- test/dummy/config/initializers/application_controller_renderer.rb
|
115
|
+
- test/dummy/config/initializers/assets.rb
|
116
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
117
|
+
- test/dummy/config/initializers/content_security_policy.rb
|
118
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
119
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
120
|
+
- test/dummy/config/initializers/inflections.rb
|
121
|
+
- test/dummy/config/initializers/mime_types.rb
|
122
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
123
|
+
- test/dummy/config/locales/en.yml
|
124
|
+
- test/dummy/config/puma.rb
|
125
|
+
- test/dummy/config/routes.rb
|
126
|
+
- test/dummy/config/spring.rb
|
127
|
+
- test/dummy/config/storage.yml
|
128
|
+
- test/dummy/lib/assets/.keep
|
129
|
+
- test/dummy/log/.keep
|
130
|
+
- test/dummy/public/404.html
|
131
|
+
- test/dummy/public/422.html
|
132
|
+
- test/dummy/public/500.html
|
133
|
+
- test/dummy/public/apple-touch-icon-precomposed.png
|
134
|
+
- test/dummy/public/apple-touch-icon.png
|
135
|
+
- test/dummy/public/favicon.ico
|
136
|
+
- test/staff_bar_test.rb
|
137
|
+
- test/test_helper.rb
|
138
|
+
homepage: https://github.com/decentbudget/staff_bar
|
139
|
+
licenses:
|
140
|
+
- MIT
|
141
|
+
metadata: {}
|
142
|
+
post_install_message:
|
143
|
+
rdoc_options: []
|
144
|
+
require_paths:
|
145
|
+
- lib
|
146
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
147
|
+
requirements:
|
148
|
+
- - ">="
|
149
|
+
- !ruby/object:Gem::Version
|
150
|
+
version: '0'
|
151
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
152
|
+
requirements:
|
153
|
+
- - ">="
|
154
|
+
- !ruby/object:Gem::Version
|
155
|
+
version: '0'
|
156
|
+
requirements: []
|
157
|
+
rubygems_version: 3.0.3
|
158
|
+
signing_key:
|
159
|
+
specification_version: 4
|
160
|
+
summary: Show a bar with general project information for administrators.
|
161
|
+
test_files: []
|