├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── factory_factory_girl.gemspec ├── lib ├── factory_factory_girl.rb └── factory_factory_girl │ ├── configuration.rb │ ├── generators │ └── model_generator.rb │ ├── railtie.rb │ └── version.rb └── spec ├── configuration_spec.rb ├── factory_factory_girl_spec.rb ├── generators └── model_generator_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st0012/factory_factory_girl/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st0012/factory_factory_girl/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st0012/factory_factory_girl/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st0012/factory_factory_girl/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st0012/factory_factory_girl/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st0012/factory_factory_girl/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st0012/factory_factory_girl/HEAD/bin/setup -------------------------------------------------------------------------------- /factory_factory_girl.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st0012/factory_factory_girl/HEAD/factory_factory_girl.gemspec -------------------------------------------------------------------------------- /lib/factory_factory_girl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st0012/factory_factory_girl/HEAD/lib/factory_factory_girl.rb -------------------------------------------------------------------------------- /lib/factory_factory_girl/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st0012/factory_factory_girl/HEAD/lib/factory_factory_girl/configuration.rb -------------------------------------------------------------------------------- /lib/factory_factory_girl/generators/model_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st0012/factory_factory_girl/HEAD/lib/factory_factory_girl/generators/model_generator.rb -------------------------------------------------------------------------------- /lib/factory_factory_girl/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st0012/factory_factory_girl/HEAD/lib/factory_factory_girl/railtie.rb -------------------------------------------------------------------------------- /lib/factory_factory_girl/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st0012/factory_factory_girl/HEAD/lib/factory_factory_girl/version.rb -------------------------------------------------------------------------------- /spec/configuration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st0012/factory_factory_girl/HEAD/spec/configuration_spec.rb -------------------------------------------------------------------------------- /spec/factory_factory_girl_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st0012/factory_factory_girl/HEAD/spec/factory_factory_girl_spec.rb -------------------------------------------------------------------------------- /spec/generators/model_generator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st0012/factory_factory_girl/HEAD/spec/generators/model_generator_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st0012/factory_factory_girl/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------