├── .gitignore ├── History.txt ├── Manifest.txt ├── PostInstall.txt ├── README.rdoc ├── Rakefile ├── State_Design_Pattern_UML_Class_Diagram.png ├── TODO ├── config └── website.yml ├── lib └── alter_ego.rb ├── script ├── console ├── destroy ├── generate └── txt2html ├── spec ├── alter_ego_spec.rb ├── spec.opts └── spec_helper.rb ├── tasks └── rspec.rake └── website ├── index.html ├── index.txt ├── javascripts └── rounded_corners_lite.inc.js ├── stylesheets └── screen.css └── template.html.erb /.gitignore: -------------------------------------------------------------------------------- 1 | pkg 2 | -------------------------------------------------------------------------------- /History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/alter-ego/HEAD/History.txt -------------------------------------------------------------------------------- /Manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/alter-ego/HEAD/Manifest.txt -------------------------------------------------------------------------------- /PostInstall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/alter-ego/HEAD/PostInstall.txt -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/alter-ego/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/alter-ego/HEAD/Rakefile -------------------------------------------------------------------------------- /State_Design_Pattern_UML_Class_Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/alter-ego/HEAD/State_Design_Pattern_UML_Class_Diagram.png -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/alter-ego/HEAD/TODO -------------------------------------------------------------------------------- /config/website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/alter-ego/HEAD/config/website.yml -------------------------------------------------------------------------------- /lib/alter_ego.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/alter-ego/HEAD/lib/alter_ego.rb -------------------------------------------------------------------------------- /script/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/alter-ego/HEAD/script/console -------------------------------------------------------------------------------- /script/destroy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/alter-ego/HEAD/script/destroy -------------------------------------------------------------------------------- /script/generate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/alter-ego/HEAD/script/generate -------------------------------------------------------------------------------- /script/txt2html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/alter-ego/HEAD/script/txt2html -------------------------------------------------------------------------------- /spec/alter_ego_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/alter-ego/HEAD/spec/alter_ego_spec.rb -------------------------------------------------------------------------------- /spec/spec.opts: -------------------------------------------------------------------------------- 1 | --colour -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/alter-ego/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /tasks/rspec.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/alter-ego/HEAD/tasks/rspec.rake -------------------------------------------------------------------------------- /website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/alter-ego/HEAD/website/index.html -------------------------------------------------------------------------------- /website/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/alter-ego/HEAD/website/index.txt -------------------------------------------------------------------------------- /website/javascripts/rounded_corners_lite.inc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/alter-ego/HEAD/website/javascripts/rounded_corners_lite.inc.js -------------------------------------------------------------------------------- /website/stylesheets/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/alter-ego/HEAD/website/stylesheets/screen.css -------------------------------------------------------------------------------- /website/template.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/alter-ego/HEAD/website/template.html.erb --------------------------------------------------------------------------------