factory_bot_instrumentation 0.1.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.
Files changed (57) hide show
  1. checksums.yaml +7 -0
  2. data/.editorconfig +30 -0
  3. data/.gitignore +13 -0
  4. data/.rspec +3 -0
  5. data/.rubocop.yml +43 -0
  6. data/.simplecov +3 -0
  7. data/.travis.yml +28 -0
  8. data/Appraisals +15 -0
  9. data/CHANGELOG.md +3 -0
  10. data/Gemfile +8 -0
  11. data/Gemfile.lock +161 -0
  12. data/LICENSE +21 -0
  13. data/Makefile +96 -0
  14. data/README.md +713 -0
  15. data/Rakefile +8 -0
  16. data/app/assets/config/factory_bot_instrumentation_manifest.js +2 -0
  17. data/app/assets/javascripts/factory_bot_instrumentation/application.js +16 -0
  18. data/app/assets/javascripts/factory_bot_instrumentation/create.js +134 -0
  19. data/app/assets/javascripts/factory_bot_instrumentation/hooks.js +123 -0
  20. data/app/assets/javascripts/factory_bot_instrumentation/lib/form.js +66 -0
  21. data/app/assets/javascripts/factory_bot_instrumentation/lib/utils.js +116 -0
  22. data/app/assets/stylesheets/factory_bot_instrumentation/application.css +91 -0
  23. data/app/controllers/factory_bot/instrumentation/application_controller.rb +7 -0
  24. data/app/controllers/factory_bot/instrumentation/root_controller.rb +113 -0
  25. data/app/views/factory_bot/instrumentation/application/_config.html.erb +5 -0
  26. data/app/views/factory_bot/instrumentation/application/_scripts.html.erb +18 -0
  27. data/app/views/factory_bot/instrumentation/application/_spinner.html.erb +7 -0
  28. data/app/views/factory_bot/instrumentation/application/_styles.html.erb +20 -0
  29. data/app/views/factory_bot/instrumentation/root/index.html.erb +31 -0
  30. data/app/views/factory_bot_instrumentation/_blocks.html.erb +6 -0
  31. data/app/views/factory_bot_instrumentation/_navigation.html.erb +13 -0
  32. data/app/views/factory_bot_instrumentation/_scripts.html.erb +5 -0
  33. data/app/views/factory_bot_instrumentation/_styles.html.erb +5 -0
  34. data/app/views/layouts/factory_bot/instrumentation/application.html.erb +29 -0
  35. data/bin/rails +14 -0
  36. data/config/instrumentation.yml +55 -0
  37. data/config/routes.rb +8 -0
  38. data/doc/assets/blocks.png +0 -0
  39. data/doc/assets/customized.png +0 -0
  40. data/doc/assets/navigation.png +0 -0
  41. data/doc/assets/project.svg +68 -0
  42. data/doc/assets/regular.png +0 -0
  43. data/docker-compose.yml +8 -0
  44. data/factory_bot_instrumentation.gemspec +33 -0
  45. data/gemfiles/rails_4.gemfile +7 -0
  46. data/gemfiles/rails_4.gemfile.lock +147 -0
  47. data/gemfiles/rails_5.0.gemfile +7 -0
  48. data/gemfiles/rails_5.0.gemfile.lock +154 -0
  49. data/gemfiles/rails_5.1.gemfile +7 -0
  50. data/gemfiles/rails_5.1.gemfile.lock +154 -0
  51. data/gemfiles/rails_5.2.gemfile +7 -0
  52. data/gemfiles/rails_5.2.gemfile.lock +162 -0
  53. data/lib/factory_bot/instrumentation/configuration.rb +20 -0
  54. data/lib/factory_bot/instrumentation/engine.rb +19 -0
  55. data/lib/factory_bot/instrumentation/version.rb +7 -0
  56. data/lib/factory_bot_instrumentation.rb +43 -0
  57. metadata +209 -0
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "activesupport", "5.1.4"
6
+
7
+ gemspec path: "../"
@@ -0,0 +1,154 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ factory_bot_instrumentation (0.1.0)
5
+ factory_bot
6
+ rails (>= 3.2.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (5.1.4)
12
+ actionpack (= 5.1.4)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (~> 0.6.1)
15
+ actionmailer (5.1.4)
16
+ actionpack (= 5.1.4)
17
+ actionview (= 5.1.4)
18
+ activejob (= 5.1.4)
19
+ mail (~> 2.5, >= 2.5.4)
20
+ rails-dom-testing (~> 2.0)
21
+ actionpack (5.1.4)
22
+ actionview (= 5.1.4)
23
+ activesupport (= 5.1.4)
24
+ rack (~> 2.0)
25
+ rack-test (>= 0.6.3)
26
+ rails-dom-testing (~> 2.0)
27
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
+ actionview (5.1.4)
29
+ activesupport (= 5.1.4)
30
+ builder (~> 3.1)
31
+ erubi (~> 1.4)
32
+ rails-dom-testing (~> 2.0)
33
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
+ activejob (5.1.4)
35
+ activesupport (= 5.1.4)
36
+ globalid (>= 0.3.6)
37
+ activemodel (5.1.4)
38
+ activesupport (= 5.1.4)
39
+ activerecord (5.1.4)
40
+ activemodel (= 5.1.4)
41
+ activesupport (= 5.1.4)
42
+ arel (~> 8.0)
43
+ activesupport (5.1.4)
44
+ concurrent-ruby (~> 1.0, >= 1.0.2)
45
+ i18n (~> 0.7)
46
+ minitest (~> 5.1)
47
+ tzinfo (~> 1.1)
48
+ appraisal (2.2.0)
49
+ bundler
50
+ rake
51
+ thor (>= 0.14.0)
52
+ arel (8.0.0)
53
+ builder (3.2.3)
54
+ concurrent-ruby (1.1.4)
55
+ crass (1.0.4)
56
+ diff-lcs (1.3)
57
+ docile (1.3.1)
58
+ erubi (1.8.0)
59
+ factory_bot (4.11.1)
60
+ activesupport (>= 3.0.0)
61
+ globalid (0.4.1)
62
+ activesupport (>= 4.2.0)
63
+ i18n (0.9.5)
64
+ concurrent-ruby (~> 1.0)
65
+ json (2.1.0)
66
+ loofah (2.2.3)
67
+ crass (~> 1.0.2)
68
+ nokogiri (>= 1.5.9)
69
+ mail (2.7.1)
70
+ mini_mime (>= 0.1.1)
71
+ method_source (0.9.2)
72
+ mini_mime (1.0.1)
73
+ mini_portile2 (2.4.0)
74
+ minitest (5.11.3)
75
+ nio4r (2.3.1)
76
+ nokogiri (1.10.0)
77
+ mini_portile2 (~> 2.4.0)
78
+ rack (2.0.6)
79
+ rack-test (1.1.0)
80
+ rack (>= 1.0, < 3)
81
+ rails (5.1.4)
82
+ actioncable (= 5.1.4)
83
+ actionmailer (= 5.1.4)
84
+ actionpack (= 5.1.4)
85
+ actionview (= 5.1.4)
86
+ activejob (= 5.1.4)
87
+ activemodel (= 5.1.4)
88
+ activerecord (= 5.1.4)
89
+ activesupport (= 5.1.4)
90
+ bundler (>= 1.3.0)
91
+ railties (= 5.1.4)
92
+ sprockets-rails (>= 2.0.0)
93
+ rails-dom-testing (2.0.3)
94
+ activesupport (>= 4.2.0)
95
+ nokogiri (>= 1.6)
96
+ rails-html-sanitizer (1.0.4)
97
+ loofah (~> 2.2, >= 2.2.2)
98
+ railties (5.1.4)
99
+ actionpack (= 5.1.4)
100
+ activesupport (= 5.1.4)
101
+ method_source
102
+ rake (>= 0.8.7)
103
+ thor (>= 0.18.1, < 2.0)
104
+ rake (12.3.2)
105
+ rspec (3.8.0)
106
+ rspec-core (~> 3.8.0)
107
+ rspec-expectations (~> 3.8.0)
108
+ rspec-mocks (~> 3.8.0)
109
+ rspec-core (3.8.0)
110
+ rspec-support (~> 3.8.0)
111
+ rspec-expectations (3.8.2)
112
+ diff-lcs (>= 1.2.0, < 2.0)
113
+ rspec-support (~> 3.8.0)
114
+ rspec-mocks (3.8.0)
115
+ diff-lcs (>= 1.2.0, < 2.0)
116
+ rspec-support (~> 3.8.0)
117
+ rspec-support (3.8.0)
118
+ simplecov (0.16.1)
119
+ docile (~> 1.1)
120
+ json (>= 1.8, < 3)
121
+ simplecov-html (~> 0.10.0)
122
+ simplecov-html (0.10.2)
123
+ sprockets (3.7.2)
124
+ concurrent-ruby (~> 1.0)
125
+ rack (> 1, < 3)
126
+ sprockets-rails (3.2.1)
127
+ actionpack (>= 4.0)
128
+ activesupport (>= 4.0)
129
+ sprockets (>= 3.0.0)
130
+ sqlite3 (1.3.13)
131
+ thor (0.20.3)
132
+ thread_safe (0.3.6)
133
+ timecop (0.9.1)
134
+ tzinfo (1.2.5)
135
+ thread_safe (~> 0.1)
136
+ websocket-driver (0.6.5)
137
+ websocket-extensions (>= 0.1.0)
138
+ websocket-extensions (0.1.3)
139
+
140
+ PLATFORMS
141
+ ruby
142
+
143
+ DEPENDENCIES
144
+ activesupport (= 5.1.4)
145
+ appraisal
146
+ bundler (~> 1.16)
147
+ factory_bot_instrumentation!
148
+ rspec (~> 3.0)
149
+ simplecov (~> 0.15)
150
+ sqlite3
151
+ timecop (~> 0.9.1)
152
+
153
+ BUNDLED WITH
154
+ 1.17.2
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "activesupport", "5.2.0"
6
+
7
+ gemspec path: "../"
@@ -0,0 +1,162 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ factory_bot_instrumentation (0.1.0)
5
+ factory_bot
6
+ rails (>= 3.2.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (5.2.0)
12
+ actionpack (= 5.2.0)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ actionmailer (5.2.0)
16
+ actionpack (= 5.2.0)
17
+ actionview (= 5.2.0)
18
+ activejob (= 5.2.0)
19
+ mail (~> 2.5, >= 2.5.4)
20
+ rails-dom-testing (~> 2.0)
21
+ actionpack (5.2.0)
22
+ actionview (= 5.2.0)
23
+ activesupport (= 5.2.0)
24
+ rack (~> 2.0)
25
+ rack-test (>= 0.6.3)
26
+ rails-dom-testing (~> 2.0)
27
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
+ actionview (5.2.0)
29
+ activesupport (= 5.2.0)
30
+ builder (~> 3.1)
31
+ erubi (~> 1.4)
32
+ rails-dom-testing (~> 2.0)
33
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
+ activejob (5.2.0)
35
+ activesupport (= 5.2.0)
36
+ globalid (>= 0.3.6)
37
+ activemodel (5.2.0)
38
+ activesupport (= 5.2.0)
39
+ activerecord (5.2.0)
40
+ activemodel (= 5.2.0)
41
+ activesupport (= 5.2.0)
42
+ arel (>= 9.0)
43
+ activestorage (5.2.0)
44
+ actionpack (= 5.2.0)
45
+ activerecord (= 5.2.0)
46
+ marcel (~> 0.3.1)
47
+ activesupport (5.2.0)
48
+ concurrent-ruby (~> 1.0, >= 1.0.2)
49
+ i18n (>= 0.7, < 2)
50
+ minitest (~> 5.1)
51
+ tzinfo (~> 1.1)
52
+ appraisal (2.2.0)
53
+ bundler
54
+ rake
55
+ thor (>= 0.14.0)
56
+ arel (9.0.0)
57
+ builder (3.2.3)
58
+ concurrent-ruby (1.1.4)
59
+ crass (1.0.4)
60
+ diff-lcs (1.3)
61
+ docile (1.3.1)
62
+ erubi (1.8.0)
63
+ factory_bot (4.11.1)
64
+ activesupport (>= 3.0.0)
65
+ globalid (0.4.1)
66
+ activesupport (>= 4.2.0)
67
+ i18n (1.5.1)
68
+ concurrent-ruby (~> 1.0)
69
+ json (2.1.0)
70
+ loofah (2.2.3)
71
+ crass (~> 1.0.2)
72
+ nokogiri (>= 1.5.9)
73
+ mail (2.7.1)
74
+ mini_mime (>= 0.1.1)
75
+ marcel (0.3.3)
76
+ mimemagic (~> 0.3.2)
77
+ method_source (0.9.2)
78
+ mimemagic (0.3.3)
79
+ mini_mime (1.0.1)
80
+ mini_portile2 (2.4.0)
81
+ minitest (5.11.3)
82
+ nio4r (2.3.1)
83
+ nokogiri (1.10.0)
84
+ mini_portile2 (~> 2.4.0)
85
+ rack (2.0.6)
86
+ rack-test (1.1.0)
87
+ rack (>= 1.0, < 3)
88
+ rails (5.2.0)
89
+ actioncable (= 5.2.0)
90
+ actionmailer (= 5.2.0)
91
+ actionpack (= 5.2.0)
92
+ actionview (= 5.2.0)
93
+ activejob (= 5.2.0)
94
+ activemodel (= 5.2.0)
95
+ activerecord (= 5.2.0)
96
+ activestorage (= 5.2.0)
97
+ activesupport (= 5.2.0)
98
+ bundler (>= 1.3.0)
99
+ railties (= 5.2.0)
100
+ sprockets-rails (>= 2.0.0)
101
+ rails-dom-testing (2.0.3)
102
+ activesupport (>= 4.2.0)
103
+ nokogiri (>= 1.6)
104
+ rails-html-sanitizer (1.0.4)
105
+ loofah (~> 2.2, >= 2.2.2)
106
+ railties (5.2.0)
107
+ actionpack (= 5.2.0)
108
+ activesupport (= 5.2.0)
109
+ method_source
110
+ rake (>= 0.8.7)
111
+ thor (>= 0.18.1, < 2.0)
112
+ rake (12.3.2)
113
+ rspec (3.8.0)
114
+ rspec-core (~> 3.8.0)
115
+ rspec-expectations (~> 3.8.0)
116
+ rspec-mocks (~> 3.8.0)
117
+ rspec-core (3.8.0)
118
+ rspec-support (~> 3.8.0)
119
+ rspec-expectations (3.8.2)
120
+ diff-lcs (>= 1.2.0, < 2.0)
121
+ rspec-support (~> 3.8.0)
122
+ rspec-mocks (3.8.0)
123
+ diff-lcs (>= 1.2.0, < 2.0)
124
+ rspec-support (~> 3.8.0)
125
+ rspec-support (3.8.0)
126
+ simplecov (0.16.1)
127
+ docile (~> 1.1)
128
+ json (>= 1.8, < 3)
129
+ simplecov-html (~> 0.10.0)
130
+ simplecov-html (0.10.2)
131
+ sprockets (3.7.2)
132
+ concurrent-ruby (~> 1.0)
133
+ rack (> 1, < 3)
134
+ sprockets-rails (3.2.1)
135
+ actionpack (>= 4.0)
136
+ activesupport (>= 4.0)
137
+ sprockets (>= 3.0.0)
138
+ sqlite3 (1.3.13)
139
+ thor (0.20.3)
140
+ thread_safe (0.3.6)
141
+ timecop (0.9.1)
142
+ tzinfo (1.2.5)
143
+ thread_safe (~> 0.1)
144
+ websocket-driver (0.7.0)
145
+ websocket-extensions (>= 0.1.0)
146
+ websocket-extensions (0.1.3)
147
+
148
+ PLATFORMS
149
+ ruby
150
+
151
+ DEPENDENCIES
152
+ activesupport (= 5.2.0)
153
+ appraisal
154
+ bundler (~> 1.16)
155
+ factory_bot_instrumentation!
156
+ rspec (~> 3.0)
157
+ simplecov (~> 0.15)
158
+ sqlite3
159
+ timecop (~> 0.9.1)
160
+
161
+ BUNDLED WITH
162
+ 1.17.2
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ module FactoryBot
4
+ module Instrumentation
5
+ # The configuration for the instrumentation API.
6
+ class Configuration
7
+ include ActiveSupport::Configurable
8
+
9
+ # The instrumentation configuration file path we should use,
10
+ # defaults to config/instrumentation.yml
11
+ config_accessor(:config_file) do
12
+ 'config/instrumentation.yml'
13
+ end
14
+
15
+ # You can set a fixed application name here,
16
+ # defaults to your Rails application name in a titlized version
17
+ config_accessor(:application_name) { nil }
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ module FactoryBot
4
+ module Instrumentation
5
+ # The Instrumentation engine which can be mounted.
6
+ class Engine < ::Rails::Engine
7
+ isolate_namespace FactoryBot::Instrumentation
8
+
9
+ # Fill in some dynamic settings (application related)
10
+ initializer 'factory_bot_instrumentation.config' do
11
+ FactoryBot::Instrumentation.configure do |conf|
12
+ # Set the application name dynamically
13
+ conf.application_name \
14
+ ||= Rails.application.class.parent_name.titleize
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module FactoryBot
4
+ module Instrumentation
5
+ VERSION = '0.1.0'.freeze
6
+ end
7
+ end
@@ -0,0 +1,43 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'active_support'
4
+ require 'active_support/concern'
5
+ require 'active_support/configurable'
6
+ require 'active_support/cache'
7
+ require 'active_support/core_ext/hash'
8
+ require 'active_support/time'
9
+ require 'active_support/time_with_zone'
10
+
11
+ require 'factory_bot'
12
+ require 'factory_bot/instrumentation/configuration'
13
+ require 'factory_bot/instrumentation/engine'
14
+
15
+ module FactoryBot
16
+ module Instrumentation
17
+ class << self
18
+ attr_writer :configuration
19
+ end
20
+
21
+ # Retrieve the current configuration object.
22
+ #
23
+ # @return [Configuration]
24
+ def self.configuration
25
+ @configuration ||= Configuration.new
26
+ end
27
+
28
+ # Configure the concern by providing a block which takes
29
+ # care of this task. Example:
30
+ #
31
+ # FactoryBot::Instrumentation.configure do |conf|
32
+ # # conf.xyz = [..]
33
+ # end
34
+ def self.configure
35
+ yield(configuration)
36
+ end
37
+
38
+ # Reset the current configuration with the default one.
39
+ def self.reset_configuration!
40
+ self.configuration = Configuration.new
41
+ end
42
+ end
43
+ end
metadata ADDED
@@ -0,0 +1,209 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: factory_bot_instrumentation
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Hermann Mayer
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-01-10 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 3.2.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 3.2.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: factory_bot
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.16'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.16'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '3.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '3.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: simplecov
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '0.15'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '0.15'
83
+ - !ruby/object:Gem::Dependency
84
+ name: timecop
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: 0.9.1
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: 0.9.1
97
+ - !ruby/object:Gem::Dependency
98
+ name: sqlite3
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: appraisal
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ description: Allow your testers to generate test data on demand
126
+ email:
127
+ - hermann.mayer92@gmail.com
128
+ executables: []
129
+ extensions: []
130
+ extra_rdoc_files: []
131
+ files:
132
+ - ".editorconfig"
133
+ - ".gitignore"
134
+ - ".rspec"
135
+ - ".rubocop.yml"
136
+ - ".simplecov"
137
+ - ".travis.yml"
138
+ - Appraisals
139
+ - CHANGELOG.md
140
+ - Gemfile
141
+ - Gemfile.lock
142
+ - LICENSE
143
+ - Makefile
144
+ - README.md
145
+ - Rakefile
146
+ - app/assets/config/factory_bot_instrumentation_manifest.js
147
+ - app/assets/javascripts/factory_bot_instrumentation/application.js
148
+ - app/assets/javascripts/factory_bot_instrumentation/create.js
149
+ - app/assets/javascripts/factory_bot_instrumentation/hooks.js
150
+ - app/assets/javascripts/factory_bot_instrumentation/lib/form.js
151
+ - app/assets/javascripts/factory_bot_instrumentation/lib/utils.js
152
+ - app/assets/stylesheets/factory_bot_instrumentation/application.css
153
+ - app/controllers/factory_bot/instrumentation/application_controller.rb
154
+ - app/controllers/factory_bot/instrumentation/root_controller.rb
155
+ - app/views/factory_bot/instrumentation/application/_config.html.erb
156
+ - app/views/factory_bot/instrumentation/application/_scripts.html.erb
157
+ - app/views/factory_bot/instrumentation/application/_spinner.html.erb
158
+ - app/views/factory_bot/instrumentation/application/_styles.html.erb
159
+ - app/views/factory_bot/instrumentation/root/index.html.erb
160
+ - app/views/factory_bot_instrumentation/_blocks.html.erb
161
+ - app/views/factory_bot_instrumentation/_navigation.html.erb
162
+ - app/views/factory_bot_instrumentation/_scripts.html.erb
163
+ - app/views/factory_bot_instrumentation/_styles.html.erb
164
+ - app/views/layouts/factory_bot/instrumentation/application.html.erb
165
+ - bin/rails
166
+ - config/instrumentation.yml
167
+ - config/routes.rb
168
+ - doc/assets/blocks.png
169
+ - doc/assets/customized.png
170
+ - doc/assets/navigation.png
171
+ - doc/assets/project.svg
172
+ - doc/assets/regular.png
173
+ - docker-compose.yml
174
+ - factory_bot_instrumentation.gemspec
175
+ - gemfiles/rails_4.gemfile
176
+ - gemfiles/rails_4.gemfile.lock
177
+ - gemfiles/rails_5.0.gemfile
178
+ - gemfiles/rails_5.0.gemfile.lock
179
+ - gemfiles/rails_5.1.gemfile
180
+ - gemfiles/rails_5.1.gemfile.lock
181
+ - gemfiles/rails_5.2.gemfile
182
+ - gemfiles/rails_5.2.gemfile.lock
183
+ - lib/factory_bot/instrumentation/configuration.rb
184
+ - lib/factory_bot/instrumentation/engine.rb
185
+ - lib/factory_bot/instrumentation/version.rb
186
+ - lib/factory_bot_instrumentation.rb
187
+ homepage: https://github.com/hausgold/factory_bot_instrumentation
188
+ licenses: []
189
+ metadata: {}
190
+ post_install_message:
191
+ rdoc_options: []
192
+ require_paths:
193
+ - lib
194
+ required_ruby_version: !ruby/object:Gem::Requirement
195
+ requirements:
196
+ - - ">="
197
+ - !ruby/object:Gem::Version
198
+ version: '0'
199
+ required_rubygems_version: !ruby/object:Gem::Requirement
200
+ requirements:
201
+ - - ">="
202
+ - !ruby/object:Gem::Version
203
+ version: '0'
204
+ requirements: []
205
+ rubygems_version: 3.0.2
206
+ signing_key:
207
+ specification_version: 4
208
+ summary: Allow your testers to generate test data on demand
209
+ test_files: []