actioninsight 0.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +20 -0
- data/README.md +35 -0
- data/Rakefile +10 -0
- data/app/assets/config/action_insight_manifest.js +1 -0
- data/app/assets/stylesheets/action_insight/application.css +15 -0
- data/app/controllers/action_insight/application_controller.rb +6 -0
- data/app/helpers/action_insight/application_helper.rb +6 -0
- data/app/jobs/action_insight/application_job.rb +6 -0
- data/app/mailers/action_insight/application_mailer.rb +8 -0
- data/app/models/action_insight/application_record.rb +7 -0
- data/app/views/layouts/action_insight/application.html.erb +15 -0
- data/config/routes.rb +4 -0
- data/lib/action_insight/engine.rb +7 -0
- data/lib/action_insight/version.rb +5 -0
- data/lib/action_insight.rb +9 -0
- data/lib/tasks/action_insight_tasks.rake +5 -0
- metadata +111 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: d05e37f1887277bc5c6db359d205871e89ff7998abbd71c2c41b57cd82cf9a3a
|
4
|
+
data.tar.gz: 5dc6251b65447b35dd58013a6029070481a312dcbc5886b05e75ca3df3be71c9
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 0a418020a37a8dede861780ab788b6fcb014bef10fd4f97dccfefa3efc482b01a78b602884bb6a1dcc566e02b5b7c86330e764d382c2da682af8afc7fa51c532
|
7
|
+
data.tar.gz: 312ff59c207fabfd153e6bfe6af070f64364702a45d49ea761f21da8ad0930ff97eb798493ca7341733260b0e9f28e637e77b603c41fd986294895b7d0f08ce5
|
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2023 nejdetkadir
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
# ActionInsight
|
2
|
+
|
3
|
+
ActionInsight is a robust analysis and error management package tailored for the Ruby on Rails ecosystem. Developed with the intent of enhancing web application performance and reliability, ActionInsight tracks the components operating in the background of your application, analyzes processes over time, and aggregates performance metrics. Additionally, it captures error situations and provides advanced tools for error analysis. By considering not only user interactions but also the internal mechanics of the application, from database queries to background tasks, it facilitates a comprehensive examination. Through customizable alerts and notifications, it offers developers real-time feedback and aids in preemptively identifying potential issues. ActionInsight streamlines the development process, assisting in creating more efficient, swift, and dependable web applications.
|
4
|
+
|
5
|
+
## Usage
|
6
|
+
|
7
|
+
How to use my plugin.
|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
Add this line to your application's Gemfile:
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
gem "actioninsight"
|
15
|
+
```
|
16
|
+
|
17
|
+
And then execute:
|
18
|
+
|
19
|
+
```bash
|
20
|
+
$ bundle
|
21
|
+
```
|
22
|
+
|
23
|
+
Or install it yourself as:
|
24
|
+
|
25
|
+
```bash
|
26
|
+
$ gem install actioninsight
|
27
|
+
```
|
28
|
+
|
29
|
+
## Contributing
|
30
|
+
|
31
|
+
Contribution directions go here.
|
32
|
+
|
33
|
+
## License
|
34
|
+
|
35
|
+
The gem is available as open source under the terms of the [MIT License](LICENSE).
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
//= link_directory ../stylesheets/action_insight .css
|
@@ -0,0 +1,15 @@
|
|
1
|
+
/*
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
3
|
+
* listed below.
|
4
|
+
*
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
6
|
+
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
|
7
|
+
*
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
9
|
+
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
|
10
|
+
* files in this directory. Styles in this file should be added after the last require_* statement.
|
11
|
+
* It is generally better to create a new file per style scope.
|
12
|
+
*
|
13
|
+
*= require_tree .
|
14
|
+
*= require_self
|
15
|
+
*/
|
data/config/routes.rb
ADDED
metadata
ADDED
@@ -0,0 +1,111 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: actioninsight
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- nejdetkadir
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2023-08-08 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: 6.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: 6.0.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: zeitwerk
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '2.6'
|
34
|
+
- - ">="
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: 2.6.11
|
37
|
+
type: :runtime
|
38
|
+
prerelease: false
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - "~>"
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '2.6'
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: 2.6.11
|
47
|
+
description: ActionInsight is a robust analysis and error management package tailored
|
48
|
+
for the Ruby on Rails ecosystem. Developed with the intent of enhancing web application
|
49
|
+
performance and reliability, ActionInsight tracks the components operating in the
|
50
|
+
background of your application, analyzes processes over time, and aggregates performance
|
51
|
+
metrics. Additionally, it captures error situations and provides advanced tools
|
52
|
+
for error analysis. By considering not only user interactions but also the internal
|
53
|
+
mechanics of the application, from database queries to background tasks, it facilitates
|
54
|
+
a comprehensive examination. Through customizable alerts and notifications, it offers
|
55
|
+
developers real-time feedback and aids in preemptively identifying potential issues.
|
56
|
+
ActionInsight streamlines the development process, assisting in creating more efficient,
|
57
|
+
swift, and dependable web applications.
|
58
|
+
email:
|
59
|
+
- nejdetkadir.550@gmail.com
|
60
|
+
executables: []
|
61
|
+
extensions: []
|
62
|
+
extra_rdoc_files: []
|
63
|
+
files:
|
64
|
+
- LICENSE
|
65
|
+
- README.md
|
66
|
+
- Rakefile
|
67
|
+
- app/assets/config/action_insight_manifest.js
|
68
|
+
- app/assets/stylesheets/action_insight/application.css
|
69
|
+
- app/controllers/action_insight/application_controller.rb
|
70
|
+
- app/helpers/action_insight/application_helper.rb
|
71
|
+
- app/jobs/action_insight/application_job.rb
|
72
|
+
- app/mailers/action_insight/application_mailer.rb
|
73
|
+
- app/models/action_insight/application_record.rb
|
74
|
+
- app/views/layouts/action_insight/application.html.erb
|
75
|
+
- config/routes.rb
|
76
|
+
- lib/action_insight.rb
|
77
|
+
- lib/action_insight/engine.rb
|
78
|
+
- lib/action_insight/version.rb
|
79
|
+
- lib/tasks/action_insight_tasks.rake
|
80
|
+
homepage: https://github.com/nejdetkadir/actioninsight
|
81
|
+
licenses:
|
82
|
+
- MIT
|
83
|
+
metadata:
|
84
|
+
homepage_uri: https://github.com/nejdetkadir/actioninsight
|
85
|
+
source_code_uri: https://github.com/nejdetkadir/actioninsight
|
86
|
+
post_install_message:
|
87
|
+
rdoc_options: []
|
88
|
+
require_paths:
|
89
|
+
- lib
|
90
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - ">="
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: 3.0.0
|
95
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
96
|
+
requirements:
|
97
|
+
- - ">="
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '0'
|
100
|
+
requirements: []
|
101
|
+
rubygems_version: 3.4.12
|
102
|
+
signing_key:
|
103
|
+
specification_version: 4
|
104
|
+
summary: ActionInsight is a Ruby on Rails package designed for performance analysis
|
105
|
+
and error management of web applications. This package tracks background processes,
|
106
|
+
collects performance metrics, and captures error situations. Going beyond user interactions,
|
107
|
+
ActionInsight aims to delve into the inner workings of applications, enabling examination
|
108
|
+
and optimization. With extensive data collection capabilities and customizable alert
|
109
|
+
mechanisms, ActionInsight empowers developers to make their applications more efficient
|
110
|
+
and reliable.
|
111
|
+
test_files: []
|