├── .gitignore ├── CHANGELOG.rdoc ├── Gemfile ├── Gemfile.lock ├── README.rdoc ├── Rakefile ├── easy_roles.gemspec ├── init.rb ├── lib ├── easy_roles.rb ├── generators │ ├── active_record │ │ ├── easy_roles_generator.rb │ │ └── templates │ │ │ ├── migration_bitmask.rb │ │ │ └── migration_non_bitmask.rb │ ├── easy_roles │ │ └── easy_roles_generator.rb │ └── templates │ │ └── README └── methods │ ├── bitmask.rb │ └── serialize.rb └── spec ├── easy_roles_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | pkg 2 | doc 3 | Manifest 4 | *.gem -------------------------------------------------------------------------------- /CHANGELOG.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platform45/easy_roles/HEAD/CHANGELOG.rdoc -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platform45/easy_roles/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platform45/easy_roles/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platform45/easy_roles/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platform45/easy_roles/HEAD/Rakefile -------------------------------------------------------------------------------- /easy_roles.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platform45/easy_roles/HEAD/easy_roles.gemspec -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- 1 | require 'easy_roles' -------------------------------------------------------------------------------- /lib/easy_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platform45/easy_roles/HEAD/lib/easy_roles.rb -------------------------------------------------------------------------------- /lib/generators/active_record/easy_roles_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platform45/easy_roles/HEAD/lib/generators/active_record/easy_roles_generator.rb -------------------------------------------------------------------------------- /lib/generators/active_record/templates/migration_bitmask.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platform45/easy_roles/HEAD/lib/generators/active_record/templates/migration_bitmask.rb -------------------------------------------------------------------------------- /lib/generators/active_record/templates/migration_non_bitmask.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platform45/easy_roles/HEAD/lib/generators/active_record/templates/migration_non_bitmask.rb -------------------------------------------------------------------------------- /lib/generators/easy_roles/easy_roles_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platform45/easy_roles/HEAD/lib/generators/easy_roles/easy_roles_generator.rb -------------------------------------------------------------------------------- /lib/generators/templates/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platform45/easy_roles/HEAD/lib/generators/templates/README -------------------------------------------------------------------------------- /lib/methods/bitmask.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platform45/easy_roles/HEAD/lib/methods/bitmask.rb -------------------------------------------------------------------------------- /lib/methods/serialize.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platform45/easy_roles/HEAD/lib/methods/serialize.rb -------------------------------------------------------------------------------- /spec/easy_roles_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platform45/easy_roles/HEAD/spec/easy_roles_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platform45/easy_roles/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------