├── .document ├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.rdoc ├── Rakefile ├── VERSION ├── lib ├── role_model.rb └── role_model │ ├── class_methods.rb │ ├── implementation.rb │ └── roles.rb ├── role_model.gemspec └── spec ├── custom_matchers.rb ├── custom_matchers_spec.rb ├── role_model_spec.rb ├── roles_spec.rb └── spec_helper.rb /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrehfeld/role_model/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrehfeld/role_model/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrehfeld/role_model/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrehfeld/role_model/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrehfeld/role_model/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrehfeld/role_model/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrehfeld/role_model/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.8.2 2 | -------------------------------------------------------------------------------- /lib/role_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrehfeld/role_model/HEAD/lib/role_model.rb -------------------------------------------------------------------------------- /lib/role_model/class_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrehfeld/role_model/HEAD/lib/role_model/class_methods.rb -------------------------------------------------------------------------------- /lib/role_model/implementation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrehfeld/role_model/HEAD/lib/role_model/implementation.rb -------------------------------------------------------------------------------- /lib/role_model/roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrehfeld/role_model/HEAD/lib/role_model/roles.rb -------------------------------------------------------------------------------- /role_model.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrehfeld/role_model/HEAD/role_model.gemspec -------------------------------------------------------------------------------- /spec/custom_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrehfeld/role_model/HEAD/spec/custom_matchers.rb -------------------------------------------------------------------------------- /spec/custom_matchers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrehfeld/role_model/HEAD/spec/custom_matchers_spec.rb -------------------------------------------------------------------------------- /spec/role_model_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrehfeld/role_model/HEAD/spec/role_model_spec.rb -------------------------------------------------------------------------------- /spec/roles_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrehfeld/role_model/HEAD/spec/roles_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinrehfeld/role_model/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------