Skip to content
Snippets Groups Projects
Commit 076f4397 authored by Gabriel Mazetto's avatar Gabriel Mazetto
Browse files

Renamed gem to gitlab-markup and updated documentation

parent 96207721
No related branches found
No related tags found
1 merge request!3gitlab-markup gem
Pipeline #
Loading
Loading
@@ -13,13 +13,13 @@ If you are having an issue with:
 
Anything else - [search open issues](https://github.com/github/markup/issues) or create an issue and and we'll help point you in the right direction.
 
## Submitting a Pull Request
## Submitting a Merge Request
 
1. Fork it.
2. Create a branch (`git checkout -b my_markup`)
3. Commit your changes (`git commit -am "Added Snarkdown"`)
4. Push to the branch (`git push origin my_markup`)
5. Open a [Pull Request][1]
5. Open a [Merge Request][1]
6. Enjoy a refreshing Diet Coke and wait
 
## Testing
Loading
Loading
@@ -38,12 +38,12 @@ If you are the current maintainer of this gem:
0. Update `HISTORY.md`
0. Test the latest version on GitHub
0. Build the new version with `rake build`
0. Copy `pkg/github-markup*.gem` to `vendor/cache` in your local checkout of GitHub
0. Update the version for `github-markup` in the `Gemfile`
0. Run `bundle update --local github-markup`
0. Copy `pkg/gitlab-markup*.gem` to `vendor/cache` in your local checkout of GitHub
0. Update the version for `gitlab-markup` in the `Gemfile`
0. Run `bundle update --local gitlab-markup`
0. Run any relevant tests and test it manually from the browser.
0. Push the new gem release with `rake release`. If you don't have permission to release to rubygems.org, contact one of the existing owners (`gem owners github-markup`) and ask them to add you.
 
[1]: http://github.com/github/markup/pulls
[1]: https://gitlab.com/gitlab-org/gitlab-markup/merge_requests
[r2h]: lib/github/commands/rest2html
[r2hc]: lib/github/markups.rb#L51
## 1.4.0 (TO BE RELEASED)
## 1.5.0 (2016-10-13)
 
* GitLab CI support
* Fixed `.pod` test files to use newer syntax.
* Changes to support Python 3 (it's not out-of-the box yet, you still need to patch code)
* Gem published as 'gitlab-markup'
 
## 1.3.3 (2015-02-17)
 
Loading
Loading
GitHub Markup
=============
 
[![build status](https://gitlab.com/gitlab-org/gitlab-markup/badges/master/build.svg)](https://gitlab.com/gitlab-org/gitlab-markup/commits/master)
This library is the first step of a journey that every markup file in a repository goes on before it is rendered on GitHub.com:
 
0. This library converts the raw markup to HTML. See the list of [supported markup formats](#markups) below.
Loading
Loading
require File.expand_path("../lib/github-markup", __FILE__)
 
Gem::Specification.new do |s|
s.name = "github-markup"
s.name = "gitlab-markup"
s.version = GitHub::Markup::VERSION
s.summary = "The code GitHub uses to render README.markup"
s.description = "This gem is used by GitHub to render any fancy markup such " +
"as Markdown, Textile, Org-Mode, etc. Fork it and add your own!"
s.authors = ["Chris Wanstrath"]
s.email = "chris@ozmm.org"
s.homepage = "https://github.com/github/markup"
s.homepage = "https://gitlab.com/gitlab-org/gitlab-markup"
s.license = "MIT"
 
s.files = `git ls-files`.split($\)
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment