gem-auto-release 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 +4 -4
- data/.all-contributorsrc +25 -0
- data/.autorc +14 -0
- data/.circleci/config.yml +58 -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 +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 89976f04e33c44126e59c0cc175f68de3f6f5f3a932e131c2affc3f4f1d0716f
|
4
|
+
data.tar.gz: 46ef27d233054ec35ae8a6a8c8e51d3e26fad6babcbe4658e43811e9758795c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba84aaac8d4c6d33e57e67bbe773d7cf2983febfbf1082d51f3a312d143a05d2e8765061c2df4aae080b0da27f27268527a346d5747e2f96235a5a4f11b92c09
|
7
|
+
data.tar.gz: a4574575eda6e4181e49a3603f5dd7c4ce1610270ebfc272f4bea24c045b491e966c32fa16caea8d9f13573577e6ce67ed200a5b9805da37428c67f7cef5f915
|
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
|
+
"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,58 @@
|
|
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
|
31
|
+
steps:
|
32
|
+
- checkout
|
33
|
+
- run:
|
34
|
+
name: install dependencies
|
35
|
+
command: |
|
36
|
+
bundle install
|
37
|
+
- run:
|
38
|
+
name: 'Set github username and email'
|
39
|
+
command: |
|
40
|
+
git config --global user.email "angeliski@hotmail.com" && \
|
41
|
+
git config --global user.name "angeliski"
|
42
|
+
- run: |
|
43
|
+
curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.22.1/auto-linux.gz | gunzip > ~/auto
|
44
|
+
chmod a+x ~/auto
|
45
|
+
|
46
|
+
- run: ~/auto shipit
|
47
|
+
|
48
|
+
workflows:
|
49
|
+
version: 2
|
50
|
+
CI:
|
51
|
+
jobs:
|
52
|
+
- commit_lint
|
53
|
+
- build:
|
54
|
+
requires:
|
55
|
+
- commit_lint
|
56
|
+
- publish:
|
57
|
+
requires:
|
58
|
+
- 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.
|
4
|
+
version: 0.2.0
|
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-25 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
|