ReadMe.md.erb 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. # <%= @scaffold.formatted_name %>
  2. ## Details
  3. [![version](https://badge.fury.io/rb/<%= @scaffold.gem_name %>.svg)](https://badge.fury.io/rb/<%= @scaffold.gem_name %>)
  4. [![pipeline status](https://gitlab.com/USERNAME/<%= @scaffold.gem_name %>/badges/master/pipeline.svg)](https://gitlab.com/USERNAME/<%= @scaffold.gem_name %>/commits/master)
  5. :TODO: Add website, and project's goal.
  6. ## Quick Start
  7. :TODO: Add usage examples showing how to get started.
  8. ## System Requirements
  9. - *nix OS.
  10. - Ruby 2.5+
  11. ## Installation
  12. Add to a project's Gemfile:
  13. ```ruby
  14. gem "<%= @scaffold.gem_name %>"
  15. ```
  16. And then run
  17. ```bash
  18. $ bundle
  19. ```
  20. <% if @scaffold.bin %>
  21. Or to install the command line interface locally:
  22. ```bash
  23. $ gem install <%= @scaffold.gem_name %>
  24. ```
  25. <% end %>
  26. ### Updates
  27. Subscribe to the [update notification feed](https://rubygems.org/gems/<%= @scaffold.gem_name %>/versions.atom).
  28. Whenever there's a new release available read the `ChangeLog.md` for
  29. details on what changed since the last release.
  30. When you are ready to update, depending on the installation method, do:
  31. ```bash
  32. $ bundle update <%= @scaffold.gem_name %>
  33. ```
  34. <% if @scaffold.bin %>
  35. or, locally
  36. ```bash
  37. $ gem update <%= @scaffold.gem_name %>
  38. $ gem cleanup <%= @scaffold.gem_name %>
  39. ```
  40. <% end %>
  41. ## Contributions
  42. For security issues, please follow the `Security.md` guidelines. For
  43. other contributions, check out `Contribute.md`.
  44. ## License
  45. Copyright (c) 2019, <%= @scaffold.author %>. Licensed <%= @scaffold.license %>. Read attached `License.md` file
  46. for details.