standard 0.5.0 → 0.5.1
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 +4 -4
- data/.github/workflows/test.yml +23 -0
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/config/base.yml +3 -0
- data/lib/standard/version.rb +1 -1
- metadata +3 -3
- data/.circleci/config.yml +0 -36
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e5207e7c4c999d58af5b8c17668f095d9860e80c9a6772f27e189f2257435030
|
|
4
|
+
data.tar.gz: 82c93c367dca42ab77d5551357e170d79eaf25c0408e37a81b961e47623e6be8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3283f77271706f5e1fe7478d45f5a8df6cd62b8e64fbf3a2e09d77b82934d272d97ac3f00f719b52e2dca29e177df45705100f6349ffa1af141c9ca837992144
|
|
7
|
+
data.tar.gz: a6669aad5b1ee384a5c68f6a1cba88d044a439c6c8dd568af7c793411e85ddfa3096b230a99c32b1cbbe591120a2fce639f9c7dcf4d11970ba4db7f05b1026cd
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
name: Tests
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [ master ]
|
|
6
|
+
pull_request:
|
|
7
|
+
branches: [ master ]
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
test:
|
|
11
|
+
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v2
|
|
16
|
+
- name: Set up Ruby
|
|
17
|
+
uses: ruby/setup-ruby@v1
|
|
18
|
+
with:
|
|
19
|
+
ruby-version: 2.7
|
|
20
|
+
- name: Install dependencies
|
|
21
|
+
run: bundle
|
|
22
|
+
- name: Run tests
|
|
23
|
+
run: bundle exec rake
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
## Standard - Ruby style guide, linter, and formatter
|
|
2
2
|
|
|
3
|
-
[](https://github.com/testdouble/standard/actions?query=workflow%3ATests)
|
|
4
4
|
[](https://github.com/testdouble/standard)
|
|
5
5
|
[](https://rubygems.org/gems/standard)
|
|
6
6
|
|
data/config/base.yml
CHANGED
data/lib/standard/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: standard
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Justin Searls
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-08-
|
|
11
|
+
date: 2020-08-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -130,7 +130,7 @@ executables:
|
|
|
130
130
|
extensions: []
|
|
131
131
|
extra_rdoc_files: []
|
|
132
132
|
files:
|
|
133
|
-
- ".
|
|
133
|
+
- ".github/workflows/test.yml"
|
|
134
134
|
- ".gitignore"
|
|
135
135
|
- ".standard.yml"
|
|
136
136
|
- CHANGELOG.md
|
data/.circleci/config.yml
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
# Ruby CircleCI 2.0 configuration file
|
|
2
|
-
#
|
|
3
|
-
# Check https://circleci.com/docs/2.0/language-ruby/ for more details
|
|
4
|
-
#
|
|
5
|
-
version: 2
|
|
6
|
-
jobs:
|
|
7
|
-
build:
|
|
8
|
-
docker:
|
|
9
|
-
- image: circleci/ruby:2.7.0-node-browsers
|
|
10
|
-
working_directory: ~/repo
|
|
11
|
-
|
|
12
|
-
steps:
|
|
13
|
-
- checkout
|
|
14
|
-
- restore_cache:
|
|
15
|
-
keys:
|
|
16
|
-
- v1-dependencies-{{ checksum "Gemfile.lock" }}
|
|
17
|
-
- v1-dependencies-
|
|
18
|
-
|
|
19
|
-
- run:
|
|
20
|
-
name: install dependencies
|
|
21
|
-
command: |
|
|
22
|
-
bundle update --bundler
|
|
23
|
-
bundle install --jobs=4 --retry=3 --path vendor/bundle
|
|
24
|
-
|
|
25
|
-
- save_cache:
|
|
26
|
-
paths:
|
|
27
|
-
- ./vendor/bundle
|
|
28
|
-
key: v1-dependencies-{{ checksum "Gemfile.lock" }}
|
|
29
|
-
|
|
30
|
-
- run:
|
|
31
|
-
name: test
|
|
32
|
-
command: bundle exec rake test
|
|
33
|
-
|
|
34
|
-
- run:
|
|
35
|
-
name: lint
|
|
36
|
-
command: bundle exec rake standard:fix
|