pronto-commentator 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/.circleci/config.yml +65 -0
- data/lib/pronto/commentator/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: bf0935d60d4ad386b599b4479e1a71b1071bab386159a06ff5fb3726b30b4ed2
|
|
4
|
+
data.tar.gz: 8cbc4a0eac05e7780bc61cf440c2358959e6918c6a2e2ce9440d2e168ee8ee10
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 036101e08fe6de349cc8e23434e49f024e3631660559abcb5975a72cf4e5e3e0123ec228cbe97e8c347efcaf62128299c4e1369f57960927b80ffc6a70cac0b1
|
|
7
|
+
data.tar.gz: a284fe947566816560d56e64e1f60a8e9585f7b5497ab915f22e018585619026d21696cae9605b857a37f56c995084827b13d0952ab456d845619b5acbaf2713
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
jobs:
|
|
3
|
+
test:
|
|
4
|
+
docker:
|
|
5
|
+
- image: circleci/ruby:2.5.3
|
|
6
|
+
steps:
|
|
7
|
+
- checkout
|
|
8
|
+
- run:
|
|
9
|
+
name: Install env dependencies
|
|
10
|
+
command: |
|
|
11
|
+
sudo apt-get update
|
|
12
|
+
sudo apt-get install cmake pkg-config
|
|
13
|
+
- run:
|
|
14
|
+
name: Install Ruby gems
|
|
15
|
+
command: bundle check --path=vendor/bundle || bundle install --path=vendor/bundle --jobs=4 --retry=3
|
|
16
|
+
- run:
|
|
17
|
+
name: Set up test output directory
|
|
18
|
+
command: sudo install -o circleci -d ~/rspec
|
|
19
|
+
- run:
|
|
20
|
+
name: RSpec
|
|
21
|
+
command: |
|
|
22
|
+
bundle exec rspec \
|
|
23
|
+
--color \
|
|
24
|
+
--require spec_helper \
|
|
25
|
+
--format documentation \
|
|
26
|
+
--format RspecJunitFormatter \
|
|
27
|
+
--out ~/rspec/rspec.xml
|
|
28
|
+
push_to_rubygems:
|
|
29
|
+
docker:
|
|
30
|
+
- image: circleci/ruby:2.5.3
|
|
31
|
+
steps:
|
|
32
|
+
- checkout
|
|
33
|
+
- run:
|
|
34
|
+
name: Create .gem/credentials file
|
|
35
|
+
command: |
|
|
36
|
+
mkdir ~/.gem
|
|
37
|
+
echo "---
|
|
38
|
+
:rubygems_api_key: $RUBYGEMS_API_KEY
|
|
39
|
+
" > ~/.gem/credentials
|
|
40
|
+
chmod 600 ~/.gem/credentials
|
|
41
|
+
- run:
|
|
42
|
+
name: Release pronto-commentator
|
|
43
|
+
command: |
|
|
44
|
+
gem build pronto-commentator
|
|
45
|
+
gem push pronto-commentator-*.gem
|
|
46
|
+
|
|
47
|
+
workflows:
|
|
48
|
+
version: 2
|
|
49
|
+
test_and_deploy:
|
|
50
|
+
jobs:
|
|
51
|
+
- test:
|
|
52
|
+
filters:
|
|
53
|
+
tags:
|
|
54
|
+
only:
|
|
55
|
+
- /^v.*/
|
|
56
|
+
- push_to_rubygems:
|
|
57
|
+
requires:
|
|
58
|
+
- test
|
|
59
|
+
filters:
|
|
60
|
+
branches:
|
|
61
|
+
ignore:
|
|
62
|
+
- /.*/
|
|
63
|
+
tags:
|
|
64
|
+
only:
|
|
65
|
+
- /^v.*/
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pronto-commentator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Emanuel Evans
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-12-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pronto
|
|
@@ -102,6 +102,7 @@ executables: []
|
|
|
102
102
|
extensions: []
|
|
103
103
|
extra_rdoc_files: []
|
|
104
104
|
files:
|
|
105
|
+
- ".circleci/config.yml"
|
|
105
106
|
- ".gitignore"
|
|
106
107
|
- ".rspec"
|
|
107
108
|
- ".rubocop.yml"
|
|
@@ -137,7 +138,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
137
138
|
version: '0'
|
|
138
139
|
requirements: []
|
|
139
140
|
rubyforge_project:
|
|
140
|
-
rubygems_version: 2.
|
|
141
|
+
rubygems_version: 2.7.8
|
|
141
142
|
signing_key:
|
|
142
143
|
specification_version: 4
|
|
143
144
|
summary: A simple code review tool for Pronto.
|