appmap 0.49.0 → 0.51.3

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.
Files changed (50) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +45 -0
  3. data/appmap.gemspec +3 -0
  4. data/exe/appmap-agent-setup +47 -0
  5. data/lib/appmap.rb +74 -7
  6. data/lib/appmap/command/init.rb +42 -0
  7. data/lib/appmap/config.rb +94 -28
  8. data/lib/appmap/handler/rails/template.rb +19 -5
  9. data/lib/appmap/minitest.rb +8 -2
  10. data/lib/appmap/railtie.rb +7 -0
  11. data/lib/appmap/rspec.rb +8 -2
  12. data/lib/appmap/service/guesser.rb +26 -0
  13. data/lib/appmap/trace.rb +4 -2
  14. data/lib/appmap/util.rb +21 -0
  15. data/lib/appmap/version.rb +4 -1
  16. data/spec/abstract_controller_base_spec.rb +57 -18
  17. data/spec/config_spec.rb +21 -0
  18. data/spec/fixtures/rails5_users_app/config/application.rb +0 -8
  19. data/spec/fixtures/rails5_users_app/spec/rails_helper.rb +0 -2
  20. data/spec/fixtures/rails6_users_app/config/application.rb +0 -8
  21. data/spec/fixtures/rails6_users_app/spec/rails_helper.rb +0 -2
  22. data/spec/hook_spec.rb +2 -2
  23. data/spec/record_net_http_spec.rb +1 -1
  24. data/test/cli_test.rb +37 -0
  25. metadata +9 -29
  26. data/lib/appmap/algorithm/prune_class_map.rb +0 -67
  27. data/lib/appmap/algorithm/stats.rb +0 -91
  28. data/lib/appmap/command/record.rb +0 -38
  29. data/lib/appmap/command/stats.rb +0 -14
  30. data/lore/pages/2019-05-21-install-and-record/index.pug +0 -51
  31. data/lore/pages/2019-05-21-install-and-record/install_example_appmap.png +0 -0
  32. data/lore/pages/2019-05-21-install-and-record/metadata.yml +0 -5
  33. data/lore/pages/layout.pug +0 -66
  34. data/lore/public/lib/bootstrap-4.1.3/css/bootstrap-grid.css +0 -1912
  35. data/lore/public/lib/bootstrap-4.1.3/css/bootstrap-grid.css.map +0 -1
  36. data/lore/public/lib/bootstrap-4.1.3/css/bootstrap-grid.min.css +0 -7
  37. data/lore/public/lib/bootstrap-4.1.3/css/bootstrap-grid.min.css.map +0 -1
  38. data/lore/public/lib/bootstrap-4.1.3/css/bootstrap-reboot.css +0 -331
  39. data/lore/public/lib/bootstrap-4.1.3/css/bootstrap-reboot.css.map +0 -1
  40. data/lore/public/lib/bootstrap-4.1.3/css/bootstrap-reboot.min.css +0 -8
  41. data/lore/public/lib/bootstrap-4.1.3/css/bootstrap-reboot.min.css.map +0 -1
  42. data/lore/public/lib/bootstrap-4.1.3/css/bootstrap.css +0 -9030
  43. data/lore/public/lib/bootstrap-4.1.3/css/bootstrap.css.map +0 -1
  44. data/lore/public/lib/bootstrap-4.1.3/css/bootstrap.min.css +0 -7
  45. data/lore/public/lib/bootstrap-4.1.3/css/bootstrap.min.css.map +0 -1
  46. data/lore/public/stylesheets/style.css +0 -8
  47. data/package-lock.json +0 -1064
  48. data/package.json +0 -24
  49. data/spec/fixtures/rails5_users_app/config/initializers/record_button.rb +0 -3
  50. data/spec/fixtures/rails6_users_app/config/initializers/record_button.rb +0 -3
@@ -54,15 +54,21 @@ module AppMap
54
54
 
55
55
  @recordings_by_test = {}
56
56
  @event_methods = Set.new
57
+ @recording_count = 0
57
58
 
58
59
  class << self
59
60
  def init
60
- warn 'Configuring AppMap recorder for Minitest'
61
-
62
61
  FileUtils.mkdir_p APPMAP_OUTPUT_DIR
63
62
  end
64
63
 
64
+ def first_recording?
65
+ @recording_count == 0
66
+ end
67
+
65
68
  def begin_test(test, name)
69
+ AppMap.info 'Configuring AppMap recorder for Minitest' if first_recording?
70
+ @recording_count += 1
71
+
66
72
  @recordings_by_test[test.object_id] = Recording.new(test, name)
67
73
  end
68
74
 
@@ -3,6 +3,13 @@
3
3
  module AppMap
4
4
  # Railtie connects the AppMap recorder to Rails-specific features.
5
5
  class Railtie < ::Rails::Railtie
6
+ initializer 'appmap.remote_recording' do
7
+ require 'appmap/middleware/remote_recording'
8
+ Rails.application.config.middleware.insert_after \
9
+ Rails::Rack::Logger,
10
+ AppMap::Middleware::RemoteRecording
11
+ end
12
+
6
13
  # appmap.subscribe subscribes to ActiveSupport Notifications so that they can be recorded as
7
14
  # AppMap events.
8
15
  initializer 'appmap.subscribe' do |_| # params: app
data/lib/appmap/rspec.rb CHANGED
@@ -139,15 +139,21 @@ module AppMap
139
139
 
140
140
  @recordings_by_example = {}
141
141
  @event_methods = Set.new
142
+ @recording_count = 0
142
143
 
143
144
  class << self
144
145
  def init
145
- warn 'Configuring AppMap recorder for RSpec'
146
-
147
146
  FileUtils.mkdir_p APPMAP_OUTPUT_DIR
148
147
  end
149
148
 
149
+ def first_recording?
150
+ @recording_count == 0
151
+ end
152
+
150
153
  def begin_spec(example)
154
+ AppMap.info 'Configuring AppMap recorder for RSpec' if first_recording?
155
+ @recording_count += 1
156
+
151
157
  @recordings_by_example[example.object_id] = Recording.new(example)
152
158
  end
153
159
 
@@ -0,0 +1,26 @@
1
+ # frozen_string_literal: true
2
+
3
+ module AppMap
4
+ module Service
5
+ class Guesser
6
+ POSSIBLE_PATHS = %w[app/controllers app/models lib]
7
+ class << self
8
+ def guess_name
9
+ reponame = lambda do
10
+ next unless File.directory?('.git')
11
+
12
+ repo_name = `git config --get remote.origin.url`.strip
13
+ repo_name.split('/').last.split('.').first unless repo_name == ''
14
+ end
15
+ dirname = -> { Dir.pwd.split('/').last }
16
+
17
+ reponame.() || dirname.()
18
+ end
19
+
20
+ def guess_paths
21
+ POSSIBLE_PATHS.select { |path| File.directory?(path) }
22
+ end
23
+ end
24
+ end
25
+ end
26
+ end
data/lib/appmap/trace.rb CHANGED
@@ -2,10 +2,12 @@
2
2
 
3
3
  module AppMap
4
4
  module Trace
5
- class RubyMethod
5
+ class RubyMethod < SimpleDelegator
6
6
  attr_reader :class_name, :static
7
7
 
8
8
  def initialize(package, class_name, method, static)
9
+ super(method)
10
+
9
11
  @package = package
10
12
  @class_name = class_name
11
13
  @method = method
@@ -111,7 +113,7 @@ module AppMap
111
113
  @last_package_for_thread[Thread.current.object_id] = package if package
112
114
  @events << event
113
115
  static = event.static if event.respond_to?(:static)
114
- @methods << Trace::RubyMethod.new(package, defined_class, method, static) \
116
+ record_method Trace::RubyMethod.new(package, defined_class, method, static) \
115
117
  if package && defined_class && method && (event.event == :call)
116
118
  end
117
119
 
data/lib/appmap/util.rb CHANGED
@@ -4,6 +4,21 @@ require 'bundler'
4
4
 
5
5
  module AppMap
6
6
  module Util
7
+ # https://wynnnetherland.com/journal/a-stylesheet-author-s-guide-to-terminal-colors/
8
+ # Embed in a String to clear all previous ANSI sequences.
9
+ CLEAR = "\e[0m"
10
+ BOLD = "\e[1m"
11
+
12
+ # Colors
13
+ BLACK = "\e[30m"
14
+ RED = "\e[31m"
15
+ GREEN = "\e[32m"
16
+ YELLOW = "\e[33m"
17
+ BLUE = "\e[34m"
18
+ MAGENTA = "\e[35m"
19
+ CYAN = "\e[36m"
20
+ WHITE = "\e[37m"
21
+
7
22
  class << self
8
23
  # scenario_filename builds a suitable file name from a scenario name.
9
24
  # Special characters are removed, and the file name is truncated to fit within
@@ -128,6 +143,12 @@ module AppMap
128
143
  FileUtils.mv tempfile.path, filename
129
144
  end
130
145
  end
146
+
147
+ def color(text, color, bold: false)
148
+ color = Util.const_get(color.to_s.upcase) if color.is_a?(Symbol)
149
+ bold = bold ? BOLD : ""
150
+ "#{bold}#{color}#{text}#{CLEAR}"
151
+ end
131
152
  end
132
153
  end
133
154
  end
@@ -3,7 +3,10 @@
3
3
  module AppMap
4
4
  URL = 'https://github.com/applandinc/appmap-ruby'
5
5
 
6
- VERSION = '0.49.0'
6
+ VERSION = '0.51.3'
7
7
 
8
8
  APPMAP_FORMAT_VERSION = '1.5.1'
9
+
10
+ DEFAULT_APPMAP_DIR = 'tmp/appmap'.freeze
11
+ DEFAULT_CONFIG_FILE_PATH = 'appmap.yml'.freeze
9
12
  end
@@ -1,9 +1,30 @@
1
1
  require 'rails_spec_helper'
2
2
 
3
3
  describe 'Rails' do
4
+ shared_context 'rails integration test setup' do
5
+ def tmpdir
6
+ 'tmp/spec/AbstractControllerBase'
7
+ end
8
+
9
+ unless use_existing_data?
10
+ before(:all) do
11
+ FileUtils.rm_rf tmpdir
12
+ FileUtils.mkdir_p tmpdir
13
+ run_spec 'spec/controllers/users_controller_spec.rb'
14
+ run_spec 'spec/controllers/users_controller_api_spec.rb'
15
+ end
16
+ end
17
+
18
+ let(:appmap) { JSON.parse File.read File.join tmpdir, 'appmap/rspec', appmap_json_file }
19
+ let(:appmap_json_path) { File.join(tmpdir, 'appmap/rspec', appmap_json_file) }
20
+ let(:appmap) { JSON.parse File.read(appmap_json_path) }
21
+ let(:events) { appmap['events'] }
22
+ end
23
+
4
24
  %w[5 6].each do |rails_major_version| # rubocop:disable Metrics/BlockLength
5
25
  context "#{rails_major_version}" do
6
26
  include_context 'Rails app pg database', "spec/fixtures/rails#{rails_major_version}_users_app" unless use_existing_data?
27
+ include_context 'rails integration test setup'
7
28
 
8
29
  def run_spec(spec_name)
9
30
  cmd = <<~CMD.gsub "\n", ' '
@@ -13,24 +34,6 @@ describe 'Rails' do
13
34
  run_cmd cmd, chdir: fixture_dir
14
35
  end
15
36
 
16
- def tmpdir
17
- 'tmp/spec/AbstractControllerBase'
18
- end
19
-
20
- unless use_existing_data?
21
- before(:all) do
22
- FileUtils.rm_rf tmpdir
23
- FileUtils.mkdir_p tmpdir
24
- run_spec 'spec/controllers/users_controller_spec.rb'
25
- run_spec 'spec/controllers/users_controller_api_spec.rb'
26
- end
27
- end
28
-
29
- let(:appmap) { JSON.parse File.read File.join tmpdir, 'appmap/rspec', appmap_json_file }
30
- let(:appmap_json_path) { File.join(tmpdir, 'appmap/rspec', appmap_json_file) }
31
- let(:appmap) { JSON.parse File.read(appmap_json_path) }
32
- let(:events) { appmap['events'] }
33
-
34
37
  describe 'an API route' do
35
38
  describe 'creating an object' do
36
39
  let(:appmap_json_file) do
@@ -253,4 +256,40 @@ describe 'Rails' do
253
256
  end
254
257
  end
255
258
  end
259
+
260
+ describe 'with default appmap.yml' do
261
+ include_context 'Rails app pg database', "spec/fixtures/rails5_users_app" unless use_existing_data?
262
+ include_context 'rails integration test setup'
263
+
264
+ def run_spec(spec_name)
265
+ cmd = <<~CMD.gsub "\n", ' '
266
+ docker-compose run --rm -e RAILS_ENV=test -e APPMAP=true -e APPMAP_CONFIG_FILE=no/such/file
267
+ -v #{File.absolute_path tmpdir}:/app/tmp app ./bin/rspec #{spec_name}
268
+ CMD
269
+ run_cmd cmd, chdir: fixture_dir
270
+ end
271
+
272
+ let(:appmap_json_file) do
273
+ 'Api_UsersController_POST_api_users_with_required_parameters_creates_a_user.appmap.json'
274
+ end
275
+
276
+ it 'http_server_request is recorded' do
277
+ expect(events).to include(
278
+ hash_including(
279
+ 'http_server_request' => hash_including(
280
+ 'request_method' => 'POST',
281
+ 'path_info' => '/api/users'
282
+ )
283
+ )
284
+ )
285
+ end
286
+
287
+ it 'controller method is recorded' do
288
+ expect(events).to include hash_including(
289
+ 'defined_class' => 'Api::UsersController',
290
+ 'method_id' => 'build_user',
291
+ 'path' => 'app/controllers/api/users_controller.rb',
292
+ )
293
+ end
294
+ end
256
295
  end
data/spec/config_spec.rb CHANGED
@@ -55,4 +55,25 @@ describe AppMap::Config, docker: false do
55
55
 
56
56
  expect(config.to_h.deep_stringify_keys!).to eq(config_expectation)
57
57
  end
58
+
59
+ context do
60
+ let(:warnings) { @warnings ||= [] }
61
+ let(:warning) { warnings.join }
62
+ before do
63
+ expect(AppMap::Config).to receive(:warn).at_least(1) { |msg| warnings << msg }
64
+ end
65
+ it 'prints a warning and uses a default config' do
66
+ config = AppMap::Config.load_from_file 'no/such/file'
67
+ expect(config.to_h).to eq(YAML.load(<<~CONFIG))
68
+ :name: appmap-ruby
69
+ :packages:
70
+ - :path: lib
71
+ :handler_class: AppMap::Handler::Function
72
+ :shallow: false
73
+ :functions: []
74
+ :exclude: []
75
+ CONFIG
76
+ expect(warning).to include('NOTICE: The AppMap config file no/such/file was not found!')
77
+ end
78
+ end
58
79
  end
@@ -21,14 +21,6 @@ when 'activerecord'
21
21
  require 'database_cleaner-active_record' if Rails.env.test?
22
22
  end
23
23
 
24
- require 'appmap/railtie' if defined?(AppMap)
25
-
26
- # require "active_storage/engine"
27
- # require "action_mailer/railtie"
28
- # require "action_cable/engine"
29
- # require "sprockets/railtie"
30
- # require "rails/test_unit/railtie"
31
-
32
24
  # Require the gems listed in Gemfile, including any gems
33
25
  # you've limited to :test, :development, or :production.
34
26
  Bundler.require(*Rails.groups)
@@ -7,8 +7,6 @@ abort("The Rails environment is running in production mode!") if Rails.env.produ
7
7
  require 'rspec/rails'
8
8
  # Add additional requires below this line. Rails is not loaded until this point!
9
9
 
10
- require 'appmap/rspec'
11
-
12
10
  # Requires supporting ruby files with custom matchers and macros, etc, in
13
11
  # spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are
14
12
  # run as spec files by default. This means that files in spec/support that end
@@ -21,14 +21,6 @@ when 'activerecord'
21
21
  require 'database_cleaner-active_record' if Rails.env.test?
22
22
  end
23
23
 
24
- require 'appmap/railtie' if defined?(AppMap)
25
-
26
- # require "active_storage/engine"
27
- # require "action_mailer/railtie"
28
- # require "action_cable/engine"
29
- # require "sprockets/railtie"
30
- # require "rails/test_unit/railtie"
31
-
32
24
  # Require the gems listed in Gemfile, including any gems
33
25
  # you've limited to :test, :development, or :production.
34
26
  Bundler.require(*Rails.groups)
@@ -7,8 +7,6 @@ abort("The Rails environment is running in production mode!") if Rails.env.produ
7
7
  require 'rspec/rails'
8
8
  # Add additional requires below this line. Rails is not loaded until this point!
9
9
 
10
- require 'appmap/rspec'
11
-
12
10
  # Requires supporting ruby files with custom matchers and macros, etc, in
13
11
  # spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are
14
12
  # run as spec files by default. This means that files in spec/support that end
data/spec/hook_spec.rb CHANGED
@@ -21,7 +21,7 @@ describe 'AppMap class Hooking', docker: false do
21
21
  def invoke_test_file(file, setup: nil, &block)
22
22
  AppMap.configuration = nil
23
23
  package = AppMap::Config::Package.build_from_path(file)
24
- config = AppMap::Config.new('hook_spec', [ package ])
24
+ config = AppMap::Config.new('hook_spec', packages: [ package ])
25
25
  AppMap.configuration = config
26
26
  tracer = nil
27
27
  AppMap::Hook.new(config).enable do
@@ -57,7 +57,7 @@ describe 'AppMap class Hooking', docker: false do
57
57
  it 'excludes named classes and methods' do
58
58
  load 'spec/fixtures/hook/exclude.rb'
59
59
  package = AppMap::Config::Package.build_from_path('spec/fixtures/hook/exclude.rb')
60
- config = AppMap::Config.new('hook_spec', [ package ], exclude: %w[ExcludeTest])
60
+ config = AppMap::Config.new('hook_spec', packages: [ package ], exclude: %w[ExcludeTest])
61
61
  AppMap.configuration = config
62
62
 
63
63
  expect(config.never_hook?(ExcludeTest, ExcludeTest.new.method(:instance_method))).to be_truthy
@@ -62,7 +62,7 @@ describe 'Net::HTTP handler' do
62
62
  end
63
63
 
64
64
  context 'with trace enabled' do
65
- let(:configuration) { AppMap::Config.new('record_net_http_spec', []) }
65
+ let(:configuration) { AppMap::Config.new('record_net_http_spec') }
66
66
 
67
67
  after do
68
68
  AppMap.configuration = nil
data/test/cli_test.rb ADDED
@@ -0,0 +1,37 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require 'test_helper'
5
+
6
+ class CLITest < Minitest::Test
7
+ CONFIG_FILENAME = '123.yml'
8
+ SUBFOLDER_CONFIG_FILEPATH = 'conf/123.yml'
9
+ EXPECTED_CONFIG_CONTENT = %(name: appmap-ruby
10
+ packages:
11
+ - path: lib
12
+ )
13
+
14
+ def test_init_when_config_exists
15
+ output = `./exe/appmap-agent-setup init`
16
+ assert_equal 0, $CHILD_STATUS.exitstatus
17
+ assert_includes output, 'The AppMap config file appmap.yml already exists.'
18
+ end
19
+
20
+ def test_init_with_custom_config_filename
21
+ output = `./exe/appmap-agent-setup -c #{CONFIG_FILENAME} init`
22
+ assert_equal 0, $CHILD_STATUS.exitstatus
23
+ assert_includes output, "The following AppMap config file #{CONFIG_FILENAME} has been created:"
24
+ assert_equal EXPECTED_CONFIG_CONTENT, File.read(CONFIG_FILENAME)
25
+ ensure
26
+ File.delete(CONFIG_FILENAME) if File.exist?(CONFIG_FILENAME)
27
+ end
28
+
29
+ def test_init_with_custom_config_file_in_subfolder
30
+ output = `./exe/appmap-agent-setup -c #{SUBFOLDER_CONFIG_FILEPATH} init`
31
+ assert_equal 0, $CHILD_STATUS.exitstatus
32
+ assert_includes output, "The following AppMap config file #{SUBFOLDER_CONFIG_FILEPATH} has been created:"
33
+ assert_equal EXPECTED_CONFIG_CONTENT, File.read(SUBFOLDER_CONFIG_FILEPATH)
34
+ ensure
35
+ File.delete(SUBFOLDER_CONFIG_FILEPATH) if File.exist?(SUBFOLDER_CONFIG_FILEPATH)
36
+ end
37
+ end
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.49.0
4
+ version: 0.51.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Gilpin
8
8
  autorequire:
9
- bindir: bin
9
+ bindir: exe
10
10
  cert_chain: []
11
- date: 2021-06-16 00:00:00.000000000 Z
11
+ date: 2021-06-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -307,7 +307,8 @@ dependencies:
307
307
  description:
308
308
  email:
309
309
  - kgilpin@gmail.com
310
- executables: []
310
+ executables:
311
+ - appmap-agent-setup
311
312
  extensions:
312
313
  - ext/appmap/extconf.rb
313
314
  extra_rdoc_files: []
@@ -335,14 +336,12 @@ files:
335
336
  - examples/mock_webapp/lib/mock_webapp/controller.rb
336
337
  - examples/mock_webapp/lib/mock_webapp/request.rb
337
338
  - examples/mock_webapp/lib/mock_webapp/user.rb
339
+ - exe/appmap-agent-setup
338
340
  - ext/appmap/appmap.c
339
341
  - ext/appmap/extconf.rb
340
342
  - lib/appmap.rb
341
- - lib/appmap/algorithm/prune_class_map.rb
342
- - lib/appmap/algorithm/stats.rb
343
343
  - lib/appmap/class_map.rb
344
- - lib/appmap/command/record.rb
345
- - lib/appmap/command/stats.rb
344
+ - lib/appmap/command/init.rb
346
345
  - lib/appmap/config.rb
347
346
  - lib/appmap/cucumber.rb
348
347
  - lib/appmap/event.rb
@@ -360,28 +359,10 @@ files:
360
359
  - lib/appmap/railtie.rb
361
360
  - lib/appmap/record.rb
362
361
  - lib/appmap/rspec.rb
362
+ - lib/appmap/service/guesser.rb
363
363
  - lib/appmap/trace.rb
364
364
  - lib/appmap/util.rb
365
365
  - lib/appmap/version.rb
366
- - lore/pages/2019-05-21-install-and-record/index.pug
367
- - lore/pages/2019-05-21-install-and-record/install_example_appmap.png
368
- - lore/pages/2019-05-21-install-and-record/metadata.yml
369
- - lore/pages/layout.pug
370
- - lore/public/lib/bootstrap-4.1.3/css/bootstrap-grid.css
371
- - lore/public/lib/bootstrap-4.1.3/css/bootstrap-grid.css.map
372
- - lore/public/lib/bootstrap-4.1.3/css/bootstrap-grid.min.css
373
- - lore/public/lib/bootstrap-4.1.3/css/bootstrap-grid.min.css.map
374
- - lore/public/lib/bootstrap-4.1.3/css/bootstrap-reboot.css
375
- - lore/public/lib/bootstrap-4.1.3/css/bootstrap-reboot.css.map
376
- - lore/public/lib/bootstrap-4.1.3/css/bootstrap-reboot.min.css
377
- - lore/public/lib/bootstrap-4.1.3/css/bootstrap-reboot.min.css.map
378
- - lore/public/lib/bootstrap-4.1.3/css/bootstrap.css
379
- - lore/public/lib/bootstrap-4.1.3/css/bootstrap.css.map
380
- - lore/public/lib/bootstrap-4.1.3/css/bootstrap.min.css
381
- - lore/public/lib/bootstrap-4.1.3/css/bootstrap.min.css.map
382
- - lore/public/stylesheets/style.css
383
- - package-lock.json
384
- - package.json
385
366
  - release.sh
386
367
  - spec/abstract_controller_base_spec.rb
387
368
  - spec/class_map_spec.rb
@@ -455,7 +436,6 @@ files:
455
436
  - spec/fixtures/rails5_users_app/config/initializers/filter_parameter_logging.rb
456
437
  - spec/fixtures/rails5_users_app/config/initializers/inflections.rb
457
438
  - spec/fixtures/rails5_users_app/config/initializers/mime_types.rb
458
- - spec/fixtures/rails5_users_app/config/initializers/record_button.rb
459
439
  - spec/fixtures/rails5_users_app/config/initializers/wrap_parameters.rb
460
440
  - spec/fixtures/rails5_users_app/config/locales/en.yml
461
441
  - spec/fixtures/rails5_users_app/config/routes.rb
@@ -527,7 +507,6 @@ files:
527
507
  - spec/fixtures/rails6_users_app/config/initializers/filter_parameter_logging.rb
528
508
  - spec/fixtures/rails6_users_app/config/initializers/inflections.rb
529
509
  - spec/fixtures/rails6_users_app/config/initializers/mime_types.rb
530
- - spec/fixtures/rails6_users_app/config/initializers/record_button.rb
531
510
  - spec/fixtures/rails6_users_app/config/initializers/wrap_parameters.rb
532
511
  - spec/fixtures/rails6_users_app/config/locales/en.yml
533
512
  - spec/fixtures/rails6_users_app/config/routes.rb
@@ -558,6 +537,7 @@ files:
558
537
  - spec/spec_helper.rb
559
538
  - spec/util_spec.rb
560
539
  - test/bundle_vendor_test.rb
540
+ - test/cli_test.rb
561
541
  - test/cucumber_test.rb
562
542
  - test/expectations/openssl_test_key_sign1.json
563
543
  - test/expectations/openssl_test_key_sign2.json