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

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.