├── README.md ├── bin └── crafter ├── craft.gemspec └── lib ├── config ├── default.rb └── default_scripts.rb ├── crafter.rb ├── git_helper.rb ├── project_helper.rb └── target_configuration.rb /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/crafter/HEAD/README.md -------------------------------------------------------------------------------- /bin/crafter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/crafter/HEAD/bin/crafter -------------------------------------------------------------------------------- /craft.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/crafter/HEAD/craft.gemspec -------------------------------------------------------------------------------- /lib/config/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/crafter/HEAD/lib/config/default.rb -------------------------------------------------------------------------------- /lib/config/default_scripts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/crafter/HEAD/lib/config/default_scripts.rb -------------------------------------------------------------------------------- /lib/crafter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/crafter/HEAD/lib/crafter.rb -------------------------------------------------------------------------------- /lib/git_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/crafter/HEAD/lib/git_helper.rb -------------------------------------------------------------------------------- /lib/project_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/crafter/HEAD/lib/project_helper.rb -------------------------------------------------------------------------------- /lib/target_configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/crafter/HEAD/lib/target_configuration.rb --------------------------------------------------------------------------------