webpacker_uploader 0.1.0 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,35 +0,0 @@
1
- name: RuboCop
2
-
3
- on: [push, pull_request]
4
-
5
- jobs:
6
- build:
7
- name: RuboCop
8
- runs-on: ${{ matrix.os }}
9
- env:
10
- BUNDLE_JOBS: 4
11
- BUNDLE_RETRY: 3
12
- strategy:
13
- matrix:
14
- os: [ ubuntu-latest ]
15
- ruby: [
16
- 2.7
17
- ]
18
- steps:
19
- - uses: actions/checkout@v2
20
- - uses: actions/cache@v2
21
- with:
22
- path: vendor/bundle
23
- key: ${{ runner.os }}-rubocop-${{ hashFiles('**/Gemfile.lock') }}
24
- restore-keys: |
25
- ${{ runner.os }}-rubocop-
26
- - uses: ruby/setup-ruby@v1
27
- with:
28
- ruby-version: ${{ matrix.ruby }}
29
- - name: Bundle install
30
- run: |
31
- gem install bundler -v 2.1.4
32
- bundle config path vendor/bundle
33
- bundle install
34
- - name: Run RuboCop
35
- run: bundle exec rubocop
@@ -1,38 +0,0 @@
1
- name: Ruby tests
2
-
3
- on: [push, pull_request]
4
-
5
- jobs:
6
- build:
7
- name: Ruby tests
8
- runs-on: ${{ matrix.os }}
9
- env:
10
- BUNDLE_JOBS: 4
11
- BUNDLE_RETRY: 3
12
- strategy:
13
- fail-fast: false
14
- matrix:
15
- os: [ubuntu-latest]
16
- ruby: [
17
- 2.5,
18
- 2.6,
19
- 2.7
20
- ]
21
- steps:
22
- - uses: actions/checkout@v2
23
- - uses: actions/cache@v2
24
- with:
25
- path: vendor/bundle
26
- key: ${{ runner.os }}-ruby-${{ matrix.ruby }}-gems-${{ hashFiles('**/Gemfile.lock') }}-${{ hashFiles('**/*.gemspec') }}
27
- restore-keys: |
28
- ${{ runner.os }}-ruby-${{ matrix.ruby }}-gems-
29
- - uses: ruby/setup-ruby@v1
30
- with:
31
- ruby-version: ${{ matrix.ruby }}
32
- - name: Bundle install
33
- run: |
34
- gem install bundler -v 2.1.4
35
- bundle config path vendor/bundle
36
- bundle install
37
- - name: Run tests
38
- run: bundle exec rake test
data/bin/console DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "webpacker_uploader"
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require "irb"
14
- IRB.start(__FILE__)
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here