gem-auto-release 0.1.0 → 0.2.1.pre.canary.cd23761
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.all-contributorsrc +25 -0
- data/.autorc +14 -0
- data/.circleci/config.yml +64 -0
- data/.gitignore +1 -0
- data/CHANGELOG.md +32 -0
- data/Gemfile.lock +1 -1
- data/README.md +23 -0
- data/commitlint.config.js +1 -0
- data/lib/gem/auto/release.rb +2 -0
- data/lib/gem/auto/release/version.rb +1 -1
- metadata +8 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a9ba29c815498099bcb5928995b151be12ec9b64cbce4fc6e3bc9e9b6b892480
|
4
|
+
data.tar.gz: 8038d1298cae040f921d61631a695722610655a5607d406df8fa13a8c6a19d74
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d522429b01c4c7e812104022c46a93da081ec15f757a536df11652d4be5af064910f73552e433456f8532bdec46a2994d6941ec45ea0b134460f04e2a9d69d1e
|
7
|
+
data.tar.gz: 03ff0d33c41ca733ba6e78d86777bc10751990836de0e90d19845a422a1027a03e9c777534be2e15e68d98055d6d606f085becbac5964f06e07b611986792f8b
|
data/.all-contributorsrc
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
{
|
2
|
+
"projectName": "gem-auto-release",
|
3
|
+
"projectOwner": "angeliski",
|
4
|
+
"repoType": "github",
|
5
|
+
"repoHost": "https://github.com",
|
6
|
+
"files": [
|
7
|
+
"README.md"
|
8
|
+
],
|
9
|
+
"imageSize": 100,
|
10
|
+
"commit": true,
|
11
|
+
"commitConvention": "none",
|
12
|
+
"contributors": [
|
13
|
+
{
|
14
|
+
"login": "angeliski",
|
15
|
+
"name": "Rogerio Angeliski",
|
16
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/1574240?v=4",
|
17
|
+
"profile": "https://github.com/angeliski",
|
18
|
+
"contributions": [
|
19
|
+
"code",
|
20
|
+
"doc"
|
21
|
+
]
|
22
|
+
}
|
23
|
+
],
|
24
|
+
"contributorsPerLine": 7
|
25
|
+
}
|
data/.autorc
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
{
|
2
|
+
"plugins": [
|
3
|
+
"/home/rogerio.angeliski/workspace/auto/plugins/gem",
|
4
|
+
"all-contributors",
|
5
|
+
"conventional-commits",
|
6
|
+
"first-time-contributor",
|
7
|
+
"released"
|
8
|
+
],
|
9
|
+
"owner": "angeliski",
|
10
|
+
"repo": "gem-auto-release",
|
11
|
+
"name": "angeliski",
|
12
|
+
"email": "angeliski@hotmail.com",
|
13
|
+
"onlyPublishWithReleaseLabel": true
|
14
|
+
}
|
@@ -0,0 +1,64 @@
|
|
1
|
+
version: 2.1
|
2
|
+
|
3
|
+
jobs:
|
4
|
+
commit_lint:
|
5
|
+
docker:
|
6
|
+
- image: circleci/node:12
|
7
|
+
steps:
|
8
|
+
- checkout
|
9
|
+
- run: mkdir /tmp/tests
|
10
|
+
- run: yarn add @commitlint/cli @commitlint/config-conventional commitlint-format-junit
|
11
|
+
- run: npx commitlint --from main --to $CIRCLE_BRANCH -o commitlint-format-junit >> /tmp/tests/results.xml
|
12
|
+
- store_test_results:
|
13
|
+
path: /tmp/tests/
|
14
|
+
build:
|
15
|
+
docker:
|
16
|
+
- image: circleci/ruby:2.7.1
|
17
|
+
steps:
|
18
|
+
- checkout
|
19
|
+
- run:
|
20
|
+
name: install dependencies
|
21
|
+
command: |
|
22
|
+
bundle install
|
23
|
+
# run tests!
|
24
|
+
- run:
|
25
|
+
name: run tests
|
26
|
+
command: |
|
27
|
+
bundle exec rspec
|
28
|
+
publish:
|
29
|
+
docker:
|
30
|
+
- image: circleci/ruby:2.7.1-node
|
31
|
+
steps:
|
32
|
+
- checkout
|
33
|
+
- run:
|
34
|
+
name: install plugins
|
35
|
+
command: |
|
36
|
+
git clone git@github.com:angeliski/auto-plugin-gem-canary-release.git ../plugins/auto-plugin-gem-canary-release
|
37
|
+
|
38
|
+
- run:
|
39
|
+
name: install dependencies
|
40
|
+
command: |
|
41
|
+
bundle install
|
42
|
+
- run: gem install gem-release
|
43
|
+
- run:
|
44
|
+
name: 'Set github username and email'
|
45
|
+
command: |
|
46
|
+
git config --global user.email "angeliski@hotmail.com" && \
|
47
|
+
git config --global user.name "angeliski"
|
48
|
+
- run: |
|
49
|
+
curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.22.1/auto-linux.gz | gunzip > ~/auto
|
50
|
+
chmod a+x ~/auto
|
51
|
+
|
52
|
+
- run: ~/auto shipit
|
53
|
+
|
54
|
+
workflows:
|
55
|
+
version: 2
|
56
|
+
CI:
|
57
|
+
jobs:
|
58
|
+
- commit_lint
|
59
|
+
- build:
|
60
|
+
requires:
|
61
|
+
- commit_lint
|
62
|
+
- publish:
|
63
|
+
requires:
|
64
|
+
- build
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
@@ -0,0 +1,32 @@
|
|
1
|
+
# v0.2.0 (Thu Mar 25 2021)
|
2
|
+
|
3
|
+
:tada: This release contains work from a new contributor! :tada:
|
4
|
+
|
5
|
+
Thank you, Rogerio Angeliski ([@angeliski](https://github.com/angeliski)), for all your work!
|
6
|
+
|
7
|
+
#### 🚀 Enhancement
|
8
|
+
|
9
|
+
- feat: add some minor issue [#6](https://github.com/angeliski/gem-auto-release/pull/6) ([@angeliski](https://github.com/angeliski))
|
10
|
+
- feat: just a bump mod [#2](https://github.com/angeliski/gem-auto-release/pull/2) ([@angeliski](https://github.com/angeliski))
|
11
|
+
- feat: enable ci process [#1](https://github.com/angeliski/gem-auto-release/pull/1) ([@angeliski](https://github.com/angeliski))
|
12
|
+
|
13
|
+
#### 🐛 Bug Fix
|
14
|
+
|
15
|
+
- chore: update ci step [#7](https://github.com/angeliski/gem-auto-release/pull/7) ([@angeliski](https://github.com/angeliski))
|
16
|
+
- chore: change ci image to release [#5](https://github.com/angeliski/gem-auto-release/pull/5) ([@angeliski](https://github.com/angeliski))
|
17
|
+
- chore: change ci installation [#3](https://github.com/angeliski/gem-auto-release/pull/3) ([@angeliski](https://github.com/angeliski))
|
18
|
+
|
19
|
+
#### ⚠️ Pushed to `main`
|
20
|
+
|
21
|
+
- first commit ([@angeliski](https://github.com/angeliski))
|
22
|
+
|
23
|
+
#### 🏠 Internal
|
24
|
+
|
25
|
+
- chore: update auto installation mode [#4](https://github.com/angeliski/gem-auto-release/pull/4) ([@angeliski](https://github.com/angeliski))
|
26
|
+
|
27
|
+
#### Authors: 1
|
28
|
+
|
29
|
+
- Rogerio Angeliski ([@angeliski](https://github.com/angeliski))
|
30
|
+
|
31
|
+
---
|
32
|
+
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,7 @@
|
|
1
1
|
# Gem::Auto::Release
|
2
|
+
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
3
|
+
[![All Contributors](https://img.shields.io/badge/all_contributors-1-orange.svg?style=flat-square)](#contributors-)
|
4
|
+
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
2
5
|
|
3
6
|
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/gem/auto/release`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
7
|
|
@@ -42,3 +45,23 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
42
45
|
## Code of Conduct
|
43
46
|
|
44
47
|
Everyone interacting in the Gem::Auto::Release project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/gem-auto-release/blob/master/CODE_OF_CONDUCT.md).
|
48
|
+
|
49
|
+
## Contributors ✨
|
50
|
+
|
51
|
+
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
|
52
|
+
|
53
|
+
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
|
54
|
+
<!-- prettier-ignore-start -->
|
55
|
+
<!-- markdownlint-disable -->
|
56
|
+
<table>
|
57
|
+
<tr>
|
58
|
+
<td align="center"><a href="https://github.com/angeliski"><img src="https://avatars.githubusercontent.com/u/1574240?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Rogerio Angeliski</b></sub></a><br /><a href="https://github.com/angeliski/gem-auto-release/commits?author=angeliski" title="Code">💻</a> <a href="https://github.com/angeliski/gem-auto-release/commits?author=angeliski" title="Documentation">📖</a></td>
|
59
|
+
</tr>
|
60
|
+
</table>
|
61
|
+
|
62
|
+
<!-- markdownlint-restore -->
|
63
|
+
<!-- prettier-ignore-end -->
|
64
|
+
|
65
|
+
<!-- ALL-CONTRIBUTORS-LIST:END -->
|
66
|
+
|
67
|
+
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
|
@@ -0,0 +1 @@
|
|
1
|
+
module.exports = {extends: ['@commitlint/config-conventional']}
|
data/lib/gem/auto/release.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gem-auto-release
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.2.1.pre.canary.cd23761
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rogerio Angeliski
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-03-
|
11
|
+
date: 2021-03-27 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Write a longer description or delete this line.
|
14
14
|
email:
|
@@ -17,6 +17,9 @@ executables: []
|
|
17
17
|
extensions: []
|
18
18
|
extra_rdoc_files: []
|
19
19
|
files:
|
20
|
+
- ".all-contributorsrc"
|
21
|
+
- ".autorc"
|
22
|
+
- ".circleci/config.yml"
|
20
23
|
- ".gitignore"
|
21
24
|
- ".rspec"
|
22
25
|
- ".travis.yml"
|
@@ -29,6 +32,7 @@ files:
|
|
29
32
|
- Rakefile
|
30
33
|
- bin/console
|
31
34
|
- bin/setup
|
35
|
+
- commitlint.config.js
|
32
36
|
- gem-auto-release.gemspec
|
33
37
|
- lib/gem/auto/release.rb
|
34
38
|
- lib/gem/auto/release/version.rb
|
@@ -50,9 +54,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
50
54
|
version: 2.3.0
|
51
55
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
52
56
|
requirements:
|
53
|
-
- - "
|
57
|
+
- - ">"
|
54
58
|
- !ruby/object:Gem::Version
|
55
|
-
version:
|
59
|
+
version: 1.3.1
|
56
60
|
requirements: []
|
57
61
|
rubygems_version: 3.1.2
|
58
62
|
signing_key:
|