appmap 0.95.1 → 0.96.0

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: '097f96c8d929329dfaca50fcfca01f5328ca883750e68105ad67a9c2dcfc682d'
4
- data.tar.gz: 52f7f9fc9eacb747dda7fe3c6c8c159c93ffea33898b5e7bbb5777babd5c2472
3
+ metadata.gz: 61981b3f49d81c6fdcda62cf208337616384071296374168ec44cf823bc4fcf1
4
+ data.tar.gz: c6d86f477f4dd2dc4832963d84f0985c90d474b2428a5a511e5726ba34d7b0bc
5
5
  SHA512:
6
- metadata.gz: 9fc3c30f6eb7516e434682b759b06e6f77130c10fe4cd40bce1d1dfba8c91946b8923d3dd757b9723cd33b6b6e5a36ce55e6930d9a983f07cb36e1b3d54208ae
7
- data.tar.gz: c5688f98106a05c3faecfd2cd2b58efe484291a3134b965ed650219023e312c11c941de032112a72a32d68716d83afadee0388a0cd446b2dbe8bcc9c22073bf1
6
+ metadata.gz: c5f54cd66a79510f13e1cbf1ed8db3b634bac1b15b5bfd371433caa3cf7b1bcbe46e4ee9d18b38823596cddd754f461c0db88b18978e5a1410f37fdea5a460d0
7
+ data.tar.gz: 5cc2ec60a06b35f34e72ca19aba2fe34e0a89727aed0acb167d04c22d2a98f73787ccbb089bff76bc4439fcfef94b3e3ef508e73c459350797aee7f7fea8df14
data/.travis.yml CHANGED
@@ -13,6 +13,7 @@ rvm:
13
13
  - 2.7.6
14
14
  - 3.0.1 # doesn't show in pre-installed list
15
15
  - 3.1.2
16
+ - 3.2.0
16
17
 
17
18
  addons:
18
19
  postgresql: "13"
data/CHANGELOG.md CHANGED
@@ -1,3 +1,22 @@
1
+ # [0.96.0](https://github.com/getappmap/appmap-ruby/compare/v0.95.2...v0.96.0) (2023-02-01)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Dir.exists? and File.exists? don't exist in Ruby 3.2 ([2879b06](https://github.com/getappmap/appmap-ruby/commit/2879b06a0bfe68e178afc0f2ba1d9320100b7b7a))
7
+
8
+
9
+ ### Features
10
+
11
+ * Accept ruby 3.2 ([2326a88](https://github.com/getappmap/appmap-ruby/commit/2326a8876ad093b699eb909f43dc885ada98bab9))
12
+
13
+ ## [0.95.2](https://github.com/getappmap/appmap-ruby/compare/v0.95.1...v0.95.2) (2023-01-27)
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * wrap_example_block passes example ([810f603](https://github.com/getappmap/appmap-ruby/commit/810f6036535348f27a9e084df99c86af50087b0d))
19
+
1
20
  ## [0.95.1](https://github.com/getappmap/appmap-ruby/compare/v0.95.0...v0.95.1) (2023-01-26)
2
21
 
3
22
 
data/lib/appmap/config.rb CHANGED
@@ -357,7 +357,7 @@ module AppMap
357
357
  unless config_present
358
358
  warn Util.color(YAML.dump(config_yaml), :magenta)
359
359
  dirname = Pathname.new(config_file_name).dirname.expand_path
360
- if Dir.exists?(dirname) && File.writable?(dirname)
360
+ if Dir.exist?(dirname) && File.writable?(dirname)
361
361
  warn Util.color(<<~CONFIG_FILE_MSG, :magenta)
362
362
  This file will be saved to #{Pathname.new(config_file_name).expand_path},
363
363
  where you can customize it.
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
@@ -3,11 +3,11 @@
3
3
  module AppMap
4
4
  URL = 'https://github.com/applandinc/appmap-ruby'
5
5
 
6
- VERSION = '0.95.1'
6
+ VERSION = '0.96.0'
7
7
 
8
8
  APPMAP_FORMAT_VERSION = '1.10.0'
9
9
 
10
- SUPPORTED_RUBY_VERSIONS = %w[2.5 2.6 2.7 3.0 3.1].freeze
10
+ SUPPORTED_RUBY_VERSIONS = %w[2.5 2.6 2.7 3.0 3.1 3.2].freeze
11
11
 
12
12
  DEFAULT_APPMAP_DIR = 'tmp/appmap'.freeze
13
13
  DEFAULT_CONFIG_FILE_PATH = 'appmap.yml'.freeze
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.1
4
+ version: 0.96.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Gilpin
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-01-26 00:00:00.000000000 Z
11
+ date: 2023-02-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: method_source