├── .coveralls.yml ├── .gitignore ├── .rspec ├── .travis.yml ├── Changelog.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── active_model_attributes.gemspec ├── bin ├── console └── setup ├── lib ├── active_model_attributes.rb └── active_model_attributes │ └── version.rb └── spec ├── active_model_attributes_spec.rb └── spec_helper.rb /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azdaroth/active_model_attributes/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azdaroth/active_model_attributes/HEAD/.travis.yml -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azdaroth/active_model_attributes/HEAD/Changelog.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azdaroth/active_model_attributes/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azdaroth/active_model_attributes/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azdaroth/active_model_attributes/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azdaroth/active_model_attributes/HEAD/Rakefile -------------------------------------------------------------------------------- /active_model_attributes.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azdaroth/active_model_attributes/HEAD/active_model_attributes.gemspec -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azdaroth/active_model_attributes/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azdaroth/active_model_attributes/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/active_model_attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azdaroth/active_model_attributes/HEAD/lib/active_model_attributes.rb -------------------------------------------------------------------------------- /lib/active_model_attributes/version.rb: -------------------------------------------------------------------------------- 1 | module ActiveModelAttributes 2 | VERSION = "1.6.0" 3 | end 4 | -------------------------------------------------------------------------------- /spec/active_model_attributes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azdaroth/active_model_attributes/HEAD/spec/active_model_attributes_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azdaroth/active_model_attributes/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------