appmap 0.95.0 → 0.95.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a3f036b61b1750e2820f676694a15af9461404dc9b8f048add0b9b7291dd1d4a
4
- data.tar.gz: f40f6587ecbf21c250952b1ecfc51349d6ad3cf53276d6cf30d9a97f859295b2
3
+ metadata.gz: 177a2a689dc20a9be5f4d893ed1810d6aba418aae54509dcb15a755b355f969b
4
+ data.tar.gz: c1ade759825520b4a538e03f4ec3b4a7c83d4e63770477863d8c9a09d5d50217
5
5
  SHA512:
6
- metadata.gz: bd45853f98e82f90b6885b615931f73b125a5194041221c0bf9f21b41ab1f2285489ef3b7e1915905b41e434e65d607eebdf232d53a6bc1e1b75f516f73d2222
7
- data.tar.gz: 3465e8521239b8eadc1145e06847bb454a1f6b43ef0adf6ed50f8d2fb6eccb63ac79a86b913628db7344b10c8b68980dd6c3aa5ac9741eac4bfef6b39d109a76
6
+ metadata.gz: 780bc1e5ad75545f395f6f0e5d323daec048eed9c359d4e30535515a96e66715268ee9943d1e19274c80dc9fc468186ec223da85923a71d41a6e31124acc0891
7
+ data.tar.gz: bb0da3d36faafbb5ac8be2f968b78c2765752ed6d3f2dda2fddf18cb4d941ae1e1ddaa8e0327858e649a91c3b44d719e20210de7f812ab341da34e6224193307
data/.travis.yml CHANGED
@@ -1,21 +1,28 @@
1
1
  language: ruby
2
- dist: bionic
2
+ dist: focal
3
3
  cache:
4
4
  - bundle
5
5
  - yarn
6
6
 
7
- rbenv:
8
- - 2.6
9
- - 2.7
10
- - 3.0
11
- - 3.1
7
+ # Travis pre-installs some Ruby versions. You can see the current list
8
+ # by clicking on "Build system information" on line 7 which reveals a
9
+ # section called "Pre-installed Ruby versions". Use versions from
10
+ # that list to not install rvm and ruby each time.
11
+ rvm:
12
+ - 2.6.9
13
+ - 2.7.6
14
+ - 3.0.1 # doesn't show in pre-installed list
15
+ - 3.1.2
12
16
 
13
- node_js: lts/*
14
-
15
- services:
16
- - postgresql
17
+ addons:
18
+ postgresql: "13"
19
+ apt:
20
+ packages:
21
+ - postgresql-13
22
+ - postgresql-client-13
17
23
 
18
24
  before_deploy:
25
+ - nvm install lts/*
19
26
  - |
20
27
  npm i -g \
21
28
  semantic-release \
@@ -28,4 +35,4 @@ deploy:
28
35
  script: ./release.sh
29
36
  on:
30
37
  branch: master
31
- condition: "$TRAVIS_RUBY_VERSION = 3.0"
38
+ condition: "$TRAVIS_RUBY_VERSION =~ ^3.0"
data/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [0.95.2](https://github.com/getappmap/appmap-ruby/compare/v0.95.1...v0.95.2) (2023-01-27)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * wrap_example_block passes example ([810f603](https://github.com/getappmap/appmap-ruby/commit/810f6036535348f27a9e084df99c86af50087b0d))
7
+
8
+ ## [0.95.1](https://github.com/getappmap/appmap-ruby/compare/v0.95.0...v0.95.1) (2023-01-26)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Don't match ending ) in swaggerize_path ([4bba178](https://github.com/getappmap/appmap-ruby/commit/4bba178e13b95274f590f07a9df8e529c0d1f836))
14
+
1
15
  # [0.95.0](https://github.com/getappmap/appmap-ruby/compare/v0.94.1...v0.95.0) (2022-12-15)
2
16
 
3
17
 
data/lib/appmap/rspec.rb CHANGED
@@ -238,7 +238,7 @@ if AppMap::RSpec.enabled?
238
238
  proc do
239
239
  AppMap::RSpec.begin_spec example
240
240
  begin
241
- instance_exec(&fn)
241
+ instance_exec(example, &fn)
242
242
  ensure
243
243
  AppMap::RSpec.end_spec example, exception: $!
244
244
  end
data/lib/appmap/util.rb CHANGED
@@ -152,7 +152,8 @@ module AppMap
152
152
  path = path.split('(.')[0]
153
153
  tokens = path.split('/')
154
154
  tokens.map do |token|
155
- token.gsub(/^:(.*)/, '{\1}')
155
+ # stop matching if an ending ) is found
156
+ token.gsub(/^:(.*[^\)])/, '{\1}')
156
157
  end.join('/')
157
158
  end
158
159
 
@@ -3,7 +3,7 @@
3
3
  module AppMap
4
4
  URL = 'https://github.com/applandinc/appmap-ruby'
5
5
 
6
- VERSION = '0.95.0'
6
+ VERSION = '0.95.2'
7
7
 
8
8
  APPMAP_FORMAT_VERSION = '1.10.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: 0.95.0
4
+ version: 0.95.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Gilpin
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-12-15 00:00:00.000000000 Z
11
+ date: 2023-01-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: method_source
@@ -356,7 +356,7 @@ files:
356
356
  - ext/appmap/extconf.rb
357
357
  - lib/appmap.rb
358
358
  - lib/appmap/agent.rb
359
- - lib/appmap/builtin_hooks/active_support.yml
359
+ - lib/appmap/builtin_hooks/activesupport.yml
360
360
  - lib/appmap/builtin_hooks/json.yml
361
361
  - lib/appmap/builtin_hooks/logger.yml
362
362
  - lib/appmap/builtin_hooks/net/http.yml