appmap 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 36058179944b8777d34f8fec3e4f6cd80f60d43a8b74a3c8ad4eeda58d503649
4
- data.tar.gz: 739f7127f4a2af7dfb7655ba24fa08343cd22dfd1e09d225f6d5737808a30e4a
3
+ metadata.gz: f5d260b017a2176b96a916c243f8264b82d0472cede76a50135bca126d6137c7
4
+ data.tar.gz: bd15866c48645e0af3b3467127d1572a334f6844621cd5d0869129ec12b9cd6d
5
5
  SHA512:
6
- metadata.gz: a1874ff35b12f009623e6c00e2ba06a2a6a92ae95874ae57991375d764c0cc09f32f2aa77e6c7608d5e3c0398417cc807250397e77151aa9c7c5315a9915c82c
7
- data.tar.gz: 3a79e6e01ebbc065c618a8f551c97ff26a5a7350d29003471b0be88828b523352c4b6204b2caf54035efb2923ded2721534fa8e5badac20a97bc992effa162bc
6
+ metadata.gz: f36a622fc19d61291f3989f7b2505dd206a9f2304825c495694d524653cb0def70fd1524fbb29b3f892a57a2bf373b5f0a2ec9b33d730b95b705fee15a528f64
7
+ data.tar.gz: dab35c68e719ed5995aabd7a5d0e216f70b4bfbf72dad35562b102727342b488f6407921b99b687b7f8164c702f6fe46e5929b079de752a20702e84ab9dabda6
data/.travis.yml CHANGED
@@ -9,8 +9,6 @@ cache:
9
9
  # section called "Pre-installed Ruby versions". Use versions from
10
10
  # that list to not install rvm and ruby each time.
11
11
  rvm:
12
- - 2.6.9
13
- - 2.7.5
14
12
  - 3.0.1 # doesn't show in pre-installed list
15
13
  - 3.1.2
16
14
  - 3.2.0
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
- return normalized_path request, app.rack_app.routes.router if app.engine?
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
@@ -3,7 +3,7 @@
3
3
  module AppMap
4
4
  URL = 'https://github.com/applandinc/appmap-ruby'
5
5
 
6
- VERSION = '1.1.0'
6
+ VERSION = '1.1.1'
7
7
 
8
8
  APPMAP_FORMAT_VERSION = '1.12.0'
9
9
 
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.0
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-05-22 00:00:00.000000000 Z
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.1.6
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.