├── .gitignore ├── .rspec ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── active_null.gemspec ├── circle.yml ├── lib ├── active_null.rb └── active_null │ ├── null_model_builder.rb │ └── version.rb └── spec ├── active_null_spec.rb ├── models.rb ├── null_spec.rb ├── schema.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpeachey/active_null/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpeachey/active_null/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpeachey/active_null/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpeachey/active_null/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpeachey/active_null/HEAD/Rakefile -------------------------------------------------------------------------------- /active_null.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpeachey/active_null/HEAD/active_null.gemspec -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpeachey/active_null/HEAD/circle.yml -------------------------------------------------------------------------------- /lib/active_null.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpeachey/active_null/HEAD/lib/active_null.rb -------------------------------------------------------------------------------- /lib/active_null/null_model_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpeachey/active_null/HEAD/lib/active_null/null_model_builder.rb -------------------------------------------------------------------------------- /lib/active_null/version.rb: -------------------------------------------------------------------------------- 1 | module ActiveNull 2 | VERSION = '1.1.0' 3 | end 4 | -------------------------------------------------------------------------------- /spec/active_null_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpeachey/active_null/HEAD/spec/active_null_spec.rb -------------------------------------------------------------------------------- /spec/models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpeachey/active_null/HEAD/spec/models.rb -------------------------------------------------------------------------------- /spec/null_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpeachey/active_null/HEAD/spec/null_spec.rb -------------------------------------------------------------------------------- /spec/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpeachey/active_null/HEAD/spec/schema.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpeachey/active_null/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------