Panamax is a containerized app creator with an open-source app marketplace hosted in GitHub. Panamax provides a friendly interface for users of Docker, Fleet & CoreOS. With Panamax, you can easily create, share, and deploy any containerized app no matter how complex it might be. Learn more at Panamax.io or browse the Panamax Wiki.
Validator for panamax templates. Runs a quick sanity check against .pmx files.
This repo is no longer being maintained. Users are welcome to fork it, but we make no warranty of its functionality.
Add this line to your application's Gemfile:
gem 'panamax_template_validator'
And then execute:
$ bundle
Or install it yourself as:
$ gem install panamax_template_validator
PanamaxTemplateValidator.validate('/path/to/your_template.pmx')
PanamaxTemplateValidator.validate_file_list(['/path/to/your_template.pmx', '/path/to/another_template.pmx'])
PanamaxTemplateValidator.validate_repo
we generally create a default rake task in our template repos that our CI solution will execute, for example:
# Rakefile
require 'rake'
require 'panamax_template_validator'
task :default do
PanamaxTemplateValidator.validate_repo
end
- Fork it ( https://github.com/[my-github-username]/panamax_template_validator/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request