Coder Social home page Coder Social logo

bastelfreak / puppet-lint-version_comparison-check Goto Github PK

View Code? Open in Web Editor NEW

This project forked from voxpupuli/puppet-lint-version_comparison-check

0.0 2.0 0.0 33 KB

A puppet-lint plugin to check for versions compared as numbers.

License: Apache License 2.0

Ruby 100.00%

puppet-lint-version_comparison-check's Introduction

puppet-lint-version_comparison-check

License Test Release RubyGem Version RubyGem Downloads Donated by Camptocamp codecov

A puppet-lint plugin to check for versions compared as numbers.

Installing

From the command line

$ gem install puppet-lint-version_comparison-check

In a Gemfile

gem 'puppet-lint-version_comparison-check', :require => false

Checks

Version compared as number

Versions should be managed as strings, and compared using the versioncmp() function.

Not doing so will fail with the future parser starting with Puppet 3.7.4.

What you have done

if $version >= 4 { }

What you should have done

if versioncmp($version, '4') >= 0 { }

Disabling the check

To disable this check, you can add --no-version_comparison-check to your puppet-lint command line.

$ puppet-lint --no-version_comparison-check path/to/file.pp

Alternatively, if you’re calling puppet-lint via the Rake task, you should insert the following line to your Rakefile.

PuppetLint.configuration.send('disable_version_comparison')

Transfer Notice

This plugin was originally authored by Camptocamp. The maintainer preferred that Puppet Community take ownership of the module for future improvement and maintenance. Existing pull requests and issues were transferred over, please fork and continue to contribute here instead of Camptocamp.

Previously: https://github.com/camptocamp/puppet-lint-version_comparison-check

License

This gem is licensed under the Apache-2 license.

Release information

To make a new release, please do:

  • update the version in the gemspec file
  • Install gems with bundle install --with release --path .vendor
  • generate the changelog with bundle exec rake changelog
  • Check if the new version matches the closed issues/PRs in the changelog
  • Create a PR with it
  • After it got merged, push a tag. GitHub actions will do the actual release to rubygems and GitHub Packages

puppet-lint-version_comparison-check's People

Contributors

raphink avatar bastelfreak avatar rnelson0 avatar smortex avatar ekohl avatar kenyon avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.