webpacker_uploader 0.3.0 → 0.7.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/.gitignore +1 -0
- data/.rubocop.yml +197 -10
- data/.yardopts +8 -0
- data/CHANGELOG.md +29 -0
- data/Gemfile +1 -0
- data/Gemfile.lock +58 -44
- data/README.md +38 -5
- data/Rakefile +13 -0
- data/lib/webpacker_uploader/configuration.rb +22 -2
- data/lib/webpacker_uploader/instance.rb +35 -6
- data/lib/webpacker_uploader/manifest.rb +1 -1
- data/lib/webpacker_uploader/mime.rb +6 -0
- data/lib/webpacker_uploader/providers/aws.rb +84 -13
- data/lib/webpacker_uploader/version.rb +3 -1
- data/lib/webpacker_uploader.rb +14 -3
- data/test/configuration_test.rb +87 -0
- data/test/manifest_test.rb +27 -0
- data/test/mime_test.rb +14 -0
- data/test/providers/aws_test.rb +16 -0
- data/test/test_app/config/webpacker.yml +103 -0
- data/test/test_app/public/packs/manifest.json +33 -0
- data/test/test_helper.rb +35 -0
- data/test/webpacker_uploader_test.rb +37 -0
- data/webpacker_uploader.gemspec +5 -9
- metadata +54 -13
- data/.github/workflows/rubocop.yml +0 -35
- data/.github/workflows/ruby.yml +0 -39
- data/bin/console +0 -14
- data/bin/setup +0 -8
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: webpacker_uploader
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tasos Latsas
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-11-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: webpacker
|
@@ -38,6 +38,20 @@ dependencies:
|
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rack
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '2.0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '2.0'
|
41
55
|
- !ruby/object:Gem::Dependency
|
42
56
|
name: bundler
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -56,16 +70,16 @@ dependencies:
|
|
56
70
|
name: rubocop
|
57
71
|
requirement: !ruby/object:Gem::Requirement
|
58
72
|
requirements:
|
59
|
-
- -
|
73
|
+
- - '='
|
60
74
|
- !ruby/object:Gem::Version
|
61
|
-
version:
|
75
|
+
version: 1.11.0
|
62
76
|
type: :development
|
63
77
|
prerelease: false
|
64
78
|
version_requirements: !ruby/object:Gem::Requirement
|
65
79
|
requirements:
|
66
|
-
- -
|
80
|
+
- - '='
|
67
81
|
- !ruby/object:Gem::Version
|
68
|
-
version:
|
82
|
+
version: 1.11.0
|
69
83
|
- !ruby/object:Gem::Dependency
|
70
84
|
name: rubocop-performance
|
71
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -80,6 +94,20 @@ dependencies:
|
|
80
94
|
- - ">="
|
81
95
|
- !ruby/object:Gem::Version
|
82
96
|
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rubocop-minitest
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
83
111
|
description: Uploads manifest.json file contents to the cloud
|
84
112
|
email:
|
85
113
|
- tlatsas@hey.com
|
@@ -87,10 +115,9 @@ executables: []
|
|
87
115
|
extensions: []
|
88
116
|
extra_rdoc_files: []
|
89
117
|
files:
|
90
|
-
- ".github/workflows/rubocop.yml"
|
91
|
-
- ".github/workflows/ruby.yml"
|
92
118
|
- ".gitignore"
|
93
119
|
- ".rubocop.yml"
|
120
|
+
- ".yardopts"
|
94
121
|
- CHANGELOG.md
|
95
122
|
- CONTRIBUTING.md
|
96
123
|
- Gemfile
|
@@ -98,8 +125,6 @@ files:
|
|
98
125
|
- MIT-LICENSE
|
99
126
|
- README.md
|
100
127
|
- Rakefile
|
101
|
-
- bin/console
|
102
|
-
- bin/setup
|
103
128
|
- lib/webpacker_uploader.rb
|
104
129
|
- lib/webpacker_uploader/configuration.rb
|
105
130
|
- lib/webpacker_uploader/instance.rb
|
@@ -107,6 +132,14 @@ files:
|
|
107
132
|
- lib/webpacker_uploader/mime.rb
|
108
133
|
- lib/webpacker_uploader/providers/aws.rb
|
109
134
|
- lib/webpacker_uploader/version.rb
|
135
|
+
- test/configuration_test.rb
|
136
|
+
- test/manifest_test.rb
|
137
|
+
- test/mime_test.rb
|
138
|
+
- test/providers/aws_test.rb
|
139
|
+
- test/test_app/config/webpacker.yml
|
140
|
+
- test/test_app/public/packs/manifest.json
|
141
|
+
- test/test_helper.rb
|
142
|
+
- test/webpacker_uploader_test.rb
|
110
143
|
- webpacker_uploader.gemspec
|
111
144
|
homepage: https://github.com/tlatsas/webpacker_uploader
|
112
145
|
licenses:
|
@@ -115,7 +148,7 @@ metadata:
|
|
115
148
|
homepage_uri: https://github.com/tlatsas/webpacker_uploader
|
116
149
|
bug_tracker_uri: https://github.com/tlatsas/webpacker_uploader/issues
|
117
150
|
changelog_uri: https://github.com/tlatsas/webpacker_uploader/blob/main/CHANGELOG.md
|
118
|
-
source_code_uri: https://github.com/tlatsas/webpacker_uploader/tree/v0.
|
151
|
+
source_code_uri: https://github.com/tlatsas/webpacker_uploader/tree/v0.7.0
|
119
152
|
post_install_message:
|
120
153
|
rdoc_options: []
|
121
154
|
require_paths:
|
@@ -135,4 +168,12 @@ rubygems_version: 3.1.4
|
|
135
168
|
signing_key:
|
136
169
|
specification_version: 4
|
137
170
|
summary: Uploads manifest.json file contents to the cloud
|
138
|
-
test_files:
|
171
|
+
test_files:
|
172
|
+
- test/configuration_test.rb
|
173
|
+
- test/manifest_test.rb
|
174
|
+
- test/mime_test.rb
|
175
|
+
- test/providers/aws_test.rb
|
176
|
+
- test/test_app/config/webpacker.yml
|
177
|
+
- test/test_app/public/packs/manifest.json
|
178
|
+
- test/test_helper.rb
|
179
|
+
- test/webpacker_uploader_test.rb
|
@@ -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
|
data/.github/workflows/ruby.yml
DELETED
@@ -1,39 +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
|
-
3.0
|
21
|
-
]
|
22
|
-
steps:
|
23
|
-
- uses: actions/checkout@v2
|
24
|
-
- uses: actions/cache@v2
|
25
|
-
with:
|
26
|
-
path: vendor/bundle
|
27
|
-
key: ${{ runner.os }}-ruby-${{ matrix.ruby }}-gems-${{ hashFiles('**/Gemfile.lock') }}-${{ hashFiles('**/*.gemspec') }}
|
28
|
-
restore-keys: |
|
29
|
-
${{ runner.os }}-ruby-${{ matrix.ruby }}-gems-
|
30
|
-
- uses: ruby/setup-ruby@v1
|
31
|
-
with:
|
32
|
-
ruby-version: ${{ matrix.ruby }}
|
33
|
-
- name: Bundle install
|
34
|
-
run: |
|
35
|
-
gem install bundler -v 2.1.4
|
36
|
-
bundle config path vendor/bundle
|
37
|
-
bundle install
|
38
|
-
- name: Run tests
|
39
|
-
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__)
|