n_plus_insight 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/CHANGELOG.md +8 -2
- data/LICENSE.txt +1 -1
- data/README.md +338 -41
- data/app/assets/n_plus_insight/overlay.css +11 -3
- data/app/assets/n_plus_insight/overlay.js +91 -15
- data/app/controllers/n_plus_insight/application_controller.rb +0 -0
- data/app/controllers/n_plus_insight/assets_controller.rb +0 -0
- data/app/controllers/n_plus_insight/detections_controller.rb +5 -0
- data/app/views/layouts/n_plus_insight/application.html.erb +21 -4
- data/app/views/n_plus_insight/detections/index.html.erb +17 -5
- data/app/views/n_plus_insight/detections/show.html.erb +44 -19
- data/config/routes.rb +1 -0
- data/docs/images/full-dashboard.png +0 -0
- data/docs/images/on-page-alert.png +0 -0
- data/docs/images/on-page-popout-modeled.png +0 -0
- data/lib/n_plus_insight/analyzer.rb +182 -34
- data/lib/n_plus_insight/configuration.rb +0 -0
- data/lib/n_plus_insight/current.rb +0 -0
- data/lib/n_plus_insight/detection.rb +2 -1
- data/lib/n_plus_insight/engine.rb +0 -0
- data/lib/n_plus_insight/middleware.rb +0 -0
- data/lib/n_plus_insight/overlay.rb +2 -0
- data/lib/n_plus_insight/query.rb +0 -0
- data/lib/n_plus_insight/source_location.rb +0 -0
- data/lib/n_plus_insight/store.rb +0 -0
- data/lib/n_plus_insight/subscriber.rb +0 -0
- data/lib/n_plus_insight/version.rb +1 -1
- data/lib/n_plus_insight.rb +0 -0
- metadata +17 -12
- data/RELEASING.md +0 -47
data/RELEASING.md
DELETED
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
# Releasing NPlusInsight
|
|
2
|
-
|
|
3
|
-
## First release
|
|
4
|
-
|
|
5
|
-
1. Create or sign in to your account at https://rubygems.org.
|
|
6
|
-
2. Enable MFA for the account.
|
|
7
|
-
3. Confirm that `n_plus_insight` is still available:
|
|
8
|
-
|
|
9
|
-
```sh
|
|
10
|
-
gem search --remote --exact n_plus_insight
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
No output means there is no published gem with that exact name.
|
|
14
|
-
|
|
15
|
-
4. Authenticate without putting an API key in the repository:
|
|
16
|
-
|
|
17
|
-
```sh
|
|
18
|
-
gem signin
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
5. Run the tests and build the package:
|
|
22
|
-
|
|
23
|
-
```sh
|
|
24
|
-
bundle install
|
|
25
|
-
bundle exec rake test
|
|
26
|
-
bundle exec rake build
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
6. Publish the built package:
|
|
30
|
-
|
|
31
|
-
```sh
|
|
32
|
-
gem push pkg/n_plus_insight-0.1.0.gem
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
7. Verify the release:
|
|
36
|
-
|
|
37
|
-
```sh
|
|
38
|
-
gem info n_plus_insight --remote
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
## Later releases
|
|
42
|
-
|
|
43
|
-
Update `NPlusInsight::VERSION` in `lib/n_plus_insight/version.rb`, add the
|
|
44
|
-
release notes to `CHANGELOG.md`, rerun the tests, build, and push the new
|
|
45
|
-
version. RubyGems does not allow replacing an existing version.
|
|
46
|
-
|
|
47
|
-
Never commit `.gem/credentials`, an API key, or an OTP recovery code.
|