A gem scaffolding script with basic security in mind. (INFO: ReadMe.org) https://notabug.org/rem/ruby-scaffold_gem/src/master/ReadMe.org

René Maya 0c5223b79c Release 0.4.0 il y a 5 ans
bin 9179f5d4d5 Add templates il y a 6 ans
checksum 1d127bd837 Add gem release related tasks il y a 5 ans
dev db3b35fa81 Add task to show work in progress il y a 5 ans
lib fc8aec606d Add gem metadata il y a 5 ans
test 26f9992a0a Fix test manifest template il y a 5 ans
.autotest c0c72ebf53 Fix magic comment il y a 5 ans
.gitignore db3b35fa81 Add task to show work in progress il y a 5 ans
.gitlab-ci.yml.erb d7806239e4 Add scaffold-ci initial config il y a 5 ans
.ignore.erb db3b35fa81 Add task to show work in progress il y a 5 ans
.ignore.sample db3b35fa81 Add task to show work in progress il y a 5 ans
ChangeLog.md.erb 9179f5d4d5 Add templates il y a 6 ans
ChangeLog.org 0c5223b79c Release 0.4.0 il y a 5 ans
Contribute.md.erb db3b35fa81 Add task to show work in progress il y a 5 ans
Gemfile 9179f5d4d5 Add templates il y a 6 ans
License.md.erb aeb11d9add Change License copyright year il y a 5 ans
Manifest.md.erb ffeeda1550 Add templates for contribute and security guidelines il y a 5 ans
Rakefile.erb e8f5299b9b Move rdoc tasks to publish doc rake task il y a 5 ans
ReadMe.md.erb caf0b71939 Fix version badge il y a 5 ans
ReadMe.org 0c5223b79c Release 0.4.0 il y a 5 ans
Security.md.erb ee312fdfe4 Add checksum section to security file il y a 5 ans
_expand_lib_path.rb 9179f5d4d5 Add templates il y a 6 ans
_gem_name.gemspec.erb fc8aec606d Add gem metadata il y a 5 ans
scaffold_gem.rb ca77179b43 Debug rename_gem_files in CI il y a 5 ans

ReadMe.md.erb

# <%= @scaffold.formatted_name %>

## Details

[![version](https://badge.fury.io/rb/<%= @scaffold.gem_name %>.svg)](https://badge.fury.io/rb/<%= @scaffold.gem_name %>)
[![pipeline status](https://gitlab.com/USERNAME/<%= @scaffold.gem_name %>/badges/master/pipeline.svg)](https://gitlab.com/USERNAME/<%= @scaffold.gem_name %>/commits/master)

:TODO: Add website, and project's goal.


## Quick Start

:TODO: Add usage examples showing how to get started.


## System Requirements

- *nix OS.
- Ruby 2.5+

## Installation

Add to a project's Gemfile:

```ruby
gem "<%= @scaffold.gem_name %>"
```

And then run

```bash
$ bundle
```

<% if @scaffold.bin %>
Or to install the command line interface locally:

```bash
$ gem install <%= @scaffold.gem_name %>
```
<% end %>

### Updates

Subscribe to the [update notification feed](https://rubygems.org/gems/<%= @scaffold.gem_name %>/versions.atom).
Whenever there's a new release available read the `ChangeLog.md` for
details on what changed since the last release.

When you are ready to update, depending on the installation method, do:

```bash
$ bundle update <%= @scaffold.gem_name %>
```

<% if @scaffold.bin %>
or, locally

```bash
$ gem update <%= @scaffold.gem_name %>
$ gem cleanup <%= @scaffold.gem_name %>
```
<% end %>

## Contributions

For security issues, please follow the `Security.md` guidelines. For
other contributions, check out `Contribute.md`.

## License

Copyright (c) 2019, <%= @scaffold.author %>. Licensed <%= @scaffold.license %>. Read attached `License.md` file
for details.