├── .gitignore ├── .rspec ├── .semaphore └── semaphore.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── factory_bot_instruments.gemspec ├── lib ├── factory_bot_instruments.rb └── factory_bot_instruments │ ├── benchmarking.rb │ ├── tracing.rb │ └── version.rb └── spec ├── db_structure.rb ├── factories ├── articles.rb ├── comments.rb └── users.rb ├── factory_bot_instruments_spec.rb ├── io_helper.rb ├── lib └── factory_bot_instruments │ ├── benchmarking_spec.rb │ └── tracing_spec.rb ├── models ├── article.rb ├── comment.rb └── user.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiroyasha/factory_bot_instruments/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.semaphore/semaphore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiroyasha/factory_bot_instruments/HEAD/.semaphore/semaphore.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiroyasha/factory_bot_instruments/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiroyasha/factory_bot_instruments/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiroyasha/factory_bot_instruments/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiroyasha/factory_bot_instruments/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiroyasha/factory_bot_instruments/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiroyasha/factory_bot_instruments/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiroyasha/factory_bot_instruments/HEAD/bin/setup -------------------------------------------------------------------------------- /factory_bot_instruments.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiroyasha/factory_bot_instruments/HEAD/factory_bot_instruments.gemspec -------------------------------------------------------------------------------- /lib/factory_bot_instruments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiroyasha/factory_bot_instruments/HEAD/lib/factory_bot_instruments.rb -------------------------------------------------------------------------------- /lib/factory_bot_instruments/benchmarking.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiroyasha/factory_bot_instruments/HEAD/lib/factory_bot_instruments/benchmarking.rb -------------------------------------------------------------------------------- /lib/factory_bot_instruments/tracing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiroyasha/factory_bot_instruments/HEAD/lib/factory_bot_instruments/tracing.rb -------------------------------------------------------------------------------- /lib/factory_bot_instruments/version.rb: -------------------------------------------------------------------------------- 1 | module FactoryBotInstruments 2 | VERSION = "1.2.0" 3 | end 4 | -------------------------------------------------------------------------------- /spec/db_structure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiroyasha/factory_bot_instruments/HEAD/spec/db_structure.rb -------------------------------------------------------------------------------- /spec/factories/articles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiroyasha/factory_bot_instruments/HEAD/spec/factories/articles.rb -------------------------------------------------------------------------------- /spec/factories/comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiroyasha/factory_bot_instruments/HEAD/spec/factories/comments.rb -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiroyasha/factory_bot_instruments/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/factory_bot_instruments_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiroyasha/factory_bot_instruments/HEAD/spec/factory_bot_instruments_spec.rb -------------------------------------------------------------------------------- /spec/io_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiroyasha/factory_bot_instruments/HEAD/spec/io_helper.rb -------------------------------------------------------------------------------- /spec/lib/factory_bot_instruments/benchmarking_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiroyasha/factory_bot_instruments/HEAD/spec/lib/factory_bot_instruments/benchmarking_spec.rb -------------------------------------------------------------------------------- /spec/lib/factory_bot_instruments/tracing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiroyasha/factory_bot_instruments/HEAD/spec/lib/factory_bot_instruments/tracing_spec.rb -------------------------------------------------------------------------------- /spec/models/article.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiroyasha/factory_bot_instruments/HEAD/spec/models/article.rb -------------------------------------------------------------------------------- /spec/models/comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiroyasha/factory_bot_instruments/HEAD/spec/models/comment.rb -------------------------------------------------------------------------------- /spec/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiroyasha/factory_bot_instruments/HEAD/spec/models/user.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiroyasha/factory_bot_instruments/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------