appmap 0.95.2 → 0.96.0

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: 177a2a689dc20a9be5f4d893ed1810d6aba418aae54509dcb15a755b355f969b
4
- data.tar.gz: c1ade759825520b4a538e03f4ec3b4a7c83d4e63770477863d8c9a09d5d50217
3
+ metadata.gz: 61981b3f49d81c6fdcda62cf208337616384071296374168ec44cf823bc4fcf1
4
+ data.tar.gz: c6d86f477f4dd2dc4832963d84f0985c90d474b2428a5a511e5726ba34d7b0bc
5
5
  SHA512:
6
- metadata.gz: 780bc1e5ad75545f395f6f0e5d323daec048eed9c359d4e30535515a96e66715268ee9943d1e19274c80dc9fc468186ec223da85923a71d41a6e31124acc0891
7
- data.tar.gz: bb0da3d36faafbb5ac8be2f968b78c2765752ed6d3f2dda2fddf18cb4d941ae1e1ddaa8e0327858e649a91c3b44d719e20210de7f812ab341da34e6224193307
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,15 @@
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
+
1
13
  ## [0.95.2](https://github.com/getappmap/appmap-ruby/compare/v0.95.1...v0.95.2) (2023-01-27)
2
14
 
3
15
 
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.
@@ -3,11 +3,11 @@
3
3
  module AppMap
4
4
  URL = 'https://github.com/applandinc/appmap-ruby'
5
5
 
6
- VERSION = '0.95.2'
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.2
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-27 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