├── .gitignore ├── .rspec ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── assets ├── fonts │ └── Roboto.ttf └── images │ └── avatarly.jpeg ├── avatarly.gemspec ├── lib └── avatarly.rb └── spec ├── avatarly_spec.rb ├── fixtures ├── HW_black_white_32.png ├── HW_white_black_offset_64.png ├── H_black_white_32.png └── black_empty.png ├── spec_helper.rb └── support └── avatar_expectations.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .DS_Store 3 | Gemfile.lock -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucek/avatarly/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucek/avatarly/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucek/avatarly/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucek/avatarly/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucek/avatarly/HEAD/README.md -------------------------------------------------------------------------------- /assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucek/avatarly/HEAD/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /assets/images/avatarly.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucek/avatarly/HEAD/assets/images/avatarly.jpeg -------------------------------------------------------------------------------- /avatarly.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucek/avatarly/HEAD/avatarly.gemspec -------------------------------------------------------------------------------- /lib/avatarly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucek/avatarly/HEAD/lib/avatarly.rb -------------------------------------------------------------------------------- /spec/avatarly_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucek/avatarly/HEAD/spec/avatarly_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/HW_black_white_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucek/avatarly/HEAD/spec/fixtures/HW_black_white_32.png -------------------------------------------------------------------------------- /spec/fixtures/HW_white_black_offset_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucek/avatarly/HEAD/spec/fixtures/HW_white_black_offset_64.png -------------------------------------------------------------------------------- /spec/fixtures/H_black_white_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucek/avatarly/HEAD/spec/fixtures/H_black_white_32.png -------------------------------------------------------------------------------- /spec/fixtures/black_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucek/avatarly/HEAD/spec/fixtures/black_empty.png -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucek/avatarly/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/avatar_expectations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucek/avatarly/HEAD/spec/support/avatar_expectations.rb --------------------------------------------------------------------------------