appmap 0.83.3 → 0.83.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/appmap.gemspec +2 -1
- data/lib/appmap/version.rb +1 -1
- metadata +2 -6
- data/spec/fixtures/depends/revoke_api_key.appmap.json +0 -901
- data/spec/fixtures/depends/user_page_scenario.appmap.json +0 -1776
- data/spec/fixtures/hook/revoke_api_key.appmap.json +0 -847
- data/spec/fixtures/hook/user_page_scenario.appmap.json +0 -1722
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fc72653227c79221b4461962b65a221a454c63b564dc713b97ae6c9bb7724e94
|
4
|
+
data.tar.gz: df9594b7e3043183d9ddec1ad9c7e767aa72b8b60a4c7923a030f51dffb2a7ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ac66c69ecb0564856a2ea6eebc0c9d81e7e78c583cb7cb33a271d51969c15985b1335eb5e2d7ae4c348f0dfada0ff7ae3e7f7df45fa53eae8e99b945e0e32a3b
|
7
|
+
data.tar.gz: 2173330d318f11cc5577c997516414809cd4fa27c0121592f9b6041d7b2eb27b12bc1e7aa3ab19dadf6a26afff255c484ad019bb61502f40813a14553e805dfd
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
## [0.83.4](https://github.com/applandinc/appmap-ruby/compare/v0.83.3...v0.83.4) (2022-06-22)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* Exclude AppMaps from the gem when packaging ([a0634f0](https://github.com/applandinc/appmap-ruby/commit/a0634f07db264daf51c6192b74ccbc08664ccac6))
|
7
|
+
|
1
8
|
## [0.83.3](https://github.com/applandinc/appmap-ruby/compare/v0.83.2...v0.83.3) (2022-06-03)
|
2
9
|
|
3
10
|
|
data/appmap.gemspec
CHANGED
@@ -19,7 +19,8 @@ Gem::Specification.new do |spec|
|
|
19
19
|
# Specify which files should be added to the gem when it is released.
|
20
20
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
21
21
|
spec.files = `git ls-files --no-deleted`.split("
|
22
|
-
")
|
22
|
+
").grep_v(/appmap\.json$/)
|
23
|
+
|
23
24
|
spec.bindir = 'exe'
|
24
25
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
25
26
|
|
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: 0.83.
|
4
|
+
version: 0.83.4
|
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-06-
|
11
|
+
date: 2022-06-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -447,12 +447,10 @@ files:
|
|
447
447
|
- spec/fixtures/depends/app/models/configuration.rb
|
448
448
|
- spec/fixtures/depends/app/models/show.rb
|
449
449
|
- spec/fixtures/depends/app/models/user.rb
|
450
|
-
- spec/fixtures/depends/revoke_api_key.appmap.json
|
451
450
|
- spec/fixtures/depends/spec/actual_rspec_test.rb
|
452
451
|
- spec/fixtures/depends/spec/api_spec.rb
|
453
452
|
- spec/fixtures/depends/spec/user_spec.rb
|
454
453
|
- spec/fixtures/depends/test/actual_minitest_test.rb
|
455
|
-
- spec/fixtures/depends/user_page_scenario.appmap.json
|
456
454
|
- spec/fixtures/hook/.gitignore
|
457
455
|
- spec/fixtures/hook/app/controllers/api/api_keys_controller.rb
|
458
456
|
- spec/fixtures/hook/app/controllers/organizations_controller.rb
|
@@ -474,12 +472,10 @@ files:
|
|
474
472
|
- spec/fixtures/hook/prepended_override.rb
|
475
473
|
- spec/fixtures/hook/protected_method.rb
|
476
474
|
- spec/fixtures/hook/report_parameters.rb
|
477
|
-
- spec/fixtures/hook/revoke_api_key.appmap.json
|
478
475
|
- spec/fixtures/hook/singleton_method.rb
|
479
476
|
- spec/fixtures/hook/spec/api_spec.rb
|
480
477
|
- spec/fixtures/hook/spec/user_spec.rb
|
481
478
|
- spec/fixtures/hook/sub_packages.rb
|
482
|
-
- spec/fixtures/hook/user_page_scenario.appmap.json
|
483
479
|
- spec/fixtures/rack_users_app/.dockerignore
|
484
480
|
- spec/fixtures/rack_users_app/.gitignore
|
485
481
|
- spec/fixtures/rack_users_app/Gemfile
|