Sha256: 0dda6b2b9787c381240f72ea89aa7e128a44671acf56b876c6f6ed6ecc07f7dd

Contents?: true

Size: 1.55 KB

Versions: 1

Compression:

Stored size: 1.55 KB

Contents

Gitignore Gem
=============
Command line program that allows to generate .gitignore files base on prefenined templates (in the future you will be able to create your own templates)


DISCLAIMER  !!!
-----------
The gem is on beta, use at your own risk !!!! (because losing a .gitignore could  mean the end of everything as we know ;) )


Installation
-----------

    gem install gitignore


Usage
-----
Let say we want to create  a gitignore file for a project in a mac, and our project will use ruby, we would execute:


    gitignore OSX ruby

ouput:
-----
    #######OSX#########

	.DS_Store

	# Thumbnails
	._*

	# Files that might appear on external disk
	.Spotlight-V100
	.Trashes

	#####################


	########ruby#########

	*.gem
	*.rbc
	.bundle
	.config
	coverage
	InstalledFiles
	lib/bundler/man
	pkg
	rdoc
	spec/reports
	test/tmp
	test/version_tmp
	tmp

	# YARD artifacts
	.yardoc
	_yardoc
	doc/

	#####################


Or let say our  project is on linux, and we will use django, and of course python , SASS, and emacs

    gitignore Django Linux Python SASS emacs
 

ouput
-----
Too long to put in here :)

templates
-----
you can find a list of all templates here 

[Github Templates] (https://github.com/github/gitignore/)

I will add a `gitignore -list` (some day)

Contributing
------------

1. Fork it.
2. Create a branch (`git checkout -b my_gitignore`)
3. Commit your changes (`git commit -am "Added nyancat"`)
4. Push to the branch (`git push origin my_gitignore`)
5. Create an [Issue][1] with a link to your branch
6. Enjoy a refreshing Diet Coke and wait

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gitignore-0.1.0 README.md~