makenew-rbgem 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 81559bc940c7280a10c63d0020dc8914fb1bcec569e6a6177e7c6e5797d808ca
4
- data.tar.gz: 31db089542477a5c92f7be59b16d29bb1c692e3ae675292f0fe583507941a3e7
3
+ metadata.gz: f62a62545333da3002abcc37e599a98592a4c32e416c139db3cb411719c728d7
4
+ data.tar.gz: 6e2b45bef7ebfeb3715d9d94208baf518410c9cfd635860e90df14ce7a31ae1a
5
5
  SHA512:
6
- metadata.gz: 23381197c01cb31fc4125863ff94f053f329051cd6e5bff122c03ff57e1ed2e496099d5d345d26614901f244ec982e282a7ac83363dadf3139849d5aae72ce51
7
- data.tar.gz: cda7887d74ed901128abde4e722bf2b6ca765183965950e94337e9d65edd93399500179922a996454b4489ab2d4462e8b9abe73c416c912223f01357e41cedad
6
+ metadata.gz: 3c7390aabf8202342558c2652096f31f9a5e5f0dde003ed3abd3f5ab9bed45f286ce25c8dd038512272e37833c846ab69368f479a4cf40365361ef121dc9a8a6
7
+ data.tar.gz: c7abe2e44564c6dfabc6698c4546db88fb0209e9eaf8f7928f79e6f869d0c7670a5d9fc621048b00d71af221d9eaa59cf84f5a9d567af13be648c980c678e169
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- makenew-rbgem (0.1.0)
4
+ makenew-rbgem (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -11,9 +11,9 @@ Bootstrap a new Ruby gem in five minutes or less.
11
11
 
12
12
  ### Features
13
13
 
14
- - [Ruby]'s [gem][RubyGems.org] package structure.
14
+ - [Ruby]'s [gem][rubygems.org] package structure.
15
15
  - Consistent dependency management with [Bundler].
16
- - Release your ruby gems with ease using [gem release].
16
+ - Release your Ruby gems with ease using [gem release].
17
17
  - [Standard] Ruby style guide, linter, and formatter.
18
18
  - Productive and fun testing with [RSpec].
19
19
  - Code coverage reporting with [SimpleCov].
@@ -22,16 +22,16 @@ Bootstrap a new Ruby gem in five minutes or less.
22
22
  - Consistent coding with [EditorConfig].
23
23
  - Badges from [Shields.io].
24
24
 
25
- [Bundler]: https://bundler.io/
26
- [EditorConfig]: https://editorconfig.org/
27
- [GitHub Actions]: https://github.com/features/actions
28
- [Keep a CHANGELOG]: https://keepachangelog.com/
29
- [RSpec]: https://rspec.info/
30
- [RubyGems.org]: https://rubygems.org/
31
- [Ruby]: https://www.ruby-lang.org/
32
- [Shields.io]: https://shields.io/
33
- [SimpleCov]: https://github.com/simplecov-ruby/simplecov
34
- [Standard]: https://github.com/testdouble/standard
25
+ [bundler]: https://bundler.io/
26
+ [editorconfig]: https://editorconfig.org/
27
+ [github actions]: https://github.com/features/actions
28
+ [keep a changelog]: https://keepachangelog.com/
29
+ [rspec]: https://rspec.info/
30
+ [rubygems.org]: https://rubygems.org/
31
+ [ruby]: https://www.ruby-lang.org/
32
+ [shields.io]: https://shields.io/
33
+ [simplecov]: https://github.com/simplecov-ruby/simplecov
34
+ [standard]: https://github.com/testdouble/standard
35
35
  [gem release]: https://github.com/svenfuchs/gem-release
36
36
 
37
37
  ### Bootstrapping a new project
@@ -93,7 +93,7 @@ Note that `CHANGELOG.md` is just a template for this skeleton.
93
93
  The actual changes for this project are documented in the commit history
94
94
  and summarized under [Releases].
95
95
 
96
- [Releases]: https://github.com/makenew/rbgem/releases
96
+ [releases]: https://github.com/makenew/rbgem/releases
97
97
 
98
98
  ## Installation
99
99
 
@@ -103,7 +103,7 @@ Add this as a dependency to your project using [Bundler] with
103
103
  $ bundle add makenew-rbgem
104
104
  ```
105
105
 
106
- [Bundler]: https://bundler.io/
106
+ [bundler]: https://bundler.io/
107
107
 
108
108
  ## Development and Testing
109
109
 
@@ -159,8 +159,8 @@ Install the development dependencies with
159
159
  $ bundle install
160
160
  ```
161
161
 
162
- [Bundler]: https://bundler.io/
163
- [Ruby]: https://www.ruby-lang.org/
162
+ [bundler]: https://bundler.io/
163
+ [ruby]: https://www.ruby-lang.org/
164
164
  [rbenv]: https://github.com/rbenv/rbenv
165
165
 
166
166
  ### Publishing
@@ -171,7 +171,7 @@ Publishing may be triggered using on the web
171
171
  using a [workflow_dispatch on GitHub Actions].
172
172
 
173
173
  [gem release]: https://github.com/svenfuchs/gem-release
174
- [workflow_dispatch on GitHub Actions]: https://github.com/makenew/rbgem/actions?query=workflow%3Aversion
174
+ [workflow_dispatch on github actions]: https://github.com/makenew/rbgem/actions?query=workflow%3Aversion
175
175
 
176
176
  ## GitHub Actions
177
177
 
@@ -196,8 +196,8 @@ Set these additional secrets to enable the action:
196
196
  - `GPG_PRIVATE_KEY`: The GitHub user's [GPG private key].
197
197
  - `GPG_PASSPHRASE`: The GitHub user's GPG passphrase.
198
198
 
199
- [GitHub Actions]: https://github.com/features/actions
200
- [GPG private key]: https://github.com/marketplace/actions/import-gpg#prerequisites
199
+ [github actions]: https://github.com/features/actions
200
+ [gpg private key]: https://github.com/marketplace/actions/import-gpg#prerequisites
201
201
 
202
202
  ## Contributing
203
203
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MakenewRbgem
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: makenew-rbgem
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Evan Sosenko