g2_command 0.3.0 → 2.2.0
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/.circleci/config.yml +84 -0
- data/.github/config/rubocop_linter_action.yml +17 -0
- data/.github/workflows/linters.yml +17 -0
- data/.rubocop.yml +8 -39
- data/.ruby-version +1 -0
- data/.tool-versions +1 -1
- data/Appraisals +13 -0
- data/Gemfile +4 -2
- data/Gemfile.lock +92 -75
- data/README.md +2 -2
- data/g2_command.gemspec +2 -2
- data/gemfiles/.bundle/config +2 -0
- data/gemfiles/rails_5.1.gemfile +16 -0
- data/gemfiles/rails_5.1.gemfile.lock +201 -0
- data/gemfiles/rails_5.2.gemfile +16 -0
- data/gemfiles/rails_5.2.gemfile.lock +209 -0
- data/gemfiles/rails_6.0.gemfile +15 -0
- data/gemfiles/rails_6.0.gemfile.lock +224 -0
- data/lib/command.rb +7 -7
- data/lib/command/failure.rb +12 -0
- data/lib/command/input_middleware/symbolizer.rb +1 -1
- data/lib/command/version.rb +1 -1
- data/lib/gem_ext/active_model/errors.rb +10 -0
- metadata +25 -12
- data/.github/workflows/ruby.yml +0 -26
data/.github/workflows/ruby.yml
DELETED
@@ -1,26 +0,0 @@
|
|
1
|
-
name: Ruby
|
2
|
-
|
3
|
-
on: [push]
|
4
|
-
|
5
|
-
jobs:
|
6
|
-
build:
|
7
|
-
|
8
|
-
runs-on: ubuntu-latest
|
9
|
-
|
10
|
-
steps:
|
11
|
-
- uses: actions/checkout@v2
|
12
|
-
- name: Set up Ruby
|
13
|
-
uses: ruby/setup-ruby@v1
|
14
|
-
with:
|
15
|
-
ruby-version: 2.6.6
|
16
|
-
- name: Configure Bundler
|
17
|
-
run: |
|
18
|
-
gem install bundler:2.1.4 --no-document
|
19
|
-
bundle install --jobs 4 --retry 3
|
20
|
-
- name: Run tests with RSpec
|
21
|
-
uses: paambaati/codeclimate-action@v2.5.4
|
22
|
-
env:
|
23
|
-
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
|
24
|
-
with:
|
25
|
-
coverageCommand: bundle exec rspec
|
26
|
-
debug: false
|