├── .gitignore ├── README.md ├── bin └── gf_beauty ├── gf_beauty.gemspec └── lib └── gf_beauty.rb /.gitignore: -------------------------------------------------------------------------------- 1 | gf_beauty-*.gem 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namtx/gf_beauty/HEAD/README.md -------------------------------------------------------------------------------- /bin/gf_beauty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namtx/gf_beauty/HEAD/bin/gf_beauty -------------------------------------------------------------------------------- /gf_beauty.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namtx/gf_beauty/HEAD/gf_beauty.gemspec -------------------------------------------------------------------------------- /lib/gf_beauty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namtx/gf_beauty/HEAD/lib/gf_beauty.rb --------------------------------------------------------------------------------