No commit activity in last 3 years
No release in over 3 years
Validates panamax template files
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 1.6
~> 10.3
 Project Readme

Panamax: Docker Management for Humans

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.

Panamax Template Validator

Validator for panamax templates. Runs a quick sanity check against .pmx files.

NOTE

This repo is no longer being maintained. Users are welcome to fork it, but we make no warranty of its functionality.

Installation

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

Usage

validate a single file:
PanamaxTemplateValidator.validate('/path/to/your_template.pmx')
validate a collection of files:
PanamaxTemplateValidator.validate_file_list(['/path/to/your_template.pmx', '/path/to/another_template.pmx'])
validate all *.pmx files in the current working directory:
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

Contributing

  1. Fork it ( https://github.com/[my-github-username]/panamax_template_validator/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request