appmap 1.1.0 → 1.1.1
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/.travis.yml +0 -2
- data/CHANGELOG.md +7 -0
- data/lib/appmap/handler/rails/request_handler.rb +3 -1
- data/lib/appmap/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f5d260b017a2176b96a916c243f8264b82d0472cede76a50135bca126d6137c7
|
|
4
|
+
data.tar.gz: bd15866c48645e0af3b3467127d1572a334f6844621cd5d0869129ec12b9cd6d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f36a622fc19d61291f3989f7b2505dd206a9f2304825c495694d524653cb0def70fd1524fbb29b3f892a57a2bf373b5f0a2ec9b33d730b95b705fee15a528f64
|
|
7
|
+
data.tar.gz: dab35c68e719ed5995aabd7a5d0e216f70b4bfbf72dad35562b102727342b488f6407921b99b687b7f8164c702f6fe46e5929b079de752a20702e84ab9dabda6
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.1.1](https://github.com/getappmap/appmap-ruby/compare/v1.1.0...v1.1.1) (2024-12-13)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Handle rack apps without engine? method in Rails ([7e9d3a0](https://github.com/getappmap/appmap-ruby/commit/7e9d3a0e7c7aa6a9a8e8c7da04a97122b3952bce))
|
|
7
|
+
|
|
1
8
|
# [1.1.0](https://github.com/getappmap/appmap-ruby/compare/v1.0.1...v1.1.0) (2024-05-22)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -66,7 +66,9 @@ module AppMap
|
|
|
66
66
|
|
|
67
67
|
next unless Rails.test_route(app, request)
|
|
68
68
|
|
|
69
|
-
|
|
69
|
+
if app.respond_to?(:engine?) && app.engine?
|
|
70
|
+
return normalized_path request, app.rack_app.routes.router
|
|
71
|
+
end
|
|
70
72
|
|
|
71
73
|
return AppMap::Util.swaggerize_path(route.path.spec.to_s)
|
|
72
74
|
end
|
data/lib/appmap/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appmap
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kevin Gilpin
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-12-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: method_source
|
|
@@ -452,7 +452,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
452
452
|
- !ruby/object:Gem::Version
|
|
453
453
|
version: '0'
|
|
454
454
|
requirements: []
|
|
455
|
-
rubygems_version: 3.
|
|
455
|
+
rubygems_version: 3.5.16
|
|
456
456
|
signing_key:
|
|
457
457
|
specification_version: 4
|
|
458
458
|
summary: Record the operation of a Ruby program, using the AppLand 'AppMap' format.
|