https://github.com/edusantana/abnt_asciidoc
Compilador de textos escritos em Asciidoc utilizando as normas da ABNT
https://github.com/edusantana/abnt_asciidoc
abnt asciidoc ruby-gem
Last synced: about 2 months ago
JSON representation
Compilador de textos escritos em Asciidoc utilizando as normas da ABNT
- Host: GitHub
- URL: https://github.com/edusantana/abnt_asciidoc
- Owner: edusantana
- License: mit
- Created: 2015-06-22T00:46:26.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-06-25T00:20:32.000Z (almost 10 years ago)
- Last Synced: 2025-01-28T10:21:50.710Z (4 months ago)
- Topics: abnt, asciidoc, ruby-gem
- Language: Liquid
- Size: 145 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# abnt_asciidoc
Com esta ferramenta você poderá compilar seu trabalho acadêmico.
Faça um [fork de edusantana/abntex2-modelo-trabalho-academico-asciidoc/fork](https://github.com/edusantana/abntex2-modelo-trabalho-academico-asciidoc/fork).
Utilize esta ferramenta para compilar o seu trabalho. (ainda em construção)
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'abnt_asciidoc'
```And then execute:
$ bundle
Or install it yourself as:
$ gem install abnt_asciidoc
### Bash Completion
Put this in your .bashrc:
```bash
complete -F get_abnt_asciidoc_targets abnt_asciidoc
function get_abnt_asciidoc_targets()
{
if [ -z $2 ] ; then
COMPREPLY=(`abnt_asciidoc help -c`)
else
COMPREPLY=(`abnt_asciidoc help -c $2`)
fi
}
```## Usage
TODO: Write usage instructions here
## Development
After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment. Run `bundle exec abnt_asciidoc` to use the code located in this directory, ignoring other installed copies of this gem.
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
## Contributing
1. Fork it ( https://github.com/[my-github-username]/abnt_asciidoc/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