Project

plus-one

0.0
No commit activity in last 3 years
No release in over 3 years
This generic plus-one script for bumping a git tag and pushing it to the 'origin'.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.11
>= 0
~> 10.0
>= 0

Runtime

~> 0
 Project Readme

PlusOne

This repo contains a generic releases script for bumping a git tag and pushing it to the 'origin'

Installation

Add this line to your application's Gemfile:

gem 'plus-one'

And then execute:

$ bundle

Usage

help

$ bundle exec plus-one
Commands:
  plus-one create          # create next release
  plus-one current         # show current release
  plus-one help [COMMAND]  # Describe available commands or one specific command

create a release

$ bundle exec plus-one create
Fetching from origin
You are about to create release 'v1.0.1'.

This means:
* a tag 'v1.0.1' will be created
* this tag will be pushed to origin
Continue? y
# will create tag and push

Contributing

  1. Fork the repository

  2. Clone your newly created repository (e.g. git clone git@github.com:ralfclaassens/plus-one.git)

  3. Create a feature branch (git checkout -b my-additions) and make the changes

  4. Commit your changes (git commit -am 'My additions')

  5. Push the branch (git push origin -u my-new-feature)

  6. Visit the Project-page of your fork and select 'New Merge Request' (select my-additions as source-branch)