makenew-rbgem 0.1.0 → 0.2.0

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: 40409be6a7572e22e6135e6d0589a36d7d7ae5a5b58f37aef595a48d9c0e402a
4
+ data.tar.gz: 7db9087737ce52668949addfbb389e9d707a764b288f161f202352a1597673c4
5
5
  SHA512:
6
- metadata.gz: 23381197c01cb31fc4125863ff94f053f329051cd6e5bff122c03ff57e1ed2e496099d5d345d26614901f244ec982e282a7ac83363dadf3139849d5aae72ce51
7
- data.tar.gz: cda7887d74ed901128abde4e722bf2b6ca765183965950e94337e9d65edd93399500179922a996454b4489ab2d4462e8b9abe73c416c912223f01357e41cedad
6
+ metadata.gz: 1f7b917a4af5ffe6e4c4f430d2ff003b557fefd1ba0c2fd98b9f088697115f855018ca1a769b051de324272f385bc41cb75ee0bb63de9fb9a8a071b398e737a7
7
+ data.tar.gz: ba5b6b3d227922f591a9a7283e3d15d11b5906298a5960c94b8ebc2800bae18b415f99ebbbe634b7a9cc9b860df3deb4d8e5d278c80227a7aa557524ecc3c52e
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.2.0)
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.2.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
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.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Evan Sosenko
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-13 00:00:00.000000000 Z
11
+ date: 2022-11-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler