sober_swag 0.4.0 → 0.5.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/.github/workflows/ruby.yml +3 -3
- data/example/Gemfile +0 -2
- data/example/Gemfile.lock +1 -4
- data/lib/sober_swag/version.rb +1 -1
- data/sober_swag.gemspec +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f00dc3f047ad2bc40f12096ff56ebfd6ba3018cc05d0115ce400bc851cc382f9
|
|
4
|
+
data.tar.gz: 0f9819bf9bc3135b86fd2dde790e58477b0e3c0865a580987a6203a32a8eec34
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e41afbd4771aca33e626c5bbad84cc5826ccf11c042878f9453a3cffb2d396b3f58e1d254c3fdf8cd5a847c079a697f68972e9e129f589af1e3b084208954775
|
|
7
|
+
data.tar.gz: 17b7771051bbde79bedcd1c4094f32cb612e24a5d9dfbe05b522bf086e55dbf43dae6ebf05d0c9cc447b3e8a8600918a83885fac1526ec598938b97f4ca5b1de
|
data/.github/workflows/ruby.yml
CHANGED
|
@@ -19,7 +19,7 @@ jobs:
|
|
|
19
19
|
runs-on: ubuntu-latest
|
|
20
20
|
strategy:
|
|
21
21
|
matrix:
|
|
22
|
-
ruby: [ '2.
|
|
22
|
+
ruby: [ '2.6', '2.7' ]
|
|
23
23
|
|
|
24
24
|
steps:
|
|
25
25
|
- uses: actions/checkout@v2
|
|
@@ -29,7 +29,7 @@ jobs:
|
|
|
29
29
|
# uses: ruby/setup-ruby@v1
|
|
30
30
|
uses: ruby/setup-ruby@ec106b438a1ff6ff109590de34ddc62c540232e0
|
|
31
31
|
with:
|
|
32
|
-
ruby-version:
|
|
32
|
+
ruby-version: ${{ matrix.ruby }}
|
|
33
33
|
- uses: actions/cache@v2
|
|
34
34
|
with:
|
|
35
35
|
path: vendor/bundle
|
|
@@ -61,4 +61,4 @@ jobs:
|
|
|
61
61
|
bundle install
|
|
62
62
|
- name: Run specs for example
|
|
63
63
|
working-directory: example
|
|
64
|
-
run: rake
|
|
64
|
+
run: bundle exec rake
|
data/example/Gemfile
CHANGED
data/example/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: ..
|
|
3
3
|
specs:
|
|
4
|
-
sober_swag (0.
|
|
4
|
+
sober_swag (0.4.0)
|
|
5
5
|
activesupport
|
|
6
6
|
dry-struct (~> 1.0)
|
|
7
7
|
dry-types (~> 1.2)
|
|
@@ -225,8 +225,5 @@ DEPENDENCIES
|
|
|
225
225
|
sqlite3 (~> 1.4)
|
|
226
226
|
tzinfo-data
|
|
227
227
|
|
|
228
|
-
RUBY VERSION
|
|
229
|
-
ruby 2.7.1p83
|
|
230
|
-
|
|
231
228
|
BUNDLED WITH
|
|
232
229
|
2.1.4
|
data/lib/sober_swag/version.rb
CHANGED
data/sober_swag.gemspec
CHANGED
|
@@ -19,6 +19,8 @@ Gem::Specification.new do |spec|
|
|
|
19
19
|
|
|
20
20
|
spec.metadata['homepage_uri'] = spec.homepage
|
|
21
21
|
|
|
22
|
+
spec.required_ruby_version = '>= 2.6.0'
|
|
23
|
+
|
|
22
24
|
# Specify which files should be added to the gem when it is released.
|
|
23
25
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
24
26
|
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sober_swag
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Anthony Super
|
|
@@ -288,7 +288,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
288
288
|
requirements:
|
|
289
289
|
- - ">="
|
|
290
290
|
- !ruby/object:Gem::Version
|
|
291
|
-
version:
|
|
291
|
+
version: 2.6.0
|
|
292
292
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
293
293
|
requirements:
|
|
294
294
|
- - ">="
|